*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    color:#fff;
}

/* CURSOR */

.cursor-glow{
    width:22px;
    height:22px;
    border:2px solid #ff5a1f;
    border-radius:50%;
    position:fixed;
    top:0;
    left:0;
    transform:translate(-50%, -50%);
    pointer-events:none;
    z-index:99999;
    transition:
    transform .08s linear,
    background .3s ease;

    box-shadow:
    0 0 15px rgba(255,90,31,.6),
    0 0 30px rgba(255,90,31,.4);
}

/* HEADER */

.header{
    position:fixed;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    z-index:9999;
    display:flex;
    justify-content:center;
    padding:0 20px;
}

.nav-wrapper{
    background:rgba(18,18,18,.82);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:60px;
    padding:14px 24px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;
    width:fit-content;

    box-shadow:
    0 10px 40px rgba(0,0,0,.45);
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-menu a{
    color:#cfcfcf;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.nav-menu a:hover{
    color:#ff5a1f;
}

.contact-btn{
    background:#ff5a1f;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-2px);

    box-shadow:
    0 10px 20px rgba(255,90,31,.35);
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#000;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;

    transform:scale(1.03);

    transition:transform .2s ease;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(255,90,31,.08),
    rgba(0,0,0,.15),
    rgba(0,0,0,.45));
}

/* LEFT CONTACT */

.hero-contact{
    position:absolute;
    left:38px;
    top:50%;
    transform:translateY(-50%);
    z-index:20;

    display:flex;
    flex-direction:column;
    gap:22px;
}

.hero-contact a{
    display:flex;
    align-items:center;
    gap:14px;

    color:rgba(255,255,255,.82);
    text-decoration:none;

    font-size:15px;
    font-weight:500;

    transition:.3s ease;
}

.hero-contact a:hover{
    color:#ffffff;
    transform:translateX(6px);
}

.contact-icon{
    width:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    opacity:.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .nav-wrapper{
        gap:20px;
        padding:14px 18px;
    }

    .nav-menu{
        display:none;
    }

}

@media(max-width:768px){

    .hero-contact{
        left:20px;
    }

    .hero-contact a{
        font-size:13px;
    }

    .contact-btn{
        padding:12px 18px;
        font-size:12px;
    }

}

/* INTRO SECTION */

.intro-section{
    background:#050505;
    padding:140px 20px;
}

.intro-container{
    max-width:1400px;
    margin:auto;
}

.intro-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin-bottom:30px;
}

.intro-tag{
    color:rgba(255,255,255,.28);
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:50px;
}

.intro-heading{
    font-size:78px;
    line-height:1.25;
    font-weight:700;
    color:#f2f2f2;
    max-width:1400px;
}

.intro-heading span{
    color:#ff5a1f;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .intro-heading{
        font-size:60px;
    }

}

@media(max-width:768px){

    .intro-section{
        padding:90px 20px;
    }

    .intro-heading{
        font-size:38px;
        line-height:1.4;
    }

}

/* EXPERTISE SECTION */

.expertise-section{
    position:relative;
    padding:140px 20px;
    overflow:hidden;
    background:#000;
}

.expertise-bg{
    position:absolute;
    inset:0;

    background-image:url('images/expertise-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:.45;

    mix-blend-mode:screen;
}

.expertise-container{
    position:relative;
    z-index:2;

    max-width:1400px;
    margin:auto;
}

.expertise-top{
    margin-bottom:80px;
}

.section-tag{
    color:#ff5a1f;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.expertise-title{
    font-size:76px;
    line-height:1.1;
    color:#fff;
}

.expertise-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.expertise-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.expertise-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:#f5f5f5;
    font-size:24px;
    font-weight:500;

    transition:.3s ease;
}

.expertise-item:hover{
    transform:translateX(10px);
    color:#ff5a1f;
}

.expertise-item small{
    color:rgba(255,255,255,.28);
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .expertise-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .expertise-section{
        padding:90px 20px;
    }

    .expertise-title{
        font-size:48px;
    }

    .expertise-item{
        font-size:18px;
    }

}

/* ABOUT SECTION */

.about-section{
    background:#efefec;
    padding:140px 20px;
}

