  /* =========================================================
           RESET
        ========================================================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #05091b;
            color: #ffffff;
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }


        /* =========================================================
           COLORS
        ========================================================= */

        :root {
            --bg-dark: #05091b;
            --bg-section: #10182c;
            --bg-card: #131d32;
            --bg-card-2: #111b30;

            --border: rgba(130, 160, 210, 0.20);

            --text: #ffffff;
            --muted: #a6b0c5;
            --muted-light: #b8c1d3;

            --blue: #438cff;
            --blue-light: #54bfff;
            --cyan: #00c9ff;

            --gradient: linear-gradient(
                90deg,
                #438cff,
                #00bfff
            );
        }


        /* =========================================================
           COMMON
        ========================================================= */

        .container {
            width: min(1180px, 92%);
            margin: auto;
        }

        .section {
            padding: 90px 0;
            background: var(--bg-section);
        }

        .section-dark {
            padding: 90px 0;
            background: var(--bg-dark);
        }

        .section-title {
            text-align: center;
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: var(--muted);
            font-size: 18px;
            max-width: 750px;
            margin: 0 auto 55px;
        }

        .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 25px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            transition: .3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(
                90deg,
                #438cff,
                #2f6df6
            );
            color: #fff;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(52, 123, 255, .3);
        }

        .btn-outline {
            border: 1px solid #4a8fff;
            color: #fff;
            background: transparent;
        }

        .btn-outline:hover {
            background: #438cff;
        }


        /* =========================================================
           HEADER
        ========================================================= */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;

            background: rgba(5, 9, 27, .96);
            border-bottom: 1px solid rgba(255,255,255,.05);

            backdrop-filter: blur(10px);
        }

        .header-inner {
            min-height: 90px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .logo {
            width: 108px;
            height: 58px;
            object-fit: contain;
            background: #fff;
            border-radius: 7px;
            padding: 5px;
        }

        .brand {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 22px;
            font-weight: 700;
        }

        .brand-tagline {
            font-size: 11px;
            letter-spacing: 4px;
            color: #428cff;
            font-weight: 700;
        }

        nav ul {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 28px;
        }

        nav a {
            color: #c5cede;
            font-size: 15px;
            transition: .3s;
        }

        nav a:hover,
        nav a.active {
            color: #4d94ff;
        }

        .menu-toggle {
            display: none;
            border: 0;
            background: transparent;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }


        /* =========================================================
           HERO
        ========================================================= */

        .hero {
            min-height: 600px;
            display: flex;
            align-items: center;
            text-align: center;
            background:
                radial-gradient(
                    circle at 50% 35%,
                    rgba(25, 75, 170, .18),
                    transparent 40%
                ),
                var(--bg-dark);
        }

        .hero-content {
            max-width: 1050px;
            margin: auto;
        }

        .hero h1 {
            font-size: clamp(48px, 7vw, 86px);
            line-height: 1.05;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .hero p {
            max-width: 900px;
            margin: auto;
            color: var(--muted-light);
            font-size: 20px;
        }


        /* =========================================================
           HOME INTRO
        ========================================================= */

        .intro {
            text-align: center;
            max-width: 950px;
            margin: auto;
        }

        .intro h2 {
            font-size: 52px;
            margin-bottom: 20px;
        }

        .intro p {
            color: var(--muted);
            font-size: 18px;
        }


        /* =========================================================
           CARDS
        ========================================================= */

        .cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .card {
            background: linear-gradient(
                145deg,
                #151f34,
                #111a2e
            );

            border: 1px solid var(--border);
            border-radius: 18px;

            padding: 38px;

            transition: .3s;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(65, 143, 255, .5);
        }

        .icon-box {
            width: 76px;
            height: 76px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 15px;

            border: 1px solid rgba(120,160,220,.25);

            background: #1a263b;

            color: #5da3ff;

            font-size: 34px;

            margin-bottom: 28px;
        }

        .card h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .card p {
            color: var(--muted);
            font-size: 17px;
        }

        .learn-more {
            display: inline-block;
            margin-top: 35px;
            color: #5aa0ff;
            font-size: 16px;
        }


        /* =========================================================
           SERVICES
        ========================================================= */

        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .service-card {
            padding: 30px;
            border-radius: 16px;

            background: #121c31;

            border: 1px solid var(--border);

            min-height: 220px;
        }

        .service-card h3 {
            margin: 18px 0 10px;
            font-size: 22px;
        }

        .service-card p {
            color: var(--muted);
            font-size: 15px;
        }


        /* =========================================================
           ABOUT / APPROACH
        ========================================================= */

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .content h2 {
            font-size: 52px;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .content p {
            color: var(--muted);
            font-size: 17px;
            margin-bottom: 20px;
        }

        .content-image {
            width: 100%;
            border-radius: 14px;
            border: 1px solid var(--border);
        }


        /* =========================================================
           CORE VALUES
        ========================================================= */

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .value-card {
            background: #121c31;
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 28px;
        }

        .value-card h3 {
            margin-bottom: 10px;
        }

        .value-card p {
            color: var(--muted);
        }


        /* =========================================================
           JOURNEY
        ========================================================= */

        .journey-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .journey-card {
            background: #121c31;
            border: 1px solid var(--border);
            padding: 25px;
            border-radius: 15px;
        }

        .phase {
            color: #55a0ff;
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .journey-card p {
            color: var(--muted);
            font-size: 14px;
        }


        /* =========================================================
           LEADERSHIP
        ========================================================= */

        .leaders {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            max-width: 900px;
            margin: auto;
        }

        .leader-card {
            background: #111b30;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .leader-card img {
            width: 100%;
            height: 530px;
            object-fit: cover;
        }

        .leader-info {
            padding: 22px;
            text-align: center;
        }

        .leader-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .leader-info p {
            color: #6faaff;
            font-size: 14px;
        }


        /* =========================================================
           CAREERS
        ========================================================= */

        .career-intro {
            max-width: 950px;
            margin: auto;
            text-align: center;
        }

        .career-intro h1 {
            font-size: clamp(48px, 7vw, 78px);
            line-height: 1.05;
            margin-bottom: 30px;
        }

        .career-intro p {
            color: var(--muted);
            font-size: 18px;
        }

        .career-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .benefits {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .benefit {
            display: flex;
            gap: 20px;
        }

        .benefit-icon {
            width: 52px;
            min-width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 10px;
            background: #1a263d;
            border: 1px solid var(--border);

            color: #56a0ff;
            font-size: 24px;
        }

        .benefit h3 {
            margin-bottom: 7px;
        }

        .benefit p {
            color: var(--muted);
        }

        .apply-box {
            background: #121c31;
            border: 1px solid rgba(130,160,210,.3);
            border-radius: 18px;
            padding: 38px;
        }

        .apply-box h2 {
            font-size: 30px;
            margin-bottom: 10px;
        }

        .apply-box p {
            color: var(--muted);
            margin-bottom: 30px;
        }

        .apply-box label {
            display: block;
            margin: 20px 0 8px;
            color: #aeb8ca;
            font-size: 13px;
            text-transform: uppercase;
        }

        .apply-box input,
        .apply-box textarea {
            width: 100%;
            background: #050a1b;
            color: white;

            border: 1px solid #344158;

            border-radius: 8px;

            padding: 15px;

            outline: none;
        }

        .apply-box input:focus,
        .apply-box textarea:focus {
            border-color: #4a90ff;
        }

        .apply-box textarea {
            height: 120px;
            resize: vertical;
        }

        .file-upload {
            border: 2px dashed #354158;
            padding: 25px;
            text-align: center;
            border-radius: 10px;
            color: #7f8ba0;
        }


        /* =========================================================
           CTA
        ========================================================= */

        .cta {
            padding: 70px 20px;

            text-align: center;

            background:
                radial-gradient(
                    circle at center,
                    rgba(45,105,240,.4),
                    transparent 70%
                ),
                #18264a;

            border-radius: 18px;
        }

        .cta h2 {
            font-size: 42px;
            max-width: 800px;
            margin: auto auto 20px;
        }

        .cta p {
            color: #aebbd2;
            max-width: 700px;
            margin: auto auto 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }


        /* =========================================================
           CONTACT
        ========================================================= */

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-box {
            background: #121c31;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 35px;
        }

        .contact-item {
            display: flex;
            gap: 18px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #1a273e;
            border-radius: 8px;

            color: #55a0ff;
        }

        .contact-item h4 {
            margin-bottom: 4px;
        }

        .contact-item p {
            color: var(--muted);
        }

        .map {
            width: 100%;
            height: 350px;
            border: 0;
            border-radius: 12px;
        }


        /* =========================================================
           SECTORS
        ========================================================= */

        .sector-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .sector-card {
            background: #121c31;
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 30px;
        }

        .sector-card h3 {
            margin: 15px 0 8px;
        }

        .sector-card p {
            color: var(--muted);
        }


        /* =========================================================
           FOOTER
        ========================================================= */

        footer {
            background: #05091b;
            border-top: 1px solid rgba(255,255,255,.05);
            padding: 70px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 50px;
        }

        .footer-logo {
            width: 100px;
            background: white;
            padding: 5px;
            border-radius: 7px;
            margin-bottom: 20px;
        }

        .footer-about {
            color: var(--muted);
            max-width: 320px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 17px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #9da9be;
            font-size: 14px;
        }

        .footer-column a:hover {
            color: #4e94ff;
        }

        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,.06);

            text-align: center;

            color: #69758b;
            font-size: 13px;
        }


        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 768px) {

            .container {
                width: 90%;
            }

            .section,
            .section-dark {
                padding: 65px 0;
            }

            .header-inner {
                min-height: 78px;
            }

            .logo {
                width: 108px;
                height: 56px;
            }

            .brand-name {
                font-size: 17px;
            }

            .brand-tagline {
                font-size: 8px;
                letter-spacing: 3px;
            }

            nav {
                display: none;

                position: absolute;

                top: 78px;
                left: 0;

                width: 100%;

                background: #091026;

                border-top: 1px solid rgba(255,255,255,.05);
            }

            nav.open {
                display: block;
            }

            nav ul {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }

            nav li {
                border-bottom: 1px solid rgba(255,255,255,.05);
            }

            nav a {
                display: block;
                padding: 15px 25px;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                min-height: 500px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 17px;
            }

            .section-title {
                font-size: 35px;
            }

            .intro h2 {
                font-size: 38px;
            }

            .cards,
            .service-grid,
            .two-column,
            .values-grid,
            .leaders,
            .career-layout,
            .contact-grid,
            .sector-grid {
                grid-template-columns: 1fr;
            }

            .journey-grid {
                grid-template-columns: 1fr 1fr;
            }

            .card {
                padding: 28px;
            }

            .card h3 {
                font-size: 24px;
            }

            .content h2 {
                font-size: 38px;
            }

            .leader-card img {
                height: 380px;
            }

            .career-intro h1 {
                font-size: 48px;
            }

            .apply-box {
                padding: 25px;
            }

            .cta h2 {
                font-size: 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
        }


        @media (max-width: 480px) {

            .logo-area {
                gap: 10px;
            }

            .logo {
                width: 90px;
                height: 50px;
            }

            .brand-name {
                font-size: 15px;
            }

            .brand-tagline {
                font-size: 7px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 16px;
            }

            .journey-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 32px;
            }
        }
		
		/* =========================================================
   HOME HERO
========================================================= */

.home-hero {

    position: relative;

    min-height: calc(100vh - 90px);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 91, 255, 0.28),
            transparent 38%
        ),
        radial-gradient(
            circle at 50% 70%,
            rgba(0, 191, 255, 0.10),
            transparent 45%
        ),
        #05091b;

}


