/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 30px;
}

/* =========================
   TOP HEADER
========================= */

.top-header{
    background:#ffffff;
    padding:20px 0;
}

.top-header-row{

    display:flex;

    justify-content:space-between;

    align-items:center;
}


.main-logo img{
    width:200px;
    object-fit:contain;
}

/* SDG HEADER LOGO */

.sdg-main-logo{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.sdg-main-logo img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:0.3s ease;
}


/* =========================
   MAIN NAVBAR
========================= */

.main-navbar{
    background:#140033;

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:
    0 4px 20px rgba(0,0,0,0.12);
}

.nav-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px;

    padding:18px 0;
}

.nav-links li a{
    color:#ffffff;
    font-size:15px;
    font-weight:500;
    transition:0.3s ease;
    
    position:relative;
    padding-bottom:6px;

}


.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;

    height:2px;

    background:#8b5cf6;

    transition:0.3s ease;
}

.nav-links li a:hover::after{

    width:100%;
}

.nav-links li a:hover{

    color:#c4b5fd;

    text-shadow:
    0 0 18px rgba(139,92,246,0.55);
}

/* =========================
   HERO SECTION
========================= */

.hero-section{

    background:#050816;

    padding:30px 0 40px;

    position:relative;

    overflow:hidden;
}

.hero-section::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(124,58,237,0.10);

    border-radius:50%;

    top:-200px;
    right:-150px;

    filter:blur(50px);
}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr 0.9fr;

    gap:70px;

    align-items:center;

    min-height:760px;
}

.hero-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    height:100%;

    text-align:left;
}



.hero-tag{
    display:inline-flex;
    align-items:center;

    background:rgba(255,255,255,0.08);

    color:#d8c9ff;

    padding:12px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.hero-title{

    font-size:72px;

    line-height:1.05;

    font-weight:850;

    color:#ffffff;

    margin-bottom:32px;

    letter-spacing:-2.5px;

    max-width:820px;
}



.hero-text{

    max-width:1150px;

    margin-left:auto;

    margin-right:auto;

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,0.88);
}



.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    width:100%;

    margin-top:0;
}


.hero-btn{
    padding:16px 30px;

    border-radius:60px;

    font-size:15px;
    font-weight:600;

    min-width:210px;

    justify-content:center;

    display:inline-flex;

    align-items:center;


    transition:0.3s ease;
}

.hero-btn-primary{
    background:#7c3aed;
    color:#ffffff;
}

.hero-btn-primary:hover{
    background:#6d28d9;
    transform:translateY(-2px);
}

.hero-btn-secondary{
    border:1px solid rgba(255,255,255,0.15);

    color:#ffffff;

    background:rgba(255,255,255,0.04);
}

.hero-btn-secondary:hover{
    background:#ffffff;
    color:#111827;
}

/* =========================================
WHATSAPP HERO BUTTON
========================================= */

.whatsapp-btn{

    background:#25D366;

    color:#ffffff !important;

    border:none;
}

.whatsapp-btn:hover{

    background:#1ebe5d;

    color:#ffffff !important;

    transform:translateY(-3px);
}


/* =========================
   HERO SLIDER
========================= */

.hero-right{
    position:relative;
    height:760px;
}

.hero-image{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:34px;

    opacity:0;
    visibility:hidden;

    transition:all 0.6s ease;

    cursor:pointer;

    pointer-events:none;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.45);
}

.hero-image.active-slide{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    z-index:2;
}

/* =========================
   IMAGE POPUP
========================= */

.image-popup{
    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:flex;

    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:0.3s ease;

    z-index:99999;
}

.image-popup.active-popup{
    opacity:1;
    visibility:visible;
}

.image-popup img{
    max-width:90%;
    max-height:90%;

    border-radius:20px;

    box-shadow:
    0 20px 80px rgba(0,0,0,0.6);
}

