*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;

    font-family:inherit;

    color:#ffffff;

    background:
        radial-gradient(
            ellipse 120% 80%
            at 70% 20%,
            rgba(255,20,147,.15),
            transparent 50%
        ),

        radial-gradient(
            ellipse 100% 60%
            at 30% 10%,
            rgba(0,255,255,.12),
            transparent 60%
        ),

        radial-gradient(
            ellipse 90% 70%
            at 50% 0%,
            rgba(138,43,226,.18),
            transparent 65%
        ),

        radial-gradient(
            ellipse 110% 50%
            at 80% 30%,
            rgba(255,215,0,.08),
            transparent 40%
        ),

        #000000;

    background-repeat:no-repeat;

    background-attachment:fixed;

    min-height:100vh;
}

ul{
    list-style:none;
}

/* NAVBAR */

.navbar{
    width:90%;
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 40px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border-radius:20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:45px;
}

.logo span{
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#d6dff5;
}

.nav-links a:hover{
    color:white;
}

.nav-btn{
    padding:14px 28px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #5B5FFF,
        #9C4DFF
    );

    color:white;
    font-weight:600;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:150px 8%;
    position:relative;
}

.hero-glow{
    position:absolute;
    right:-200px;
    top:-100px;

    width:500px;
    height:500px;

    background:#6d28d9;
    filter:blur(180px);

    opacity:.18;
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    width:100%;
}

.hero-content{
    flex:1;
}

.tagline{
    display:inline-block;
    padding:12px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:25px;

    font-size:14px;
}

.hero-content h1{
    font-size:78px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content h1 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    color:#b6c2d9;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    padding:18px 34px;
    border-radius:16px;

    background:linear-gradient(
        135deg,
        #5B5FFF,
        #9C4DFF
    );

    color:white;
    font-weight:600;
}

.btn-secondary{
    padding:18px 34px;
    border-radius:16px;

    border:1px solid rgba(255,255,255,.15);
    color:white;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
}
/* =======================
STATS SECTION
======================= */

.stats-section{
    padding:20px 8% 100px;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px 30px;

    backdrop-filter:blur(16px);

    transition:0.4s ease;

    position:relative;
    overflow:hidden;
}

/* subtle glow */

.stat-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(91,95,255,.08),
        rgba(156,77,255,.08)
    );

    opacity:0;
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:rgba(140,92,246,.25);
}

.stat-card:hover::before{
    opacity:1;
}

.stat-icon{
    font-size:34px;
    margin-bottom:18px;
}

.stat-card h2{
    font-size:44px;
    margin-bottom:8px;
}

.stat-card p{
    color:#b6c2d9;
}

/* =======================
FADE UP ANIMATION
======================= */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:
    opacity .9s ease,
    transform .9s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}
/* =======================
SERVICES SECTION
======================= */

.services-section{
    padding:100px 8%;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;

    color:#9c4dff;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.section-header h2{
    font-size:56px;
    margin-bottom:18px;
}

.section-header h2 span{

    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-header p{
    color:#b6c2d9;
    line-height:1.8;
    font-size:18px;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:24px;
}

/* CARD */

.service-card{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:40px 28px;

    text-align:center;

    transition:.45s ease;

    position:relative;
    overflow:hidden;

    cursor:pointer;
}

.service-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(91,95,255,.06),
        rgba(156,77,255,.10)
    );

    opacity:0;
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(156,77,255,.22);
}

.service-card:hover::before{
    opacity:1;
}

/* ICON */

.service-icon{
    width:72px;
    height:72px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto;
    margin-bottom:25px;

    border-radius:20px;

    background:rgba(156,77,255,.10);

    font-size:34px;

    transition:.4s ease;
}

.service-card:hover .service-icon{
    transform:scale(1.08);
}

/* TEXT */

.service-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.service-card p{
    color:#b6c2d9;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .section-header h2{
        font-size:42px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }
}

/* =======================
JOURNEY SECTION
======================= */

.journey-section{
    padding:100px 8%;
}

.journey-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.journey-content h2{
    font-size:56px;
    line-height:1.2;
    margin-bottom:24px;
}