/* =========================================================
   HERO GRID BACKGROUND
========================================================= */

.hero-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .35;

    background-image:

        linear-gradient(
            rgba(55, 126, 255, .13) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(55, 126, 255, .13) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 15%,
            transparent 75%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            black 15%,
            transparent 75%
        );

}


/* =========================================================
   GLOW EFFECTS
========================================================= */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(70px);

}


.hero-glow-1 {

    width: 350px;

    height: 350px;

    top: 25%;

    left: 50%;

    transform: translateX(-50%);

    background:
        rgba(0, 92, 255, .18);

}


.hero-glow-2 {

    width: 250px;

    height: 250px;

    bottom: -80px;

    left: 20%;

    background:
        rgba(0, 191, 255, .08);

}


/* =========================================================
   HERO CONTENT
========================================================= */

.home-hero-content {

    position: relative;

    z-index: 2;

    width: min(1100px, 92%);

    margin: auto;

    text-align: center;

    padding: 100px 0 110px;

}


/* =========================================================
   BADGE
========================================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 18px;

    margin-bottom: 35px;

    border: 1px solid rgba(49, 145, 255, .75);

    border-radius: 30px;

    background:
        rgba(8, 43, 100, .35);

    color: #b9e8ff;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 0 20px rgba(0, 140, 255, .15);

}


/* Badge glowing dot */