.close-popup{
    position:absolute;

    top:30px;
    right:40px;

    color:#ffffff;

    font-size:50px;

    cursor:pointer;

    font-weight:300;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

.hero-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.hero-title{
    font-size:58px;
}

.hero-right{
    height:450px;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.container{
    padding:0 20px;
}

.top-header{
    padding:18px 0;
}

.main-logo img{
    width:170px;
}

.nav-links{
    flex-wrap:wrap;

    gap:18px;

    padding:16px 0;
}

.hero-section{
    padding:35px 0 45px;
}

.hero-title{

    font-size:48px;

    line-height:1.12;
}

.hero-text{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
    align-items:stretch;
}

.hero-btn{
    text-align:center;
}

.hero-right{
    height:320px;
}

}

/* =========================================
GLOBAL PAGE HERO
========================================= */

.team-hero{

    position:relative;

    min-height:500px;

    overflow:hidden;

    display:flex;

    align-items:flex-start;

    justify-content:center;

    text-align:center;

    color:#fff;

    padding-top:30px;
}



/* SLIDER */

.hero-slider{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    overflow:hidden;

    z-index:0;
}

.hero-slide{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    opacity:0;

    transition:opacity 1.2s ease-in-out;
}

.hero-slide.active-hero-slide{

    opacity:1;
}



/* HERO OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(5,8,22,0.72) 0%,
        rgba(5,8,22,0.78) 35%,
        rgba(5,8,22,0.84) 100%
    );

    z-index:1;
}



/* CONTENT */

.page-hero-content{

    position:relative;

    padding:50px 30px 20px;

    z-index:2;

    width:100%;

    max-width:1150px;

    margin:0 auto;

    text-align:center;
}

.page-hero-content{

    display:flex;

    flex-direction:column;

    align-items:center;
}


.page-tag{

    display:inline-flex;

    width:fit-content;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(10px);

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

    text-transform:uppercase;
}

.page-hero h1{

    width:100%;
    
    max-width:1150px;

    line-height:1.02;

    font-weight:700;

    margin-left:auto;

    margin-right:auto;

    margin-bottom:18px;

    text-shadow:
    0 8px 30px rgba(0,0,0,0.35);
}

.page-hero p{

    font-size:20px;

    line-height:1.5;

    color:#e0e0e0;

    max-width:1100px;

    margin:auto;

    padding:0 0 20px;
}

.page-hero{

    position:relative;

    min-height:500px;

    overflow:hidden;

    text-align:center;

    color:#ffffff;

    padding-top:0;

    padding-bottom:20px;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .page-hero{

        height:75vh;
    }

    .team-hero h1{

        font-size:48px;
    }

    .team-hero p{

        font-size:17px;
    }
}

@media(max-width:576px){

    .team-hero{

        height:70vh;
    }

    .team-hero h1{

        font-size:34px;

        line-height:1.3;
    }

    .team-hero p{

        font-size:15px;
    }

    .team-tag{

        font-size:12px;

        padding:10px 18px;
    }
}




/* =========================================
COMMON SECTION
========================================= */

section{
    position:relative;
    scroll-margin-top:90px;
}


/* =========================================
ABOUT SECTION FINAL PREMIUM
========================================= */

.about-section{

    background:#050816;

    padding:40px 0;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}



/* LEFT IMAGE */

.about-image{

    position:relative;
}

.about-image img{

    width:100%;

    height:610px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45);

    border:
    1px solid rgba(255,255,255,0.08);
}



/* RIGHT CONTENT */

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;
}

/* TEXT */

.about-content p{

    color:#d1d5db;

    font-size:17px;

    line-height:2.1;

    margin-bottom:26px;

    max-width:620px;

    text-align:justify;
}



/* FEATURE BOXES */

.about-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:20px;
}

.feature-box{

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:28px 20px;

    text-align:center;

    backdrop-filter:blur(12px);

    transition:0.35s ease;
}

.feature-box:hover{

    transform:translateY(-6px);

    border-color:#8b5cf6;

    background:
    rgba(124,58,237,0.08);
}

.feature-box h4{

    color:#ffffff;

    font-size:20px;

    line-height:1.4;
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

.about-grid{

    grid-template-columns:1fr;

    gap:50px;
}

.about-image img{

    height:450px;
}

}