.about-container{
    max-width:1400px;
    margin:auto;
}

.about-line{
    width:100%;
    height:1px;
    background:rgba(0,0,0,.08);
    margin-bottom:30px;
}

.dark-tag{
    color:#ff5a1f;
}

.about-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:80px;
    align-items:start;
}

.about-image-wrap{
    overflow:hidden;
}

.about-image{
    width:100%;
    display:block;
}

.about-content{
    padding-top:10px;
}

.about-heading{
    font-size:74px;
    line-height:1.05;
    color:#000;
    margin-bottom:40px;
}

.about-content p{
    font-size:21px;
    line-height:1.9;
    color:#5b5b5b;
    margin-bottom:30px;
}

.about-card{
    margin-top:50px;
    border:1px solid rgba(0,0,0,.08);
    padding:30px;
    display:flex;
    align-items:flex-start;
    gap:24px;
    background:#f7f7f4;
}

.about-card-line{
    width:4px;
    height:70px;
    background:#ff5a1f;
}

.about-card h4{
    color:#000;
    font-size:24px;
    margin-bottom:10px;
}

.about-card p{
    margin:0;
    font-size:16px;
    color:#777;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-heading{
        font-size:56px;
    }

}

@media(max-width:768px){

    .about-section{
        padding:90px 20px;
    }

    .about-heading{
        font-size:40px;
    }

    .about-content p{
        font-size:17px;
        line-height:1.8;
    }

}

/* WORK SECTION */

.work-section{
    background:#050505;
    padding:140px 20px;
}

.work-container{
    max-width:1450px;
    margin:auto;
}

.work-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin-bottom:30px;
}

.work-heading-wrap{
    display:flex;
    justify-content:space-between;
    gap:50px;
    align-items:flex-end;
    margin-bottom:90px;
}

.work-heading{
    font-size:76px;
    line-height:1.05;
    color:#fff;
    max-width:850px;
}

.work-subtext{
    max-width:420px;
    color:#8f8f8f;
    font-size:18px;
    line-height:1.8;
}

.project-group{
    margin-bottom:5px;
}

.group-title-wrap{
    margin-bottom:35px;
}