.journey-content h2 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.journey-content p{
    color:#b6c2d9;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* IMAGE */

.journey-image{
    overflow:hidden;
    border-radius:28px;
    position:relative;
}

.journey-image img{
    width:100%;
    display:block;
    border-radius:28px;

    transition:.6s ease;
}

.journey-image:hover img{
    transform:scale(1.04);
}

/* =======================
WHY SECTION
======================= */

.why-section{
    padding:100px 8%;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.why-card{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:36px 26px;

    transition:.4s ease;

    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(91,95,255,.08),
        rgba(156,77,255,.10)
    );

    opacity:0;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:rgba(156,77,255,.25);
}

.why-card:hover::before{
    opacity:1;
}

.why-icon{
    font-size:34px;
    margin-bottom:24px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.why-card p{
    color:#b6c2d9;
    line-height:1.8;
}

/* =======================
RESPONSIVE
======================= */

@media(max-width:1200px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){

    .journey-container{
        grid-template-columns:1fr;
    }

    .journey-content{
        text-align:center;
    }

    .journey-content h2{
        font-size:42px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }
}
/* =======================
CLIENTS SECTION
======================= */

.clients-section{
    padding:100px 0;
    overflow:hidden;
}

/* MARQUEE */

.marquee{
    overflow:hidden;
    position:relative;
    margin-top:40px;
}

.marquee-track{
    display:flex;
    width:max-content;
    gap:24px;

    animation:marquee 28s linear infinite;
}

.reverse .marquee-track{
    animation:marqueeReverse 28s linear infinite;
}

/* LOGO CARD */

.client-logo{
    width:260px;
    height:120px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgb(255, 252, 252);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s ease;

    flex-shrink:0;
}

.client-logo img{
    width:120px;
    object-fit:contain;

    opacity:.7;
    filter:grayscale(100%);

    transition:.35s ease;
}

/* hover */

.client-logo:hover{
    transform:translateY(-5px);
    border-color:rgba(156,77,255,.25);
}

.client-logo:hover img{
    opacity:1;
    filter:grayscale(0%);
}

/* animations */

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@keyframes marqueeReverse{

    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }
}

/* mobile */

@media(max-width:768px){

    .client-logo{
        width:180px;
        height:90px;
    }

    .client-logo img{
        width:100px;
    }
}

/* =======================
TESTIMONIALS
======================= */

.testimonials-section{
    padding:100px 8%;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:35px;

    backdrop-filter:blur(16px);

    transition:.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);

    border-color:rgba(156,77,255,.25);
}

.stars{
    color:#9c4dff;
    margin-bottom:20px;
    font-size:22px;
}