@media(max-width:768px){

.about-section{

    padding:40px 0;
}

.about-content p{

    font-size:16px;
}

.about-image img{

    height:320px;
}

.about-features{

    grid-template-columns:1fr;
}

}

/* =========================================
WHY SECTION
========================================= */

.why-section{

    background:#050816;

    padding:50px 0;
}

.why-grid{

    display:grid;

    grid-template-columns:0.9fr 1.1fr;

    gap:40px;

    align-items:center;
}

.why-content p{

    color:#cbd5e1;

    line-height:1.9;

    margin-top:25px;
}

.why-boxes{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.why-box{

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:34px;

    transition:0.3s ease;
}

.why-box:hover{

    transform:translateY(-6px);

    border-color:#8b5cf6;
}

.why-box h4{

    color:#ffffff;

    font-size:18px;

    margin-bottom:12px;
}

.why-box p{

    color:#cbd5e1;

    line-height:1.7;

    font-size:15px;
}



/* =========================================
STATS
========================================= */

.stats-section{

    background:#050816;

    padding:40px 0;
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.stat-card{

    background:rgba(255,255,255,0.04);

    border-radius:26px;

    padding:45px 30px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.06);
}

.stat-card h2{

    color:#8b5cf6;

    font-size:54px;

    margin-bottom:14px;

    font-weight:800;
}

.stat-card p{

    color:#ffffff;

    font-size:18px;
}





/* =========================================
TESTIMONIALS
========================================= */

.testimonial-section{

    padding:40px 0;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.testimonial-card{

    background:#0b1224;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:38px;

    transition:0.35s ease;
}

.testimonial-card p{

    color:#dbe4f0;

    line-height:1.9;

    margin-bottom:25px;
}

.testimonial-card h4{

    color:#ffffff;

    font-size:18px;
}

.testimonial-card:hover{

    transform:translateY(-6px);

    border-color:#8b5cf6;

    box-shadow:
    0 18px 40px rgba(124,58,237,0.15);
}




/* =========================================
GLOBAL CTA SECTION
========================================= */

.services-cta-section{

    padding:40px 0;

    background:#050816;
}

.services-cta-box{

    max-width:1280px;

    margin:auto;

    text-align:center;

    padding:60px 50px;

    border-radius:42px;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #6d28d9 0%,
    #8b5cf6 50%,
    #7c3aed 100%);

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 60px rgba(124,58,237,0.25);
}

.services-cta-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 34px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.12);

    border:
    1px solid rgba(255,255,255,0.16);

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:28px;
}

.services-cta-box h2{

    color:#ffffff;

    font-size:60px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:20px;
}

.services-cta-box p{

    color:
    rgba(255,255,255,0.92);

    font-size:20px;

    line-height:1.6;

    max-width:1000px;

    margin:auto;

    text-align:justify;

    text-align-last:center;
}

.services-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:24px;

    flex-wrap:wrap;

    margin-top:42px;
}

.services-primary-btn,

.services-whatsapp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:18px 40px;

    border-radius:60px;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

    transition:0.4s ease;
}

/* CONTACT BUTTON */

.services-primary-btn{

    background:
    linear-gradient(
    135deg,
    #14003b 0%,
    #2a005f 50%,
    #4c1d95 100%);

    color:#ffffff;

    border:
    1px solid rgba(255,255,255,0.12);
}

.services-primary-btn:hover{

    background:#ffffff;

    color:#4c1d95;

    transform:
    translateY(-6px)
    scale(1.04);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.28);
}

/* WHATSAPP BUTTON */

.services-whatsapp-btn{

    background:#22c55e;

    color:#ffffff;
}

.services-whatsapp-btn:hover{

    background:#16a34a;

    color:#ffffff;

    transform:
    translateY(-6px)
    scale(1.04);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.28);
}

/* MOBILE */

@media(max-width:991px){

    .services-cta-box{

        padding:55px 35px;
    }

    .services-cta-box h2{

        font-size:46px;
    }

    .services-cta-box p{

        font-size:18px;
    }
}

