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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#050b12;
    color:white;
    overflow-x:hidden;
}

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

/* ================= HERO ================= */

.hero{
    position:relative;

    min-height:100vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.7)
        ),
        url('../images/backgrounds/hero-bg.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding-top:130px;
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:950px;

    margin-left:23%;

    text-align:left;
}

.eyebrow{
    display:inline-block;

    margin-bottom:22px;

    color:#ff3b3b;

    font-family:'Orbitron', sans-serif;

    font-size:24px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    text-shadow:0 4px 18px rgba(0,0,0,0.5);
}

.hero h1{
    font-size:78px;

    line-height:1.05;

    margin-bottom:30px;

    font-weight:800;

    color:white;

    text-shadow:0 8px 30px rgba(0,0,0,0.7);
}

.hero p{
    font-size:28px;

    line-height:1.7;

    color:#f1f1f1;

    margin-bottom:45px;

    max-width:900px;

    text-shadow:0 4px 20px rgba(0,0,0,0.7);
}

.hero-actions{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.btn{
    padding:20px 40px;

    border-radius:10px;

    text-decoration:none;

    font-size:20px;

    font-weight:700;

    transition:0.3s;
}

.btn.primary{
    background:#e30613;
    color:white;
}

.btn.primary:hover{
    background:#ff1a28;
    transform:translateY(-3px);
}

.btn.secondary{
    border:2px solid rgba(255,255,255,0.7);
    color:white;
    background:rgba(255,255,255,0.05);
}

.btn.secondary:hover{
    background:rgba(255,255,255,0.12);
}

/* ================= STATS ================= */

.stats-section{
    background:#0b0f14;
    padding:50px 0;

    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:14px;

    padding:30px 20px;

    text-align:center;
}

.stat-box h3{
    color:#e30613;
    font-size:36px;
    margin-bottom:10px;
}

.stat-box p{
    color:#d9d9d9;
    font-size:16px;
}

/* ================= WHY SECTION ================= */

.why-section{
    background:#071018;
    padding:110px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    display:inline-block;
    margin-bottom:15px;
    color:#ff3b3b;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:52px;
    line-height:1.2;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.why-card{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:18px;

    padding:35px;

    transition:0.3s;

    backdrop-filter:blur(10px);

    display:flex;
    flex-direction:column;

    min-height:420px;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#e30613;
}

.why-card h3{
    color:white;

    font-size:30px;

    line-height:1.4;

    margin-bottom:25px;

    min-height:90px;
}

.why-card p{
    color:#c7c7c7;

    line-height:1.9;

    font-size:18px;
}

/* ================= ABOUT ================= */

.about{
    padding:110px 0;
    background:#08131d;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

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

.about p{
    color:#d0d0d0;
    font-size:20px;
    line-height:1.9;
}

/* ================= FOOTER ================= */

footer{
    background:#05080d;
    padding:30px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.05);
}

footer p{
    color:#9e9e9e;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .hero-content{
        margin-left:10%;
    }

    .hero h1{
        font-size:58px;
    }

    .hero p{
        font-size:22px;
    }

    .two-col{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:2px 0 !important;
}
    .main-nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    .main-nav a{
        margin:10px;
    }

    .hero{
        padding-top:180px;
    }

    .hero-content{
        margin-left:0;
        text-align:center;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:20px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .about h2{
        font-size:38px;
    }
}
.about-hero-title{
    font-size:56px;
    line-height:1.15;
}

.about-hero-title span{
    display:block;
    font-size:40px;
    font-weight:400;
    margin-top:12px;
}

.about .section-label{
    font-size:22px;
}

.about h2{
    font-size:58px;
}
/* ================= ABOUT PAGE REDESIGN ================= */

.about-hero{
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('../images/backgrounds/about-bg.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 130px;
}
.about-hero .container{
    width:100%;
}

.about-hero-grid{
    width:100%;
    padding:120px 0;
}

.about-hero-grid{
    position:relative;
    z-index:2;
}

.about-hero-left{
    max-width:650px;
}

.section-mini{
    display:inline-block;
    color:#ff2a2a;
    font-weight:800;
    letter-spacing:1px;
    font-size:17px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.about-hero h1{
    font-size:54px;
    line-height:1.15;
    color:white;
    margin-bottom:20px;
}

.about-hero h1 span{
    display:block;
    font-weight:400;
    font-size:42px;
    margin-top:8px;
}

.red-line{
    width:90px;
    height:4px;
    background:#e30613;
    margin:25px 0 35px;
}

.about-hero p{
    color:#e7e7e7;
    font-size:22px;
    line-height:1.8;
    max-width:520px;
}

.who-we-are{
    background:#071018;
    padding:100px 0;
}

.who-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.who-text h2{
    color:white;
    font-size:44px;
    line-height:1.25;
    margin-bottom:20px;
}

.who-text p{
    color:#cfd6dd;
    font-size:18px;
    line-height:1.9;
    margin-bottom:28px;
}

.who-image img{
    width:100%;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 25px 70px rgba(0,0,0,0.45);
}

.vision-section{
    background:#071018;
    padding:100px 0 120px;
}

.vision-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.vision-heading h2{
    color:white;
    font-size:42px;
    line-height:1.35;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.vision-card{
    background:rgba(255,255,255,0.045);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    padding:45px 35px;
    min-height:310px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 20px 50px rgba(0,0,0,0.22);
}

.vision-card:hover{
    transform:translateY(-8px);
    border-color:#e30613;
}

.vision-card h3{
    color:white;
    font-size:24px;
    margin-bottom:18px;
}

.card-line{
    width:55px;
    height:3px;
    background:#e30613;
    margin:0 auto 25px;
}

.vision-card p{
    color:#cfd6dd;
    font-size:17px;
    line-height:1.8;
}

.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.footer-inner img{
    height:70px;
    width:auto;
}

.footer-inner span{
    color:#d7d7d7;
}

@media(max-width:900px){
    .about-hero h1{
        font-size:42px;
    }

    .about-hero h1 span{
        font-size:32px;
    }

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

    .footer-inner{
        flex-direction:column;
        text-align:center;
    }
}
/* ================= ABOUT PAGE FULL BACKGROUND FIX ================= */

body.about-page{
    background:#020812 url('../images/backgrounds/about-bg.png') top center / 100% auto no-repeat !important;
    color:white;
    min-height:100vh;
}

.about-fullpage{
    min-height:2100px;
    padding-top:150px;
}

.about-hero-text{
    width:560px;
    margin-left:5%;
    padding-top:70px;
}

.about-hero-text span,
.about-who-text span,
.about-vision-text span{
    color:#ff2a2a;
    font-weight:800;
    letter-spacing:1.5px;
    font-size:18px;
}

.about-hero-text h1{
    font-family:'Rajdhani', sans-serif;
    margin-top:28px;
    font-size:56px;
    line-height:1.1;
    font-weight:800;
}

.about-hero-text h1 small{
    display:block;
    font-size:42px;
    font-weight:400;
    margin-top:10px;
}

.red-line{
    width:95px;
    height:4px;
    background:#e30613;
    margin:28px 0;
}

.about-hero-text p{
    font-size:22px;
    line-height:1.8;
    color:#e8eef5;
}

.about-who-text{
    width:620px;
    margin-left:5%;
    margin-top:210px;
}

.about-who-text h2{
    font-family:'Rajdhani', sans-serif;
    margin-top:25px;
    font-size:48px;
    line-height:1.18;
}

.about-who-text p{
    font-size:19px;
    line-height:1.85;
    color:#d6dde6;
    margin-bottom:25px;
}

.about-vision-text{
    margin-top:190px;
    text-align:center;
    padding:0 5%;
}

.about-vision-text h2{
    margin-top:20px;
    font-size:42px;
    line-height:1.3;
}

.vision-cards{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:32px;
}

.vision-cards div{
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:22px;
    padding:45px 35px;
    min-height:300px;
}

.vision-cards h3{
    font-family:'Rajdhani', sans-serif;
    font-size:24px;
    margin-bottom:25px;
}

.vision-cards p{
    font-size:17px;
    line-height:1.8;
    color:#cfd6dd;
}

.about-footer{
    background:#040910;
    border-top:2px solid #e30613;
    text-align:center;
    padding:28px;
}

.about-footer p{
    color:#bfc7d1;
}

@media(max-width:900px){
    body.about-page{
        background-size:auto 100%;
    }

    .about-hero-text,
    .about-who-text{
        width:90%;
        margin-left:5%;
    }

    .vision-cards{
        grid-template-columns:1fr;
    }
}
/* ===== ABOUT PAGE TEXT ALIGNMENT + STYLE ===== */

.about-fullpage{
    min-height:1900px;
    padding-top:115px;
}

.about-hero-text{
    width:520px;
    margin-left:4.2%;
    padding-top:65px;
}

.about-hero-text span,
.about-who-text span,
.about-vision-text span{
    color:#ff2a2a;
    font-size:16px;
    font-weight:800;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.about-hero-text span::before,
.about-who-text span::before,
.about-vision-text span::before{
    content:"";
    display:inline-block;
    width:28px;
    height:3px;
    background:#e30613;
    margin-right:12px;
    vertical-align:middle;
}

.about-hero-text h1{
    margin-top:26px;
    font-size:50px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:0.2px;
}

.about-hero-text h1 small{
    display:block;
    font-size:34px;
    font-weight:400;
    margin-top:8px;
}

.about-hero-text p{
    max-width:430px;
    font-size:18px;
    line-height:1.75;
    color:#e8eef5;
}

.about-who-text{
    width:520px;
    margin-left:4.2%;
    margin-top:190px;
}

.about-who-text h2{
    margin-top:22px;
    font-size:42px;
    line-height:1.18;
    font-weight:800;
}

.about-who-text p{
    max-width:500px;
    font-size:16px;
    line-height:1.75;
    color:#d6dde6;
    margin-bottom:22px;
}

.about-vision-text{
    margin-top:170px;
}

.about-vision-text h2{
    margin-top:18px;
    font-size:34px;
    line-height:1.28;
    font-weight:700;
}

.vision-cards{
    margin-top:55px;
    padding:0 4%;
}

.vision-cards h3{
    font-size:22px;
}

.vision-cards p{
    font-size:16px;
    line-height:1.75;
}
/* ===== FORCE ALL HEADERS TO MATCH HOME PAGE ===== */

.site-header,
.about-page .site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(235,235,235,0.88) !important;
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,0.08);

    padding:0 !important;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 !important;
}

.brand img{
    height:118px;
    width:auto;
    display:block;
}

.main-nav a,
.about-page .main-nav a{
    color:#111 !important;
    text-decoration:none;
    margin-left:35px;
    font-size:18px;
    font-weight:700;
}

.main-nav a:hover,
.main-nav a.active,
.about-page .main-nav a:hover,
.about-page .main-nav a.active{
    color:#e30613 !important;
    border-bottom:3px solid #e30613;
    padding-bottom:12px;
}
/* ===== PARTNERS PAGE ===== */

.partners-page{
    background:#040b14;
    color:white;
    padding-top:150px;
}

.partners-hero{
    padding:80px 0 60px;
    text-align:center;
}

.partners-hero h1{
    font-size:56px;
    font-family:'Rajdhani', sans-serif;
    margin:20px 0;
}

.partners-hero p{
    max-width:900px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#d4dce5;
}

.partner-live-section{
    margin-bottom:90px;
}

.partner-live-header{
    margin-bottom:35px;
}

.partner-live-header h2{
    font-size:42px;
    margin:18px 0;
    font-family:'Rajdhani', sans-serif;
}

.partner-live-header p{
    max-width:900px;
    font-size:18px;
    line-height:1.8;
    color:#d0d8e2;
}

.partner-embed-wrapper{
    width:100%;
    height:900px;
    overflow:hidden;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    background:#08111c;
}

.partner-embed-wrapper iframe{
    width:100%;
    height:100%;
    border:none;
}
/* ===== PARTNERS OVERVIEW REFINEMENT ===== */

.partners-overview-page{
    background:
        linear-gradient(
            rgba(3,8,14,0.58),
            rgba(3,8,14,0.72)
        ),
        url('../images/backgrounds/partners-bg.png');

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:white;
    padding-top:150px;
}

.partners-overview-hero{
    text-align:center;
    padding:120px 0 90px;
}

.partners-overview-hero h1{
    font-size:58px;
    line-height:1.15;
    margin:22px 0;
    font-family:'Rajdhani', sans-serif;
}

.partners-overview-hero p{
    max-width:900px;
    margin:auto;
    color:#d4dce5;
    font-size:20px;
    line-height:1.8;
}

.partners-overview-grid-section{
    padding:20px 0 100px;
}

.partners-overview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:32px;
}

.partner-overview-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;

    padding:38px 30px;

    text-decoration:none;
    color:white;

    transition:0.3s;

    min-height:360px;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.partner-overview-card:hover{
    transform:translateY(-8px);
    border-color:#e30613;
    background:rgba(255,255,255,0.045);
}

.partner-overview-card img{
    width:160px;
    height:80px;

    object-fit:contain;

    margin-bottom:28px;

    filter:brightness(1.05);
}

.partner-overview-card h3{
    font-size:30px;
    margin-bottom:18px;
    font-family:'Rajdhani', sans-serif;
}

.partner-overview-card p{
    color:#cfd6dd;
    line-height:1.8;
    font-size:16px;

    flex-grow:1;
}

.partner-overview-card span{
    margin-top:28px;

    color:#ff3b3b;

    font-weight:700;

    font-size:15px;

    letter-spacing:0.5px;
}
/* ===== SERVICES PAGE ===== */

.services-page{
    background:
        linear-gradient(
            rgba(3,8,14,0.72),
            rgba(3,8,14,0.82)
        ),
        url('../images/backgrounds/services-bg.png');

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:white;
    padding-top:150px;
}

.services-hero{
    text-align:center;
    padding:120px 0 90px;
}

.services-hero h1{
    font-size:64px;
    line-height:1.1;
    margin:22px 0;

    font-family:'Rajdhani', sans-serif;
}

.services-hero p{
    max-width:900px;
    margin:auto;

    color:#d5dde6;

    font-size:20px;
    line-height:1.8;
}

.services-grid-section{
    padding:20px 0 110px;
}

.services-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.service-box{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px 35px;

    backdrop-filter:blur(6px);

    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-8px);

    border-color:#ff2b2b;

    background:rgba(255,255,255,0.06);
}

.service-box h3{
    font-size:34px;

    margin-bottom:24px;

    color:white;

    font-family:'Rajdhani', sans-serif;
}

.service-box p{
    color:#d1d9e2;

    line-height:2;

    font-size:17px;
}
/* ===== SOLUTIONS PAGE ===== */

.solutions-page{
    background:
        linear-gradient(
            rgba(3,8,14,0.72),
            rgba(3,8,14,0.84)
        ),
        url('../images/backgrounds/solutions-bg.png');

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:white;

    padding-top:150px;
}

.solutions-hero{
    text-align:center;

    padding:120px 0 90px;
}

.solutions-hero h1{
    font-size:60px;

    line-height:1.15;

    margin:22px 0;

    font-family:'Rajdhani', sans-serif;
}

.solutions-hero p{
    max-width:900px;

    margin:auto;

    color:#d4dce5;

    font-size:20px;

    line-height:1.8;
}

.solutions-navigation{
    padding:0 0 70px;
}

.solutions-nav-grid{
    display:flex;

    flex-wrap:wrap;

    gap:18px;

    justify-content:center;
}

.solutions-nav-grid a{
    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    padding:16px 26px;

    border-radius:40px;

    color:white;

    text-decoration:none;

    transition:0.3s;

    font-weight:700;
}

.solutions-nav-grid a:hover{
    background:#e30613;

    transform:translateY(-3px);
}

.solution-section{
    padding:70px 0;
}

.solution-section h2{
    font-size:48px;

    margin-bottom:22px;

    font-family:'Rajdhani', sans-serif;
}

.solution-section p{
    max-width:950px;

    color:#d2dae3;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;
}

.solution-tags{
    display:flex;

    flex-wrap:wrap;

    gap:18px;
}

.solution-tags a,
.solution-tags span{
    padding:16px 24px;

    border-radius:40px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    color:white;

    text-decoration:none;

    transition:0.3s;

    font-size:16px;

    font-weight:600;
}

.solution-tags a:hover{
    background:#e30613;

    transform:translateY(-3px);
}
/* ===== CLIENTS PAGE ===== */

.clients-page{
    min-height:100vh;

    background:
        linear-gradient(
            rgba(3,8,14,0.38),
            rgba(3,8,14,0.52)
        ),
        url('../images/backgrounds/clients-bg.png');

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    background-attachment:fixed;

    padding-top:140px;
}
.clients-hero{
    padding:140px 0 120px;
}

.clients-hero h1{
    font-size:72px;

    line-height:1.08;

    margin:24px 0;

    color:white;

    max-width:820px;

    font-family:'Rajdhani', sans-serif;
}

.clients-hero p{
    max-width:760px;

    color:#d6dde5;

    font-size:22px;

    line-height:1.9;
}
/* ===== CLIENTS PAGE CONTENT ===== */

.client-stats{
    padding:40px 0 90px;
}

.stats-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:28px;
}

.stats-grid div{
    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    backdrop-filter:blur(5px);
}

.stats-grid strong{
    display:block;

    font-size:54px;

    color:white;

    margin-bottom:15px;

    font-family:'Rajdhani', sans-serif;
}

.stats-grid span{
    color:#d3dbe4;

    font-size:18px;
}

.industries-section{
    padding:20px 0 110px;
}

.section-center{
    text-align:center;

    margin-bottom:60px;
}

.section-center h2{
    font-size:52px;

    margin-top:20px;

    color:white;

    font-family:'Rajdhani', sans-serif;
}

.industries-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:24px;
}