.group-title{
    color:#fff;
    font-size:34px;
    font-weight:700;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.ads-grid{
    grid-template-columns:repeat(3,1fr);
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#111;
    border:1px solid rgba(255,255,255,.06);

    transition:.4s ease;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    display:block;
    transition:transform .5s ease;
}

.project-card:hover img{
    transform:scale(1.03);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .work-heading-wrap{
        flex-direction:column;
        align-items:flex-start;
    }

    .work-heading{
        font-size:58px;
    }

    .ads-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .work-section{
        padding:90px 20px;
    }

    .work-heading{
        font-size:40px;
    }

    .projects-grid,
    .ads-grid{
        grid-template-columns:1fr;
    }

    .group-title{
        font-size:26px;
    }

}

/* EXPERIENCE SECTION */

.experience-section{
    background:#f4f1eb;
    padding:140px 20px;
    color:#111;
}

.experience-container{
    max-width:1450px;
    margin:auto;
}

.experience-line{
    width:100%;
    height:1px;
    background:rgba(0,0,0,.08);
    margin-bottom:30px;
}

.light-tag{
    color:#ff5a2f;
}

.experience-heading-wrap{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;
    margin-bottom:90px;
}

.experience-heading{
    font-size:76px;
    line-height:1.05;
    max-width:850px;
    color:#111;
}

.experience-heading span{
    color:#ff5a2f;
}

.experience-subtext{
    max-width:420px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.experience-list{
    display:flex;
    flex-direction:column;
}

.experience-item{
    display:flex;
    justify-content:space-between;
    gap:80px;

    padding:55px 0;

    border-top:1px solid rgba(0,0,0,.08);
}

.experience-left{
    max-width:760px;
}

.experience-number{
    display:block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:18px;
    color:#ff5a2f;
}

.experience-left h3{
    font-size:42px;
    margin-bottom:10px;
    line-height:1.1;
}

.experience-left h4{
    font-size:18px;
    color:#666;
    margin-bottom:25px;
    font-weight:500;
}

.experience-left p{
    font-size:18px;
    line-height:1.9;
    color:#444;
}

.experience-right{
    min-width:320px;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.experience-duration{
    font-size:16px;
    font-weight:700;
    margin-bottom:25px;
    color:#ff5a2f;
}

.experience-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:10px;
}

.experience-tags span{
    padding:10px 16px;
    border:1px solid rgba(0,0,0,.12);
    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

@media(max-width:1200px){

    .experience-heading-wrap{
        flex-direction:column;
        align-items:flex-start;
    }

    .experience-heading{
        font-size:58px;
    }

    .experience-item{
        flex-direction:column;
        gap:40px;
    }

    .experience-right{
        align-items:flex-start;
    }

    .experience-tags{
        justify-content:flex-start;
    }

}

@media(max-width:768px){

    .experience-section{
        padding:90px 20px;
    }

    .experience-heading{
        font-size:40px;
    }

    .experience-left h3{
        font-size:30px;
    }

}

/* TOOLS SECTION */

.tools-section{
    background:#050505;
    padding:140px 20px;
}

.tools-container{
    max-width:1450px;
    margin:auto;
}

.tools-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin-bottom:40px;
}

.tools-grid{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:100px;
    align-items:flex-start;
}

.tools-right h2{
    font-size:72px;
    line-height:1.05;
    color:#fff;
}

.tool-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:40px;
}

.tool-tags span{
    border:1px solid rgba(255,255,255,.12);
    padding:14px 22px;
    border-radius:50px;

    color:#d9d9d9;
    font-size:14px;
    font-weight:500;

    transition:.3s ease;
}

.tool-tags span:hover{
    border-color:#ff5a2f;
    color:#ff5a2f;
}





/* CONTACT SECTION */

.contact-section{
    background:#050505;
    padding:140px 20px;
}

.contact-container{
    max-width:1450px;
    margin:auto;
}

.contact-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin-bottom:40px;
}

.contact-heading{
    font-size:120px;
    line-height:.95;
    max-width:1000px;
    color:#fff;

    margin-top:30px;
}

.contact-heading span{
    color:#ff5a2f;
}

.contact-text{
    max-width:800px;
    margin-top:40px;

    color:#a8a8a8;
    font-size:20px;
    line-height:1.9;
}

.contact-grid{
    margin-top:90px;

    display:grid;
    grid-template-columns:650px 1fr;
    gap:90px;
    align-items:flex-start;
}

.contact-image{
    width:100%;
    display:block;
}

.contact-details{
    display:flex;
    flex-direction:column;
}