@media(max-width:768px){

    .services-cta-section{

        padding:50px 15px;
    }

    .services-cta-box{

        padding:45px 22px;

        border-radius:28px;
    }

    .services-cta-tag{

        font-size:12px;

        letter-spacing:2px;

        padding:10px 20px;
    }

    .services-cta-box h2{

        font-size:34px;

        line-height:1.18;
    }

    .services-cta-box p{

        font-size:16px;

        line-height:1.7;
    }

    .services-primary-btn,

    .services-whatsapp-btn{

        width:100%;

        min-width:100%;
    }
}




/* =========================================
SERVICES TITLE FINAL
========================================= */

.services-section{

    background:#050816;

    padding:40px 0 50px;
}


/* =========================================
FINAL PREMIUM FIXES
========================================= */

/* SECTION SPACING */

.about-section,
.services-section,
.why-section,
.stats-section,
.testimonial-section{
    padding:40px 0;
}


/* HERO */

.hero-section{

    padding:20px 0 40px;
}


/* ABOUT */

.about-grid{

    gap:60px;

    align-items:center;
}

.about-image img{

    height:560px;
}

.about-content p{

    font-size:17px;

    line-height:2;

    text-align:justify;
}


/* FEATURES */

.feature-box{

    padding:24px 18px;

    border-radius:20px;
}

.feature-box h4{

    font-size:18px;
}


/* SERVICES */

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-top:30px;
}

.service-card{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:30px 26px;

    min-height:160px;

    transition:0.35s ease;

    backdrop-filter:blur(14px);
}

.service-card:hover{

    transform:
    translateY(-8px)
    scale(1.02);

    border-color:#8b5cf6;

    box-shadow:
    0 20px 50px rgba(124,58,237,0.15);
}

.service-card h3{

    color:#ffffff;

    font-size:20px;

    margin-bottom:14px;
}

.service-card p{

    color:#cbd5e1;

    line-height:1.7;

    font-size:15px;
}



/* STATS */

.stats-grid{

    gap:20px;
}

.stat-card{

    padding:34px 20px;
}

.stat-card h2{

    font-size:44px;
}


/* RESPONSIVE */

@media(max-width:1100px){

.services-grid{

    grid-template-columns:repeat(2,1fr);
}

.about-grid,
.why-grid{

    grid-template-columns:1fr;
}

.about-image img{

    height:420px;
}

}

@media(max-width:768px){

.services-grid,
.stats-grid,
.testimonial-grid,
.about-features,
.why-boxes{

    grid-template-columns:1fr;
}

.about-image img{

    height:320px;
}

.hero-right{

    height:320px;
}

}

.expertise-strip{

    background:#0b1224;

    padding:40px 0;
}

.expertise-box{

    background:
    linear-gradient(
        135deg,
        rgba(124,58,237,0.12),
        rgba(79,70,229,0.08)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:40px;

    text-align:center;
}

.expertise-box h3{

    color:#ffffff;

    font-size:32px;

    margin-bottom:18px;
}

.expertise-box p{

    color:#cbd5e1;

    font-size:17px;

    line-height:1.8;

    max-width:800px;

    margin:auto;
}

/* =========================================
ASSOCIATED VENTURES FINAL
========================================= */

.group-section{

    padding:20px 0 40px;

    background:transparent;
}

/* TITLE */

.group-section .services-title{

    text-align:center;

    margin-bottom:40px;
}

.group-section .services-title p{

    color:#cbd5e1;

    max-width:760px;

    margin:auto;

    line-height:1.9;

    font-size:17px;
}

/* GRID */

.group-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(320px,520px));

    justify-content:center;

    gap:35px;

    width:100%;
}

/* CARD */

.group-card{

    background:#f3f4f6;

    border-radius:34px;

    height:200px;

    padding:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    overflow:hidden;

    transition:0.35s ease;

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.18);
}

/* HOVER */

.group-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 22px 60px rgba(124,58,237,0.22);
}

/* LOGO */