.industries-grid div{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    padding:30px;

    text-align:center;

    color:white;

    font-size:20px;

    font-weight:700;

    backdrop-filter:blur(5px);

    transition:0.3s;
}

.industries-grid div:hover{
    transform:translateY(-6px);

    border-color:#ff2b2b;
}

.client-value-section{
    padding:0 0 120px;
}

.client-value-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:28px;
}

.client-value-grid div{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:22px;

    padding:38px 34px;

    backdrop-filter:blur(5px);
}

.client-value-grid h3{
    font-size:30px;

    margin-bottom:20px;

    color:white;

    font-family:'Rajdhani', sans-serif;
}

.client-value-grid p{
    color:#d0d8e1;

    line-height:1.9;

    font-size:17px;
}
/* ===== CONTACT PAGE ===== */

.contact-page{
    background:#06111b;
    color:white;
    padding-top:150px;
}

.contact-hero{
    text-align:center;
    padding:120px 0 80px;
}

.contact-hero h1{
    font-size:64px;
    line-height:1.1;
    margin:22px 0;
    font-family:'Rajdhani', sans-serif;
}

.contact-hero p{
    max-width:900px;
    margin:auto;
    color:#d4dce5;
    font-size:20px;
    line-height:1.8;
}

.contact-content{
    padding:20px 0 120px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}