.testimonial-text{
    color:#b6c2d9;
    line-height:1.9;
    margin-bottom:30px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h4{
    margin-bottom:5px;
}

.testimonial-user span{
    color:#b6c2d9;
}

/* =======================
CTA SECTION
======================= */

.cta-section{
    padding:0 8% 100px;
}

.cta-container{
    background:linear-gradient(
        135deg,
        rgba(91,95,255,.95),
        rgba(156,77,255,.92)
    );

    border-radius:36px;

    padding:38px 55px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta-container h2{
    font-size:46px;
    margin-bottom:12px;
}

.cta-container h2 span{
    color:#fff;
}

.cta-container p{
    line-height:1.9;
    max-width:700px;
}

.cta-btn{
    background:white;
    color:#111827;

    padding:18px 34px;
    border-radius:18px;

    font-weight:700;

    transition:.3s ease;
}

.cta-btn:hover{
    transform:translateY(-5px);
}

/* =======================
FOOTER
======================= */

.footer{
    background:#070b18;
    border-top:1px solid rgba(255,255,255,.08);

    padding:80px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-column h3,
.footer-column h4{
    margin-bottom:20px;
}

.footer-column p{
    color:#b6c2d9;
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:14px;
    color:#b6c2d9;
}

.footer-column a{
    color:#b6c2d9;
    transition:.3s ease;
}

.footer-column a:hover{
    color:white;
}

.socials{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.socials a{
    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    transition:.3s ease;
}

.socials a:hover{
    transform:translateY(-4px);
    background:rgba(156,77,255,.18);
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;
    text-align:center;
    color:#b6c2d9;
}

/* =======================
RESPONSIVE
======================= */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .cta-container{
        flex-direction:column;
        text-align:center;
        padding:50px 30px;
    }

    .cta-container h2{
        font-size:42px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================================
ABOUT PAGE HERO
========================================== */

.about-hero{
    padding:180px 8% 120px;
    position:relative;
    overflow:hidden;
}

.about-hero-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
}

.about-hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:25px 0;
}

.about-hero-content h1 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-hero-content p{
    font-size:18px;
    color:#b6c2d9;
    line-height:1.9;
    max-width:700px;
}

.about-hero-image{
    overflow:hidden;
    border-radius:34px;
    position:relative;
}

.about-hero-image img{
    width:100%;
    border-radius:34px;
    display:block;
    transition:.7s ease;
}

.about-hero-image:hover img{
    transform:scale(1.04);
}

.hero-glow{
    position:absolute;
    width:700px;
    height:700px;

    right:-250px;
    top:-250px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(140,92,246,.16),
        transparent 70%
    );

    pointer-events:none;
}

/* ==========================================
STORY INTRO
========================================== */

.story-intro{
    padding:60px 8% 100px;
}

.story-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.story-left h2{
    font-size:58px;
    line-height:1.2;
    margin:20px 0 30px;
}

.story-left h2 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.story-left p{
    color:#b6c2d9;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.story-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.story-stat-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:40px 25px;
    text-align:center;

    transition:.35s ease;
}

.story-stat-card:hover{
    transform:translateY(-6px);
    border-color:rgba(156,77,255,.22);
}

.story-stat-card h3{
    font-size:44px;
    margin-bottom:12px;
}

.story-stat-card p{
    color:#b6c2d9;
}

/* ==========================================
TIMELINE
========================================== */

.timeline-section{
    padding:100px 8%;
}

.timeline{
    position:relative;
    margin-top:70px;

    display:flex;
    flex-direction:column;
    gap:40px;
}

.timeline::before{
    content:"";
    position:absolute;

    left:28px;
    top:0;

    width:2px;
    height:100%;

    background:rgba(255,255,255,.1);
}

.timeline-card{
    margin-left:80px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:35px;

    position:relative;

    transition:.4s ease;
}

.timeline-card::before{
    content:"";

    position:absolute;

    left:-64px;
    top:42px;

    width:20px;
    height:20px;

    border-radius:50%;

    background:#8b5cf6;

    box-shadow:0 0 25px rgba(139,92,246,.7);
}

.timeline-card:hover{
    transform:translateY(-8px);
    border-color:rgba(156,77,255,.2);
}

.timeline-year{
    display:inline-block;

    margin-bottom:15px;

    color:#9c4dff;

    font-weight:700;
    font-size:15px;
}

.timeline-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.timeline-card p{
    color:#b6c2d9;
    line-height:1.9;
}

/* ==========================================
FOUNDER
========================================== */

.founder-section{
    padding:100px 8%;
}

.founder-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.founder-image{
    overflow:hidden;
    border-radius:34px;
}

.founder-image img{
    width:100%;
    display:block;
    transition:.6s ease;
}

.founder-image:hover img{
    transform:scale(1.04);
}

.founder-content h2{
    font-size:58px;
    margin:20px 0 30px;
}

.founder-content h2 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.founder-content p{
    color:#b6c2d9;
    line-height:1.9;
    margin-bottom:18px;
}

.founder-achievements{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.achievement{
    padding:16px 24px;

    border-radius:16px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s ease;
}

.achievement:hover{
    transform:translateY(-4px);
    border-color:rgba(156,77,255,.25);
}

/* ==========================================
MISSION & VISION
========================================== */

.mission-section{
    padding:100px 8%;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:50px;

    transition:.35s ease;
}

.mission-card:hover{
    transform:translateY(-8px);
    border-color:rgba(156,77,255,.22);
}

.mission-icon{
    font-size:42px;
    margin-bottom:22px;
}

.mission-card h3{
    font-size:30px;
    margin-bottom:20px;
}

.mission-card p{
    color:#b6c2d9;
    line-height:1.9;
}

/* ==========================================
TEAM
========================================== */

.team-section{
    padding:100px 8%;
}

.team-placeholder{
    position:relative;
    overflow:hidden;
    border-radius:36px;
}

.team-placeholder img{
    width:100%;
    display:block;
    transition:.7s ease;
}

.team-placeholder:hover img{
    transform:scale(1.04);
}

.team-overlay{
    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:40px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
}

.team-overlay h3{
    font-size:42px;
    max-width:800px;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .about-hero-container,
    .story-grid,
    .founder-grid{
        grid-template-columns:1fr;
    }

    .about-hero-content,
    .story-left,
    .founder-content{
        text-align:center;
    }

    .about-hero-content h1{
        font-size:48px;
    }

    .story-left h2,
    .founder-content h2{
        font-size:42px;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .story-stats{
        grid-template-columns:1fr;
    }

    .timeline-card{
        margin-left:45px;
    }

    .timeline::before{
        left:10px;
    }

    .timeline-card::before{
        left:-43px;
    }

    .team-overlay h3{
        font-size:28px;
    }
}

/* ==========================================
SERVICES HERO
========================================== */

.services-hero{
    padding:180px 8% 120px;
    position:relative;
    overflow:hidden;
}

.services-hero-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
}

.services-hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:24px 0;
}

.services-hero-content h1 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.services-hero-content p{
    color:#b6c2d9;
    font-size:18px;
    line-height:1.9;
    max-width:700px;
}

.services-hero-image{
    overflow:hidden;
    border-radius:34px;
    position:relative;
}

.services-hero-image img{
    width:100%;
    display:block;
    border-radius:34px;
    transition:.7s ease;
}

.services-hero-image:hover img{
    transform:scale(1.04);
}

/* ==========================================
SERVICES SECTION
========================================== */

.services-page-section{
    padding:100px 8%;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
}

/* CARD */

.service-page-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:40px 34px;

    position:relative;
    overflow:hidden;

    transition:.45s ease;

    cursor:pointer;
}

.service-page-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(91,95,255,.08),
        rgba(156,77,255,.10)
    );

    opacity:0;

    transition:.45s ease;
}