.contact-card{
    padding:35px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-card span{
    display:block;

    font-size:12px;
    letter-spacing:3px;

    color:#666;

    margin-bottom:14px;
}

.contact-card a,
.contact-card p{
    color:#fff;
    font-size:22px;
    text-decoration:none;

    transition:.3s ease;
}

.contact-card a:hover{
    color:#ff5a2f;
}

@media(max-width:1200px){

    .tools-grid{
        grid-template-columns:1fr;
    }

    .tools-right h2{
        font-size:56px;
    }

    .contact-heading{
        font-size:70px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .tools-section,
    .contact-section{
        padding:90px 20px;
    }

    .tools-right h2{
        font-size:40px;
    }

    .contact-heading{
        font-size:44px;
    }

    .contact-text{
        font-size:17px;
    }

    .contact-card a,
    .contact-card p{
        font-size:18px;
    }

}

/* =========================
   UPDATED ABOUT SECTION
========================= */

.about-section {
    background: #f3f0eb;
    padding: 140px 8%;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: auto;
}

.about-line {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.light-tag {
    color: #ff5b2e;
}

.about-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-highlight-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.about-highlight-box:hover {
    transform: translateY(-5px);
}

.about-highlight-box span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 16px;
}

.about-highlight-box h3 {
    font-size: 28px;
    line-height: 1.4;
    color: #111;
    font-weight: 700;
}

.about-right h2 {
    font-size: 68px;
    line-height: 1.05;
    color: #111;
    font-weight: 800;
    margin-bottom: 35px;
    max-width: 900px;
}

.about-right p {
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 28px;
    max-width: 900px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-right h2 {
        font-size: 42px;
    }

    .about-right p {
        font-size: 17px;
    }

}

@media (max-width: 768px) {

    .about-section {
        padding: 100px 7%;
    }

    .about-right h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .about-highlight-box {
        padding: 28px;
    }

    .about-highlight-box h3 {
        font-size: 22px;
    }

}

/* ABOUT SECTION FIX */

.about-content-full p{
    font-size:20px;
    line-height:1.8;
    color:#555 !important;
    margin-bottom:25px;
    max-width:1000px;
}

.about-card p{
    color:#666 !important;
}

/* ABOUT SECTION IMPROVEMENT */

.about-content-full{
    max-width:900px;
}

.about-heading{
    font-size:68px !important;
    line-height:1.08;
    max-width:950px;
    margin-bottom:50px;
}

.about-content-full p{
    font-size:18px !important;
    line-height:1.9;
    max-width:820px;
}

.about-card{
    max-width:820px;
    margin-top:50px;
    background:#ffffff;
    border:1px solid #e2ddd7;
}

/* ABOUT SECTION */

.about-section{
    background:#f5f3ef;
    padding:140px 20px;
}

.about-container{
    max-width:1400px;
    margin:auto;
}

.about-line{
    width:100%;
    height:1px;
    background:#d8d5cf;
    margin-bottom:50px;
}

.dark-tag{
    color:#ff5a1f;
}

.about-content-full{
    max-width:1200px;
}

.about-heading{
    font-size:78px;
    line-height:1.08;
    font-weight:700;
    color:#000;
    margin-bottom:45px;
    max-width:1200px;
}

.about-content-full p{
    font-size:20px;
    line-height:1.9;
    color:#555;
    max-width:1050px;
    margin-bottom:55px;
}

.about-card{
    max-width:900px;
    background:#fff;
    border:1px solid #e4dfd8;
    padding:35px;
    display:flex;
    align-items:flex-start;
    gap:22px;
}

.about-card-line{
    width:4px;
    height:65px;
    background:#ff5a1f;
}

.about-card h4{
    font-size:34px;
    color:#000;
    margin-bottom:10px;
}

.about-card p{
    margin:0;
    font-size:18px;
    color:#666;
}

/* TOOLS SECTION IMPROVED */

.tools-section{
    background:#000;
    padding:1px 0;
    overflow:hidden;
}

.tools-container{
    width:88%;
    max-width:1400px;
    margin:auto;
}

.tools-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.08);
    margin-bottom:80px;
}

.tools-top{
    display:flex;
    justify-content:space-between;
    gap:120px;
    align-items:flex-start;
}

.tools-left{
    width:58%;
}

.tools-right{
    width:42%;
    display:flex;
    justify-content:flex-end;
}

.tools-right h2{
    color:#fff;
    font-size:44px;
    line-height:1.1;
    font-weight:700;
    max-width:320px;
}

.tool-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.tool-tags span{
    border:1px solid rgba(255,255,255,0.12);
    color:#d7d7d7;
    padding:14px 22px;
    border-radius:100px;
    font-size:15px;
    transition:all .3s ease;
    background:transparent;
}

.tool-tags span:hover{
    border-color:#ff5a1f;
    color:#fff;
    transform:translateY(-3px);
}

.tools-bottom{
    display:flex;
    gap:120px;
    margin-top:90px;
}

.tools-info-block{
    flex:1;
}