.badge-dot {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #00d9ff;

    box-shadow:
        0 0 10px #00d9ff;

}


/* =========================================================
   HERO HEADING
========================================================= */

.home-hero h1 {

    margin: 0 auto;

    max-width: 950px;

    color: #ffffff;

    font-size: clamp(
        50px,
        7vw,
        88px
    );

    line-height: 1.02;

    letter-spacing: -2px;

    font-weight: 750;

}


/* Gradient heading */

.home-hero h1 span {

    display: block;

    margin-top: 8px;

    background:
        linear-gradient(
            90deg,
            #009cff,
            #00d8ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.home-hero p {

    max-width: 850px;

    margin: 38px auto 0;

    color: #d0d7e7;

    font-size: 19px;

    line-height: 1.65;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;

    margin-top: 42px;

}


/* Common button */

.hero-btn {

    min-width: 190px;

    min-height: 58px;

    padding: 15px 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-radius: 32px;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hero-btn-primary {

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #0877ff,
            #0062f5
        );

    border: 1px solid
        rgba(70, 166, 255, .9);

    box-shadow:
        0 8px 30px
        rgba(0, 104, 255, .35);

}


.hero-btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 38px
        rgba(0, 116, 255, .55);

}


/* Arrow */

.hero-btn-primary .arrow {

    font-size: 22px;

    line-height: 1;

    transition:
        transform .3s ease;

}