.service-page-card:hover{
    transform:translateY(-10px);

    border-color:rgba(156,77,255,.22);
}

.service-page-card:hover::before{
    opacity:1;
}

/* ICON */

.service-icon-box{
    width:78px;
    height:78px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    margin-bottom:26px;

    font-size:36px;

    background:rgba(156,77,255,.12);

    transition:.4s ease;
}

.service-page-card:hover .service-icon-box{
    transform:scale(1.08);
}

/* MINI TAG */

.service-mini-tag{
    display:inline-block;

    margin-bottom:18px;

    color:#9c4dff;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

/* CONTENT */

.service-page-card h3{
    font-size:30px;
    margin-bottom:18px;
}

.service-page-card p{
    color:#b6c2d9;
    line-height:1.9;
}

/* ==========================================
INDUSTRIES SECTION
========================================== */

.industries-section{
    padding:100px 8%;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
}

.industry-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:36px;

    transition:.4s ease;
}

.industry-card:hover{
    transform:translateY(-8px);

    border-color:rgba(156,77,255,.22);
}

.industry-icon{
    font-size:42px;
    margin-bottom:22px;
}

.industry-card h3{
    font-size:28px;
    margin-bottom:16px;
}

.industry-card p{
    color:#b6c2d9;
    line-height:1.9;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1200px){

    .services-page-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){

    .services-hero-container{
        grid-template-columns:1fr;
    }

    .services-hero-content{
        text-align:center;
    }

    .services-hero-content h1{
        font-size:50px;
    }

    .services-page-grid,
    .industries-grid{
        grid-template-columns:1fr;
    }

    .service-page-card,
    .industry-card{
        text-align:center;
    }

    .service-icon-box{
        margin-left:auto;
        margin-right:auto;
    }
}

/* ==========================================
VENTURES HERO
========================================== */

.ventures-hero{
    padding:180px 8% 120px;
    position:relative;
    overflow:hidden;
}

.ventures-hero-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
}

.ventures-hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:25px 0;
}