.group-card img{

    width:100%;

    max-width:260px;

    max-height:150px;

    object-fit:contain;

    transition:0.35s ease;
}

.group-card:hover img{

    transform:scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

.group-grid{

    grid-template-columns:1fr;
}

.group-card{

    height:220px;

    padding:28px;
}

.group-card img{

    max-width:210px;
}

}


/* =========================================
CLIENT LOGO SLIDER
========================================= */

.clients-section{

     padding:30px 0 40px;

    background:#050816;

    overflow:hidden;
}

.clients-section .services-title{

    text-align:center;

    margin-bottom:40px;
}

.clients-section .services-title p{

    max-width:760px;

    margin:auto;

    color:#cbd5e1;

    line-height:1.8;
}

.logo-slider{

    width:100%;

    overflow:hidden;

    position:relative;
}

.logo-track{

    display:flex;

    align-items:center;

    gap:25px;

    width:max-content;

    animation:scrollLogo 45s linear infinite;
}

.logo-item{

    width:270px;

    height:145px;

    background:#e5e7eb;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:8px 15px;

    flex-shrink:0;

    transition:0.35s ease;

    overflow:hidden;
}


.dark-logo{

    background:#111827;
}

.dark-logo img{

    max-width:170px;
}

.sdrf-logo{

    width:140px !important;

    height:auto !important;

    object-fit:contain;

    transform:scale(0.88);
}





.logo-item:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(124,58,237,0.25);
}

.logo-item img{

    width:100%;

    height:100%;

    object-fit:contain;

    padding:10px;
}

@keyframes scrollLogo{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(-50%);
    }
}


/* MOBILE */

@media(max-width:768px){

.logo-item{

    width:170px;

    height:100px;
}

.logo-item img{

    max-width:120px;
}

}


/* =========================================
FINAL TITLE SYSTEM
========================================= */

.section-title,
.services-title{

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin-bottom:40px;
}

.section-title.left{

    align-items:flex-start;

    text-align:left;
}

.section-title span,
.services-title span,
.small-title{

    color:#8b5cf6;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    display:inline-block;

    margin-bottom:18px;
}

.section-title h2,
.services-title h2,
.why-content h2,
.cta-box h2{

    font-size:42px;

    line-height:1.15;

    color:#ffffff;

    font-weight:800;

    letter-spacing:-1px;

    margin:0;
}

/* ABOUT */

.about-section .section-title{

    align-items:flex-start;

    text-align:left;
}

/* CLIENTS */

.clients-section .services-title h2{

    font-size:42px;

    max-width:100%;

    white-space:nowrap;
}

/* WHY */

.why-content h2{

    max-width:550px;
}

/* RESPONSIVE */

@media(max-width:991px){

.section-title h2,
.services-title h2,
.why-content h2,
.cta-box h2{

    font-size:38px;
}

.clients-section .services-title h2{

    white-space:normal;
}

}

@media(max-width:768px){

.section-title h2,
.services-title h2,
.why-content h2,
.cta-box h2{

    font-size:32px;

    line-height:1.2;
}

.about-section .section-title{

    align-items:center;

    text-align:center;
}

.clients-section .services-title h2{

    white-space:normal;
}

}


/* =========================================
GOVERNMENT RECOGNITION SECTION
========================================= */

.empanelment-section{

    padding:60px 0 20px;

    background:transparent;
}

.section-title.center{
    text-align:center;
    margin-bottom:40px;   /* card se proper gap */
}

.section-title.center span{
    color:#7b4dff;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    display:inline-block;
    margin-bottom:14px;
}

.section-title.center h2{
    font-size:58px;
    line-height:1.05;
    font-weight:800;
    color:#ffffff;
    margin-bottom:0;
    max-width:900px;     /* ek line ke liye */
    margin-left:auto;
    margin-right:auto;
}


/* =========================================
RECOGNITION SECTION
========================================= */

.recognition-section{

    padding:0 0 35px;

    background:transparent;
}