.tools-small-title{
    color:rgba(255,255,255,0.35);
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.small-tags span{
    padding:12px 18px;
    font-size:14px;
}

@media(max-width:991px){

    .tools-top{
        flex-direction:column;
        gap:60px;
    }

    .tools-left,
    .tools-right{
        width:100%;
    }

    .tools-right h2{
        font-size:56px;
        max-width:100%;
    }

    .tools-bottom{
        flex-direction:column;
        gap:50px;
    }

}

@media(max-width:767px){

    .tools-section{
        padding:100px 0;
    }

    .tools-right h2{
        font-size:42px;
    }

    .tool-tags{
        gap:10px;
    }

    .tool-tags span{
        font-size:13px;
        padding:10px 16px;
    }

}

/* CONTACT SECTION IMPROVEMENTS */

.contact-heading{
    font-size:72px !important;
    line-height:0.95;
    max-width:700px;
}

.contact-image{
    width:100%;
    border-radius:30px;
    object-fit:cover;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-card{
    padding:28px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.contact-card span{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    color:#777;
    margin-bottom:12px;
}

.contact-card a,
.contact-card p{
    color:#fff;
    font-size:28px;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}

.contact-card a:hover{
    color:#ff5a1f;
}

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-heading{
        font-size:56px !important;
    }

}

@media(max-width:767px){

    .contact-heading{
        font-size:42px !important;
    }

    .contact-card a,
    .contact-card p{
        font-size:20px;
    }

}

/* MOBILE HERO FIX */

@media (max-width: 768px){

.hero{
    height: 68vh;
    min-height: 68vh;
}

.hero-image{
    object-position: center top;
}

.hero-image{
    height:100%;
    object-fit:cover;
}

.hero-contact{
    position:absolute;
    left:25px;
    bottom:40px;
    top:auto;

    transform:none;

    align-items:flex-start;
    gap:18px;
}

.hero-contact a{
    font-size:14px;
    gap:12px;
}

.contact-icon{
    width:22px;
    height:22px;
    font-size:14px;
}

.nav-wrapper{
    width:90%;
    padding:12px 18px;
}

.logo{
    font-size:24px;
}

.contact-btn{
    padding:12px 18px;
    font-size:13px;
}

.nav-menu{
    display:none;
}

}

/* MOBILE ABOUT SECTION FIX */

@media (max-width:768px){

.about-section{
    padding:70px 20px 80px;
}

.about-line{
    margin-bottom:40px;
}

.about-heading{
    font-size:32px;
    line-height:1.05;
    letter-spacing:-1px;
    margin-bottom:24px;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
}

.about-card{
    margin-top:40px;
    padding:24px;
}

}

@media (max-width:768px){

.about-heading{
    font-size:32px !important;
    line-height:1.05 !important;
    letter-spacing:-1px !important;
    max-width:100% !important;
}

}

/* MOBILE WORK SECTION FIX */

@media (max-width:768px){

.work-section{
    padding-bottom:60px !important;
}

.project-group{
    margin-bottom:40px !important;
}

.projects-grid{
    gap:18px !important;
}

.project-card img{
    border-radius:16px;
}

}

/* MOBILE EXPERIENCE + TOOLS SPACING FIX */

@media (max-width:768px){

/* EXPERIENCE */

.experience-section{
    padding-top:70px !important;
    padding-bottom:60px !important;
}

.experience-container{
    gap:0 !important;
}

.experience-item{
    padding-bottom:35px !important;
    margin-bottom:35px !important;
}

/* TOOLS */

.tools-section{
    padding-top:60px !important;
    padding-bottom:60px !important;
}

.tools-line{
    margin-bottom:40px !important;
}

.tools-grid{
    gap:40px !important;
}

.tool-tags{
    gap:10px !important;
}

.tools-right h2{
    font-size:38px !important;
    line-height:1 !important;
}

}

.hero-image{
    transition: transform 0.12s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

@media (max-width:768px){
    .project-group{
        margin-bottom:20px !important;
    }
}

/* CONTACT FORM */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;

    background:#0d0d0d;
    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:18px 22px;
    border-radius:16px;

    font-size:16px;
    font-family:inherit;

    transition:.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#ff5a1f;
}

.contact-form textarea{
    resize:vertical;
    min-height:160px;
}

.contact-form select{
    cursor:pointer;
}

.contact-form button{
    background:#ff5a1f;
    color:#fff;

    border:none;
    border-radius:60px;

    padding:18px 30px;

    font-size:15px;
    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}

.contact-form button:hover{
    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(255,90,31,.35);
}

#formMessage{
    margin-top:8px;
    font-size:14px;
    color:#7dff9c;
}

.iti__country-list{
    color:#111 !important;
}

.iti__country{
    color:#111 !important;
}