.ventures-hero-content h1 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.ventures-hero-content p{
    font-size:18px;
    color:#b6c2d9;
    line-height:1.9;
    max-width:700px;
}

.ventures-hero-image{
    overflow:hidden;
    border-radius:34px;
}

.ventures-hero-image img{
    width:100%;
    display:block;
    border-radius:34px;
    transition:.7s ease;
}

.ventures-hero-image:hover img{
    transform:scale(1.04);
}

/* ==========================================
VENTURES SHOWCASE
========================================== */

.ventures-showcase{
    padding:60px 8% 120px;
}

.venture-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

    margin-bottom:120px;
}

.venture-row.reverse .venture-content{
    order:2;
}

.venture-row.reverse .venture-image{
    order:1;
}

/* CONTENT */

.venture-content{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:34px;

    padding:50px;

    transition:.4s ease;
}

.venture-content:hover{
    transform:translateY(-8px);

    border-color:rgba(156,77,255,.22);

    box-shadow:0 10px 40px rgba(124,58,237,.08);
}

.venture-logo{
    height:80px;
    width:auto;
    object-fit:contain;

    margin-bottom:24px;
}

.venture-tag{
    display:inline-block;

    color:#9c4dff;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;
}

.venture-content h2{
    font-size:52px;
    margin-bottom:24px;
}

.venture-content p{
    color:#b6c2d9;
    line-height:1.9;
    margin-bottom:35px;
    font-size:17px;
}

/* BUTTON */

.venture-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    text-decoration:none;
    font-weight:600;

    color:#fff;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );

    transition:.35s ease;
}

.venture-btn:hover{
    transform:translateY(-3px);
}

/* IMAGE */

.venture-image{
    overflow:hidden;
    border-radius:34px;
    position:relative;
}

.venture-image img{
    width:100%;
    display:block;

    border-radius:34px;

    transition:.8s ease;
}

.venture-image:hover img{
    transform:scale(1.05);
}

/* ==========================================
SUBTLE IMAGE GLOW
========================================== */

.venture-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.18),
        rgba(0,0,0,.02)
    );

    pointer-events:none;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1100px){

    .venture-row{
        gap:50px;
    }

    .venture-content h2{
        font-size:42px;
    }
}

@media(max-width:991px){

    .ventures-hero-container,
    .venture-row{
        grid-template-columns:1fr;
    }

    .venture-row.reverse .venture-content,
    .venture-row.reverse .venture-image{
        order:unset;
    }

    .ventures-hero-content{
        text-align:center;
    }

    .ventures-hero-content h1{
        font-size:48px;
    }

    .venture-content{
        text-align:center;
        padding:40px;
    }

    .venture-content h2{
        font-size:38px;
    }

    .venture-logo{
        margin-left:auto;
        margin-right:auto;
    }

    .venture-btn{
        width:100%;
    }
}

@media(max-width:576px){

    .ventures-hero{
        padding:150px 6% 80px;
    }

    .ventures-showcase{
        padding:40px 6% 90px;
    }

    .venture-row{
        margin-bottom:80px;
    }

    .venture-content{
        padding:30px;
    }

    .venture-content h2{
        font-size:32px;
    }

    .venture-content p{
        font-size:15px;
    }
}

/* ==========================================
CONTACT HERO
========================================== */

.contact-hero{
    padding:180px 8% 120px;
    position:relative;
    overflow:hidden;
}

.contact-hero-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.contact-hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:24px 0;
}

.contact-hero-content h1 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-hero-content p{
    color:#b6c2d9;
    font-size:18px;
    line-height:1.9;
    max-width:700px;
}

.contact-hero-image{
    overflow:hidden;
    border-radius:34px;
}

.contact-hero-image img{
    width:100%;
    display:block;
    border-radius:34px;
    transition:.7s ease;
}

.contact-hero-image:hover img{
    transform:scale(1.04);
}

/* ==========================================
CONTACT INFO
========================================== */

.contact-info-section{
    padding:100px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:60px;
}

.contact-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:38px 32px;

    transition:.4s ease;

    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(91,95,255,.08),
        rgba(156,77,255,.12)
    );

    opacity:0;
    transition:.4s ease;
}