.contact-info-box,
.contact-form-box{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:40px;
    backdrop-filter:blur(6px);
}

.contact-info-box h2,
.contact-form-box h2{
    font-size:38px;
    margin-bottom:30px;
    font-family:'Rajdhani', sans-serif;
}

.contact-item{
    margin-bottom:26px;
}

.contact-item strong{
    display:block;
    color:#ff3b3b;
    margin-bottom:8px;
}

.contact-item span{
    color:#d5dde6;
    line-height:1.8;
}

.contact-form-box form{
    display:grid;
    gap:18px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{
    width:100%;
    padding:16px 18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:white;
    outline:none;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder{
    color:#b8c1cc;
}

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

.contact-form-box button{
    padding:18px 30px;
    border:none;
    border-radius:12px;
    background:#e30613;
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.contact-form-box button:hover{
    background:#ff1a28;
}

@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:44px;
    }
}

/* ===== LOGO SIZE OVERRIDE ===== */
.site-header .brand img{
    height:150px !important;
    width:auto !important;
    display:block !important;
    transform:scale(1.12);
    transform-origin:left center;
}

/* ===== LOGO VISUAL ENLARGE WITHOUT HEADER GROWTH ===== */
.site-header{
    height:92px !important;
}

.header-inner{
    height:92px !important;
    padding:0 !important;
    overflow:visible !important;
}

.site-header .brand{
    height:92px !important;
    display:flex !important;
    align-items:center !important;
    overflow:visible !important;
}

.site-header .brand img{
    height:118px !important;
    transform:scale(1.25);
    transform-origin:left center;
}