.recognition-card{

    background:#050816;

    border:1px solid rgba(255,255,255,0.05);

    border-radius:0;

    padding:38px 0;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    flex-wrap:wrap;

    overflow:visible;

    position:relative;

    backdrop-filter:none;

    transition:0.35s ease;
}

/* LEFT SIDE */

.recognition-image{
    flex:1;
    min-width:320px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.shebox-logo{
    width:400px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 15px 40px rgba(0,0,0,0.40));
}

/* RIGHT SIDE */

.recognition-content{
    flex:1.2;
    min-width:420px;
    color:#ffffff;
}

.recognition-content h2{
    font-size:46px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:18px;
    color:#ffffff;
    max-width:700px;
}

.recognition-content p{
    font-size:17px;
    line-height:1.55;
    color:rgba(255,255,255,0.88);
    margin-bottom:18px;
    text-align:justify;
}

.recognition-list{
    margin-top:10px;
    padding-left:0;
}

.recognition-list li{
    list-style:none;
    font-size:16px;
    line-height:1.4;
    margin-bottom:15px;
    color:#ffffff;
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-weight:500;
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .empanelment-section{
        padding:40px 0 15px;
    }

    .section-title.center h2{
        font-size:42px;
        line-height:1.15;
    }

    .recognition-section{
        padding:0 0 30px;
    }

    .recognition-card{
        padding:30px 22px;
        gap:35px;
        text-align:center;
    }

    .recognition-image,
    .recognition-content{
        min-width:100%;
    }

    .recognition-content h2{
        font-size:38px;
        line-height:1.15;
        margin-bottom:16px;
    }

    .recognition-content p{
        font-size:17px;
        text-align:left;
        line-height:1.7;
    }

    .recognition-list li{
        font-size:17px;
        line-height:1.6;
        margin-bottom:14px;
    }

    .shebox-logo{
        width:300px;
    }

}

/* =========================================
HR CONSULTING SECTION
========================================= */

.hr-growth-section{

    padding:50px 0;

    background:transparent;

    overflow:hidden;
}

.hr-growth-card{

    background:transparent;

    border-radius:34px;

    padding:40px;

    position:relative;

    overflow:hidden;

    backdrop-filter:blur(12px);
}


/* GRID */

.hr-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:35px;
    align-items:center;
}

/* =========================================
LEFT CONTENT
========================================= */

.hr-left{
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
}

/* SMALL TAG */

.hr-tag{
    color:#9a7bff;
    font-size:14px;
    letter-spacing:4px;
    font-weight:700;
    display:inline-block;
    margin-bottom:18px;
}

/* MAIN TITLE */

.hr-left h2{
    font-size:56px;
    line-height:1.08;
    color:#ffffff;
    font-weight:800;
    margin-bottom:24px;
    max-width:700px;
}

/* PARAGRAPH */

.hr-left p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,0.84);
    max-width:720px;

    text-align:justify;
    text-justify:inter-word;
}

/* =========================================
RIGHT SIDE CARDS
========================================= */

.hr-right{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:22px;

    align-items:stretch;   /* sab equal height */
}

/* CARD */

.hr-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;

    padding:28px 28px;

    transition:0.35s ease;
    backdrop-filter:blur(12px);

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:260px;   /* sab card same height */
}

/* HOVER */

.hr-box:hover{
    transform:translateY(-8px);
    border-color:#7b4dff;
    box-shadow:0 15px 40px rgba(123,77,255,0.18);
}

/* CARD TITLE */

.hr-box h3{
    font-size:22px;
    color:#ffffff;
    margin-bottom:18px;
    font-weight:700;
    line-height:1.25;

    text-align:center;   /* center aligned */
}

/* CARD TEXT */

.hr-box p{
    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);

    text-align:center;   /* center aligned */
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .hr-growth-section{
        padding:60px 0;
    }

    .hr-growth-card{
        padding:25px;
    }

    .hr-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .hr-left{
        text-align:center;
    }

    .hr-left h2{
        font-size:42px;
    }

    .hr-left p{
        font-size:17px;
        line-height:1.8;
        text-align:left;
    }

    .hr-right{
        grid-template-columns:1fr;
    }

    .hr-box{
        padding:26px 22px;
    }

    .hr-box h3{
        font-size:22px;
    }

    .hr-box p{
        text-align:left;
    }

}