.hero-btn-primary:hover .arrow {

    transform:
        translateX(5px);

}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.hero-btn-outline {

    color: #ffffff;

    background:
        rgba(5, 15, 38, .35);

    border: 1px solid
        rgba(111, 170, 255, .85);

}


.hero-btn-outline:hover {

    transform: translateY(-3px);

    background:
        rgba(29, 99, 210, .18);

    border-color:
        #54a7ff;

    box-shadow:
        0 8px 30px
        rgba(0, 116, 255, .18);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .home-hero {

        min-height:
            calc(100vh - 78px);

    }


    .home-hero-content {

        padding:
            90px 0 80px;

    }


    .hero-badge {

        font-size: 13px;

        padding:
            9px 15px;

        margin-bottom: 28px;

    }


    .home-hero h1 {

        font-size: 52px;

        letter-spacing:
            -1.5px;

    }


    .home-hero p {

        font-size: 17px;

        line-height: 1.6;

        margin-top: 30px;

    }


    .hero-buttons {

        margin-top: 35px;

        gap: 15px;

    }


    .hero-btn {

        min-width: 175px;

        min-height: 54px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-hero {

        min-height:
            calc(100vh - 78px);

    }


    .home-hero-content {

        width: 90%;

        padding:
            70px 0 70px;

    }


    .hero-badge {

        font-size: 12px;

        padding:
            8px 13px;

        margin-bottom: 25px;

    }


    .badge-dot {

        width: 7px;

        height: 7px;

    }


    .home-hero h1 {

        font-size: 43px;

        line-height: 1.05;

        letter-spacing:
            -1px;

    }


    .home-hero h1 span {

        margin-top: 5px;

    }


    .home-hero p {

        font-size: 16px;

        line-height: 1.6;

        margin-top: 28px;

    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

        margin-top: 32px;

    }


    .hero-btn {

        width: 100%;

        max-width: 280px;

        min-height: 55px;

    }

}

/* Section wrapper background */
.section-cta {
    background-color: #030712; /* Overall deep dark background */
    padding: 5rem 0;
}

/* Top Stats Bar */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #60a5fa; /* Soft light blue label */
    margin-top: 0.75rem;
    text-transform: uppercase;
}

/* Call To Action Container Card (Matching Screenshot Background) */
.cta-card {
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.25) 0%, rgba(8, 18, 41, 0.95) 70%);
    background-color: #081229;
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-title .accent-text {
    color: #93c5fd; /* Soft highlighted text for 'vision?' */
}

.cta-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* Button with bright blue glow */
.btn-cta {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-cta:hover {
    background-color: #2563eb;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .cta-card {
        padding: 3rem 1.5rem;
    }
    .cta-title {
        font-size: 2rem;
    }
}