.contact-card:hover{
    transform:translateY(-8px);

    border-color:rgba(156,77,255,.24);
}

.contact-card:hover::before{
    opacity:1;
}

.contact-icon{
    font-size:42px;
    margin-bottom:24px;
}

.contact-card h3{
    font-size:28px;
    margin-bottom:16px;
}

.contact-card p{
    color:#b6c2d9;
    line-height:1.8;
    margin-bottom:22px;
}

.contact-card a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.contact-card a:hover{
    color:#9c4dff;
}

/* SOCIAL LINKS */

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.social-links a{
    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s ease;
}

.social-links a:hover{
    transform:translateY(-3px);
}

/* ==========================================
CONTACT FORM
========================================== */

.contact-form-section{
    padding:100px 8%;
}

.contact-form-container{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:60px;
    align-items:start;
}

.contact-form-left h2{
    font-size:58px;
    line-height:1.15;
    margin:24px 0;
}

.contact-form-left h2 span{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-form-left p{
    color:#b6c2d9;
    line-height:1.9;
    font-size:17px;
}

.contact-form-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:36px;

    padding:50px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:10px;

    font-size:14px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:18px 20px;

    color:#fff;
    outline:none;

    transition:.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#8b5cf6;
}

.form-group textarea{
    resize:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#97a5bd;
}

/* SELECT */

.form-group select{
    appearance:none;
}

/* BUTTON */

.submit-btn{
    width:100%;

    border:none;
    cursor:pointer;

    padding:20px;

    border-radius:999px;

    font-size:16px;
    font-weight:700;
    color:#fff;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );

    transition:.35s ease;
}

.submit-btn:hover{
    transform:translateY(-3px);
}

/* ==========================================
MAP
========================================== */

.map-section{
    padding:100px 8%;
}

.map-card{
    margin-top:60px;

    overflow:hidden;

    border-radius:36px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);
}

.map-card iframe{
    width:100%;
    height:500px;
    border:0;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1200px){

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){

    .contact-hero-container,
    .contact-form-container{
        grid-template-columns:1fr;
    }

    .contact-hero-content,
    .contact-form-left{
        text-align:center;
    }

    .contact-hero-content h1{
        font-size:48px;
    }

    .contact-form-left h2{
        font-size:42px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-form-card{
        padding:36px;
    }
}

@media(max-width:576px){

    .contact-hero{
        padding:150px 6% 80px;
    }

    .contact-info-section,
    .contact-form-section,
    .map-section{
        padding:80px 6%;
    }

    .contact-form-card{
        padding:28px;
    }

    .contact-form-left h2{
        font-size:34px;
    }

    .map-card iframe{
        height:350px;
    }
}

/* ==========================================
BRAND ECOSYSTEM
========================================== */

/* ==========================================
BRAND ECOSYSTEM CLEAN
========================================== */

.be-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    margin-top:60px;
}

.be-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    overflow:hidden;
    transition:.35s ease;
}

.be-card:hover{
    transform:translateY(-8px);
}

.be-card-img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.be-content{
    padding:35px;
    text-align:center;
}

.be-content h3{
    font-size:28px;
    margin-bottom:18px;
}

.be-content p{
    color:#b6c2d9;
    line-height:1.8;
    margin-bottom:28px;
}

@media(max-width:991px){
    .be-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .be-grid{
        grid-template-columns:1fr;
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .be-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0,1fr));

    gap:30px;

    margin-top:60px;

    width:100%;
}
}

    .be-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    overflow:hidden;

    transition:.35s ease;

    min-width:0;
}

/* MOBILE */

@media(max-width:991px){

    .navbar{
        width:95%;
        padding:20px;
    }

    .nav-links{
        display:none;
    }

    .nav-btn{
        display:none;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stats-container{
    grid-template-columns:1fr;
}
}
/* ==================================
MOBILE FIX
================================== */

@media screen and (max-width:991px){

    .be-grid{
        grid-template-columns:
        repeat(2,1fr) !important;
    }
}

@media screen and (max-width:576px){

    .be-grid{
        grid-template-columns:
        1fr !important;
    }

    .be-card-img{
        height:220px;
    }
}