/* CARD */

.sdg-card{
    width:70px;
    height:70px;

    background:#ffffff;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    transition:0.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.22);
}

/* IMAGE */

.sdg-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* HOVER */

.sdg-card:hover{
    transform:translateY(-8px) scale(1.04);

    box-shadow:
    0 18px 40px rgba(123,77,255,0.30);
}


/* =========================================
RUNNING ANNOUNCEMENT STRIP
========================================= */

.announcement-strip{

    background:
    linear-gradient(
        90deg,
        #6d28d9,
        #4c1d95,
        #6d28d9
    );

    overflow:hidden;

    padding:16px 0;

    position:relative;

    z-index:20;

    border-top:
    1px solid rgba(255,255,255,0.08);

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.announcement-track{

    width:100%;

    overflow:hidden;

    white-space:nowrap;
}

.announcement-content{

    display:flex;

    align-items:center;

    gap:80px;

    width:max-content;

    animation:announcementScroll 28s linear infinite;
}

.announcement-content span{

    color:#ffffff;

    font-size:17px;

    font-weight:600;

    letter-spacing:0.4px;

    white-space:nowrap;
}

/* ICON BEFORE TEXT */

.announcement-content span::before{

    content:"★";

    color:#ffffff;

    margin-right:14px;

    font-size:15px;
}

/* ANIMATION */

@keyframes announcementScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

.announcement-strip{

    padding:14px 0;
}

.announcement-content span{

    font-size:15px;
}

}

.hero-mini-text{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-align:center;
    
    margin-left:auto;
    
    margin-right:auto;


    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#d8c9ff;

    padding:14px 32px;

    border-radius:60px;

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;

    backdrop-filter:blur(14px);

    width:fit-content;
}

.hero-line{

    width:120px;

    height:4px;

    background:
    linear-gradient(
        90deg,
        #7c3aed,
        #c084fc
    );

    border-radius:20px;

    margin-bottom:30px;
}

.hero-trust-badge{

    display:flex;

    align-items:center;

    justify-content:center;
    
    margin-left:auto;
    
    margin-right:auto;

    gap:12px;

    background:
    linear-gradient(
        135deg,
        rgba(124,58,237,0.22),
        rgba(91,33,182,0.14)
    );

    border:
    1px solid rgba(167,139,250,0.35);

    color:#ffffff;

    padding:14px 32px;

    border-radius:60px;

    font-size:14px;

    font-weight:700;

    letter-spacing:0.3px;

    margin-bottom:18px;

    backdrop-filter:blur(18px);

    box-shadow:
    0 10px 30px rgba(124,58,237,0.18);

    width:fit-content;
}

/* ICON */

.hero-trust-badge i{

    color:#c4b5fd;

    font-size:15px;
}

/* MWCD LINK */

.mwcd-link{

    color:#ffffff;

    text-decoration:none;

    font-weight:800;

    transition:0.3s ease;
}

.mwcd-link:hover{

    color:#d8c9ff;
}

/* RECOGNITION TAG */

.recognition-tag{

    display:inline-flex;

    align-items:center;
    
    width:fit-content;

    min-width:auto;

    max-width:max-content;

    background:
    rgba(236,72,153,0.12);

    border:
    1px solid rgba(236,72,153,0.28);

    color:#f9a8d4;

    padding:10px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    margin-bottom:22px;

    letter-spacing:1px;

    text-transform:uppercase;

    backdrop-filter:blur(10px);
}


/* =========================================
CONTENT PROTECTION
========================================= */

body{

    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;

    -webkit-touch-callout:none;
}

/* IMAGE PROTECTION */

img{

    -webkit-user-drag:none;

    user-drag:none;
}

/* ALLOW IMAGE CLICK */

.hero-image,
.gallery-popup-image{

    pointer-events:auto !important;

    cursor:pointer;
}



*{

    transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

