    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {

        background: #fff;
        color: #fff;
        overflow-x: hidden;

    }

    html {
        scroll-behavior: smooth;
    }


    .container {

        width: 90%;
        max-width: 1300px;
        margin: auto;

    }

    header {
        width: 100%;
        background: #fff;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 999;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    }

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

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* height: 80px; */
    }

    .logo img {

        width: 121px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 35px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #222;
        font-size: 16px;
        font-weight: 500;
        transition: .3s;
    }

    .nav-links li a:hover {
        color: #efbf04;
    }

    .btn {
        text-decoration: none;
        background: #efbf04;
        border: 2px solid #efbf04;
        color: #fff;
        padding: 7px 25px;
        border-radius: 40px;
        transition: .3s;
    }

    .btn:hover {
        transform: translateY(-5px);
        /* color: #fff;
        border: 2px solid #efbf04;
        background: transparent; */
    }

    .newbtn {
        text-decoration: none;
        background: #efbf04;
        border: 2px solid #efbf04;
        color: #fff;
        padding: 8px 25px;
        border-radius: 40px;
        transition: .3s;
    }

    .newbtn:hover {
        background: transparent;
        border: 2px solid #efbf04;
        /* background: #222; */
    }

    /* Hamburger */

    .menu-toggle {
        display: none;
        width: 35px;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #222;
        margin: 6px 0;
        transition: .4s;
    }

    /* Responsive */

    @media(max-width:991px) {

        .btn {
            display: none;
        }

        .menu-toggle {
            display: block;
            z-index: 1001;
        }

        .nav-links {
            position: fixed;
            top: -100%;
            /* right: -100%; */
            width: 100%;
            /* height: calc(100vh - 80px); */
            background: #fff;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 40px;
            gap: 11px;
            transition: .4s;
            box-shadow: -5px 0 20px rgba(0, 0, 0, .08);
            z-index: -2;
        }

        .nav-links.active {
            top: 80px;
        }

        .nav-links li {
            width: 100%;
            text-align: center;
        }

        .nav-links li a {
            display: block;
            padding: 5px;
            width: 100%;
        }
    }

    /* HERO */

    .hero {

        /* min-height: 100vh; */

        display: flex;

        align-items: center;

        background:

            linear-gradient(rgba(7, 17, 34, .88),
                rgba(7, 17, 34, .95)),

            url(images/bg.jpg);

        background-size: cover;

        background-position: center;

        position: relative;

        overflow: hidden;

        padding: 92px;


    }



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

        background-image:
            linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);

        background-size: 70px 70px;

        mask-image: linear-gradient(to right,
                transparent,
                black 45%,
                transparent);
    }

    .hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -100px;
        top: 80px;

        border: 1px solid rgba(39, 157, 255, .25);
        border-radius: 50%;

        box-shadow:
            0 0 0 80px rgba(39, 157, 255, .025),
            0 0 0 160px rgba(39, 157, 255, .02);
    }

    .hero::after {
        content: "";
        position: absolute;

        width: 3px;
        height: 500px;

        right: 16%;
        top: -100px;

        background: linear-gradient(transparent,
                var(--gold),
                transparent);

        transform: rotate(35deg);
        opacity: .7;
    }


    /* .hero::before {

        content: "";

        position: absolute;

        width: 550px;

        height: 550px;

        background: #0f61ff22;

        filter: blur(100px);

        right: -120px;

        top: -100px;

        border-radius: 50%;

    } */

    .hero-content {

        display: grid;

        grid-template-columns: 1fr 1fr;

        align-items: center;

        gap: 80px;

    }

    .left span {

        color: #f7c94b;

        letter-spacing: 4px;

        font-size: 15px;

    }

    .left h1 {

        font-size: 68px;

        margin: 20px 0;

        line-height: 1.1;

        font-weight: 800;

    }

    .left p {

        font-size: 18px;

        line-height: 34px;

        opacity: .8;

        margin-bottom: 40px;

        max-width: 600px;

    }

    .buttons {

        display: flex;

        gap: 20px;

    }

    .btn2 {

        padding: 8px 35px;

        border: 2px solid #efbf04;

        color: #fff;

        text-decoration: none;

        border-radius: 50px;

        transition: .4s;

    }

    .btn2:hover {



        background: #efbf04;

        color: #fff;

    }

    .right {

        text-align: center;

    }

    .right img {

        width: 480px;

        max-width: 100%;

        animation: float 5s ease-in-out infinite;

        filter: drop-shadow(0 20px 50px #0d62ff55);

    }

    @keyframes float {

        0% {

            transform: translateY(0);

        }

        50% {

            transform: translateY(-20px);

        }

        100% {

            transform: translateY(0);

        }

    }

    /* Responsive */

    @media(max-width:991px) {

        .hero-content {

            grid-template-columns: 1fr;

            text-align: center;

        }

        .left h1 {

            font-size: 45px;

        }

        .buttons {

            justify-content: center;

        }

        nav ul {

            display: none;

        }

        .logo img {

            width: 80px;

        }

        .right {

            margin-top: 50px;

        }

        .right img {

            width: 330px;

        }

    }

    @media(max-width:576px) {



        .hero-content {
            text-align: start;
        }

        .hero {
            padding: 35px;
        }

        .left h1 {

            font-size: 35px;

        }

        .left p {

            font-size: 16px;

            line-height: 28px;

        }

        .buttons {

            flex-direction: column;

        }

        .btn,
        .btn2 {

            width: 100%;

            text-align: center;

        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-around;
            /* height: 80px; */
        }



        .hero-content .right {
            display: none;
        }

    }





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

    .about-section {
        background: #fff;
        padding: 100px 0;
    }

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

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    }

    .experience-box {
        position: absolute;
        left: -20px;
        bottom: 30px;
        background: #0B2341;
        color: #fff;
        padding: 25px;
        border-radius: 18px;
        text-align: center;
        border-left: 5px solid #D4A017;
    }

    .experience-box h2 {
        font-size: 40px;
        color: #D4A017;
    }

    .section-tag {
        color: #D4A017;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .about-content h2 {
        font-size: 25px;
        color: #0B2341;
        margin: 11px 0;
        /* line-height: 1.3; */
    }

    .about-content p {
        color: #666;
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .about-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .list-box {
        display: flex;
        gap: 18px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
        border: 1px solid #ececec;
        transition: .4s;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    }

    .list-box:hover {
        transform: translateY(-8px);
        border-color: #D4A017;
    }

    .icon {
        width: 55px;
        height: 55px;
        background: #D4A017;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .list-box h4 {
        color: #0B2341;
        margin-bottom: 8px;
    }

    .list-box p {
        margin: 0;
        line-height: 24px;
    }

    .about-btn {
        display: inline-block;
        margin-top: 40px;
        background: #0B2341;
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        transition: .3s;
    }

    .about-btn:hover {
        background: #D4A017;
        color: #0B2341;
    }

    @media(max-width:991px) {

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

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

        .about-content h2 {
            font-size: 34px;
        }

        .experience-box {
            left: 20px;
        }

    }






    /* Main Section Styling */
    .what-we-do-section {
        position: relative;
        width: 100%;
        /* min-height: 100vh; */
        padding: 50px 80px;
        background-image: url(../img/back.jpg);
        /* Soft office blur background */
        background-size: cover;
        background-position: center;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    /* Background Soft White Overlay */
    .bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(3px);
        z-index: 1;
    }

    /* Abstract Line Wave Overlay */
    .wave-accent {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 70% 30%, transparent 40%, rgba(0, 180, 216, 0.05) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    /* Title Styling */
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #1a1a1a;
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
    }

    /* Cyan Dot Accent */
    .dot-accent {
        display: inline-block;
        width: 18px;
        height: 18px;
        background-color: #ffb400;
        border-radius: 50%;
        margin-left: 4px;
        vertical-align: middle;
    }

    .title-underline {
        width: 220px;
        height: 2px;
        background-color: #a0a0a0;
        margin-top: 6px;
        position: relative;
    }

    .title-underline::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -2px;
        width: 4px;
        height: 4px;
        background-color: #333;
        border-radius: 50%;
    }

    /* Grid Layout */
    .grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 80px;
        row-gap: 40px;
    }

    /* Card Items */
    .card {
        display: flex;
        flex-direction: column;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .icon-box svg {
        width: 100%;
        height: 100%;
        stroke: #000000;
        stroke-width: 1.5;
    }

    .card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #111111;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 0.88rem;
        color: #333333;
        line-height: 1.5;
        font-weight: 400;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .what-we-do-section {
            padding: 40px 20px;
        }

        .grid-container {
            grid-template-columns: 1fr;
            row-gap: 30px;
        }


        .about-section {
            background: #fff;
            padding: 40px 20px;
        }
    }





    .sky-partner-section {
        /* background: #0a0a0a; */
        color: #0a0a0a;
        padding: 80px 20px;
    }

    .sky-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .sky-section-header {
        margin-bottom: 50px;
    }

    .sky-section-header h3 {
        color: #ffb400;
        letter-spacing: 2px;
        font-weight: 300;
    }

    .sky-section-header h2 {
        font-size: 3rem;
        margin-top: 5px;
        text-transform: uppercase;
    }

    .sky-accent-line {
        width: 80px;
        height: 4px;
        background: #ffb400;
        margin-top: 15px;
    }

    .sky-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .sky-card {
        background: #0B2341;
        padding: 30px;
        border-radius: 15px;
        transition: 0.4s;
        border: 1px solid #0B2341;
        cursor: pointer;
    }

    .sky-card:hover {
        background: #ffb400;
        color: #0B2341;
        transform: translateY(-10px);
    }


    .sky-number {
        font-size: 2rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.689);
        margin-bottom: 10px;
    }

    .sky-card:hover .sky-number {
        color: rgba(0, 0, 0, 0.3);
    }

    .sky-card h4 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .sky-card p {
        color: #fff;
        font-size: 0.9rem;
        line-height: 1.6;
        opacity: 0.8;
    }




    /* =========================================
   CLIENT MARQUEE
========================================= */

    .sky-clients-section {
        padding: 90px 0;
        background: #1c4671;
        overflow: hidden;
    }


    .sky-clients-container {
        width: 100%;
        margin: auto;
    }


    /* =========================================
   HEADER
========================================= */

    .sky-clients-header {
        width: 90%;
        max-width: 1280px;
        margin: 0 auto 45px;
    }


    .sky-clients-header span {
        display: block;

        margin-bottom: 12px;

        color: #efbf04;

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

        letter-spacing: 2px;
    }


    .sky-clients-header h2 {
        margin: 0;

        color: #fff;

        font-size: clamp(35px, 4vw, 55px);

        letter-spacing: -2px;
    }


    .sky-clients-underline {
        width: 60px;
        height: 2px;

        margin-top: 18px;

        background: #efbf04;
    }


    /* =========================================
   MARQUEE
========================================= */

    .sky-clients-marquee {
        width: 100%;

        overflow: hidden;

        position: relative;
    }


    /* Fade edges */

    .sky-clients-marquee::before,
    .sky-clients-marquee::after {
        content: "";

        position: absolute;

        top: 0;
        bottom: 0;

        width: 120px;

        z-index: 3;

        pointer-events: none;
    }


    .sky-clients-marquee::before {
        left: 0;

        background:
            linear-gradient(to right,
                #f7f6f3,
                transparent);
    }


    .sky-clients-marquee::after {
        right: 0;

        background:
            linear-gradient(to left,
                #f7f6f3,
                transparent);
    }


    /* =========================================
   TRACK
========================================= */

    .sky-clients-track {
        display: flex;

        width: max-content;

        align-items: center;

        animation:
            skyClientMarquee 45s linear infinite;
    }


    /* Pause on hover */

    .sky-clients-marquee:hover .sky-clients-track {
        animation-play-state: paused;
    }


    /* =========================================
   LOGO BOX
========================================= */

    .sky-client-logo {
        width: 180px;
        height: 120px;

        margin-right: 18px;

        flex-shrink: 0;

        display: flex;

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

        padding: 25px;

        background: #fff;

        border: 1px solid #e8e5df;

        border-radius: 6px;

        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }


    .sky-client-logo img {
        max-width: 100%;
        max-height: 65px;

        width: auto;
        height: auto;

        object-fit: contain;


        /* opacity: .65; */

        transition: .3s;
    }


    /* Hover */

    .sky-client-logo:hover {
        transform: translateY(-5px);

        box-shadow:
            0 15px 35px rgba(0, 0, 0, .08);
    }


    .sky-client-logo:hover img {
        filter: grayscale(100%);


        opacity: 1;

        transform: scale(1.05);
    }


    /* =========================================
   INFINITE ANIMATION
========================================= */

    @keyframes skyClientMarquee {

        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 9px));
        }

    }


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

    @media(max-width: 600px) {

        .sky-clients-section {
            padding: 70px 0;
        }


        .sky-clients-header {
            margin-bottom: 30px;
        }


        .sky-client-logo {
            width: 140px;
            height: 95px;

            margin-right: 12px;

            padding: 18px;
        }


        .sky-client-logo img {
            max-height: 55px;
        }


        .sky-clients-track {
            animation-duration: 35s;
        }


        .sky-clients-marquee::before,
        .sky-clients-marquee::after {
            width: 50px;
        }

    }


    .sky-luxury-bg {
        position: relative;
        width: 100%;
        /* min-height: 100vh; */
        /* Deep midnight blue radial gradient */
        background: radial-gradient(circle at 50% 40%, #0d1b2a 0%, #070d14 60%, #03060a 100%);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Top-Left Glowing Gold Diagonal Light Streak */
    .sky-luxury-bg::before {
        content: '';
        position: absolute;
        top: -60px;
        left: -80px;
        width: 450px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #e2b742, #fff3b0, transparent);
        transform: rotate(42deg);
        box-shadow: 0 0 20px rgba(226, 183, 66, 0.7);
        z-index: 1;
    }

    /* Bottom-Right Glowing Gold Diagonal Light Streak */
    .sky-luxury-bg::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -80px;
        width: 550px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #e2b742, #fff3b0, transparent);
        transform: rotate(42deg);
        box-shadow: 0 0 25px rgba(226, 183, 66, 0.7);
        z-index: 1;
    }



    /* Footer Styles */


    .site-footer {
        /* background: #101828; */
        background: linear-gradient(#0000009f), url(../img/footer.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        color: white;
    }


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

    .footer-top {
        padding: 90px 0 75px;

        position: relative;

        overflow: hidden;
    }

    /* .footer-top::after {
        content: "";

        position: absolute;

        width: 500px;
        height: 500px;

        right: -220px;
        top: -220px;

        border-radius: 50%;

        border:
            1px solid rgba(255, 255, 255, .04);
    } */


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

    .footer-main {

        display: grid;

        grid-template-columns:
            1.5fr .8fr 1fr 1.3fr;

        gap: 60px;

        position: relative;
        z-index: 2;
    }


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

    .footer-logo {

        display: inline-flex;

        flex-direction: column;

        font-family:
            "Plus Jakarta Sans",
            sans-serif;

        font-size: 25px;

        font-weight: 800;

        line-height: .85;

        letter-spacing: -1px;

        color: white;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-logo span {
        color: #efbf04;

        font-size: 12px;

        letter-spacing: 4px;

        margin: 5px 0;
    }

    .footer-brand p {

        max-width: 310px;

        color:
            rgba(255, 255, 255, .55);

        font-size: 13px;

        line-height: 1.8;

        margin:
            25px 0 28px;
    }

    .footer-talk {

        display: inline-flex;

        align-items: center;

        gap: 12px;

        padding:
            13px 17px;

        color: white;

        border:
            1px solid rgba(255, 255, 255, .18);

        border-radius: 5px;

        font-size: 10px;

        font-weight: 800;

        transition: .3s;
    }

    .footer-talk i {
        color: #efbf04;
    }

    .footer-talk:hover {

        background: #155EEF;

        border-color: #155EEF;

        transform:
            translateY(-3px);
    }


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

    .footer-title {

        display: block;

        color: #efbf04;

        font-size: 15px;

        font-weight: 800;

        letter-spacing: 2.5px;

        margin-bottom: 15px;
    }

    .footer-column ul {

        list-style: none;

        display: flex;

        flex-direction: column;

        gap: 11px;
    }

    .footer-column ul li a {

        color:
            rgba(255, 255, 255, .55);

        font-size: 14px;

        transition: .25s;

        position: relative;
    }

    .footer-column ul li a::before {

        content: "";

        width: 0;

        height: 1px;

        background: #155EEF;

        position: absolute;

        left: 0;

        bottom: -4px;

        transition: .25s;
    }

    .footer-column ul li a:hover {

        color: white;

        padding-left: 7px;
    }

    .footer-column ul li a:hover::before {

        width: 100%;
    }


    /* =====================================
   CONTACT
===================================== */

    .footer-contact {
        display: flex;

        flex-direction: column;

        align-items: flex-start;
    }

    .contact-row {

        display: flex;

        align-items: center;

        gap: 12px;

        margin-bottom: 14px;

        color:
            rgba(255, 255, 255, .6);

        font-size: 12px;

        line-height: 1.5;

        transition: .25s;
    }

    .contact-row:hover {
        color: white;
    }

    .contact-icon {

        width: 34px;
        height: 34px;

        flex-shrink: 0;

        display: grid;

        place-items: center;

        border-radius: 7px;

        color: #6EA0FF;

        background:
            rgba(21, 94, 239, .12);

        border:
            1px solid rgba(21, 94, 239, .18);

        font-size: 12px;
    }


    /* =====================================
   SOCIAL
===================================== */

    .footer-social {

        display: flex;

        gap: 8px;

        margin-top: 15px;
    }

    .footer-social a {

        width: 36px;
        height: 36px;

        display: grid;

        place-items: center;

        border-radius: 6px;

        color:
            rgba(255, 255, 255, .65);

        background:
            rgba(255, 255, 255, .05);

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

        font-size: 13px;

        transition: .3s;
    }

    .footer-social a:hover {

        color: white;

        background: #155EEF;

        border-color: #155EEF;

        transform:
            translateY(-4px);
    }


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

    .footer-bottom {

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

        padding: 20px 0;
    }

    .footer-bottom-inner {

        display: grid;

        grid-template-columns:
            1fr auto 1fr;

        align-items: center;

        gap: 25px;
    }

    .footer-bottom p {

        color: #fff;

        font-size: 12px;

        letter-spacing: .3px;
    }

    .footer-bottom-links {

        display: flex;

        gap: 25px;
    }

    .footer-bottom-links a {

        color:
            rgba(255, 255, 255, .4);

        font-size: 9px;

        transition: .2s;
    }

    .footer-bottom-links a:hover {
        color: white;
    }

    .back-top {

        justify-self: end;

        display: flex;

        align-items: center;

        gap: 10px;

        color:
            rgba(255, 255, 255, .45);

        font-size: 9px;

        font-weight: 700;

        letter-spacing: 1px;

        transition: .2s;
    }

    .back-top i {

        width: 32px;
        height: 32px;

        display: grid;

        place-items: center;

        border:
            1px solid rgba(255, 255, 255, .15);

        border-radius: 4px;
    }

    .back-top:hover {
        color: white;
    }

    .back-top:hover i {

        background: #155EEF;

        border-color: #155EEF;
    }


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

    @media(max-width:950px) {

        .footer-main {

            grid-template-columns:
                1fr 1fr;

            gap: 50px;
        }

        .footer-brand {

            grid-column:
                span 2;
        }

        .footer-bottom-inner {

            grid-template-columns:
                1fr 1fr;
        }

        .footer-bottom-links {
            justify-content: flex-end;
        }

        .back-top {
            grid-column:
                span 2;

            justify-self: start;
        }
    }


    @media(max-width:600px) {

        .footer-top {
            padding:
                65px 0 50px;
        }

        .footer-main {

            grid-template-columns: 1fr;

            gap: 40px;
        }

        .footer-brand {
            grid-column: auto;
        }

        .footer-brand p {
            max-width: 100%;
        }

        .footer-bottom-inner {

            grid-template-columns: 1fr;

            gap: 15px;
        }

        .footer-bottom-links {

            justify-content: flex-start;

            flex-wrap: wrap;

            gap: 15px;
        }

        .back-top {

            grid-column: auto;

            justify-self: start;
        }
    }



    .about-hero {
        position: relative;
        /* min-height: 480px; */
        display: flex;
        align-items: center;
        background: linear-gradient(135deg,
                rgba(35, 19, 77, 0.94),
                rgba(0, 29, 80, 0.937)),
            url("../images/about-hero.jpg");
        background-size: cover;
        background-position: center;
        overflow: hidden;
        padding: 90px 0;
    }


    .about-hero::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        right: -150px;
        top: -150px;
        background: rgba(6, 12, 69, 0.397);
        /* background-color: #008cff1f; */
        border-radius: 50%;
    }

    .about-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .about-hero h1 {
        max-width: 800px;
        margin: 0 auto 18px;
        color: #ffffff;
        font-size: 52px;
        line-height: 1.2;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .breadcrumb a {
        text-decoration: none;
        color: #ffffff;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .breadcrumb a:hover {
        color: #efbf04;
        transition: 0.3s ease;
    }

    .breadcrumb i {
        color: #fff;
        font-size: 11px;
    }

    .breadcrumb span {
        color: #fff;
        font-size: 14px;
    }










    /* --- Responsive CSS Grid Gallery --- */
    .gallery {
        padding: 80px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    /* --- Image Card Styling --- */
    .gallery-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background-color: var(--card-bg);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    /* --- Hover Overlay Effects --- */
    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: #ffffff;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .overlay p {
        font-size: 0.9rem;
        color: #ddd;
    }

    /* Hover Actions */
    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }


    /* --- Mobile Responsiveness --- */
    @media (max-width: 600px) {
        .hero h1 {
            font-size: 2rem;
        }

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








    :root {
        --blue: #155EEF;
        --blue-dark: #0D3FAF;
        --blue-light: #EAF2FF;

        --gold: #efbf04;
        --gold-light: #F4D98B;
        --new-gold: #efbf04;
        --dark: #172033;
        --text: #344054;
        --muted: #667085;

        --light: #F7F9FC;
        --border: #E6EAF0;

        --white: #fff;
    }


    .section-label {
        display: inline-block;
        color: var(--blue);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 2.8px;
    }


    /* =====================================================
   BUTTONS
===================================================== */

    .primary-btn,
    .secondary-btn {
        display: inline-flex;
        align-items: center;
        gap: 13px;
        padding: 15px 21px;
        font-size: 10px;
        font-weight: 800;
        transition: .3s;
    }

    .primary-btn {
        color: white;
        background: var(--blue);
        border-radius: 5px;
        box-shadow: 0 12px 30px rgba(21, 94, 239, .18);
    }

    .primary-btn:hover {
        background: var(--blue-dark);
        transform: translateY(-3px);
    }

    .secondary-btn {
        color: var(--dark);
        border-bottom: 1px solid var(--dark);
    }

    .secondary-btn:hover {
        color: var(--blue);
        border-color: var(--blue);
    }


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

    .exhibition-hero {
        min-height: 720px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        background:
            linear-gradient(125deg, #fff 0%, #F5F8FF 100%);
    }

    .hero-grid {
        position: absolute;
        inset: 0;
        opacity: .5;
        background-image:
            linear-gradient(rgba(21, 94, 239, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(21, 94, 239, .035) 1px, transparent 1px);
        background-size: 50px 50px;
    }

    .hero-bg-shape {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(21, 94, 239, .08);
    }

    .shape-one {
        width: 600px;
        height: 600px;
        right: -300px;
        top: -250px;
    }

    .shape-two {
        width: 400px;
        height: 400px;
        left: -300px;
        bottom: -250px;
    }

    .exhibition-hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-label {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--gold);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .hero-label span {
        width: 28px;
        height: 2px;
        background: var(--blue);
    }

    .hero-content h1 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(52px, 6vw, 80px);
        line-height: .98;
        letter-spacing: -5px;
        font-weight: 800;
    }

    .hero-content h1 span {
        color: var(--blue);
    }

    .hero-content>p {
        max-width: 530px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.9;
        margin: 28px 0 32px;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
        gap: 28px;
    }


    /* HERO VISUAL */

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .visual-frame {
        width: min(500px, 100%);
        height: 480px;
        position: relative;
        padding: 22px;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: 0 35px 80px rgba(16, 24, 40, .10);
    }

    .visual-top,
    .visual-bottom {
        display: flex;
        justify-content: space-between;
        color: #98A2B3;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .visual-building {
        position: absolute;
        left: 45px;
        right: 45px;
        top: 80px;
        bottom: 65px;
        background:
            linear-gradient(135deg, #0D3FAF, #5D8EEB);
        overflow: hidden;
    }

    .visual-building::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
        background-size: 30px 30px;
    }

    .stand-back {
        position: absolute;
        left: 20%;
        top: 17%;
        width: 60%;
        height: 52%;
        border: 2px solid rgba(255, 255, 255, .75);
        background: rgba(255, 255, 255, .07);
    }

    .stand-left {
        position: absolute;
        left: 9%;
        top: 34%;
        width: 20%;
        height: 45%;
        border: 2px solid rgba(255, 255, 255, .55);
    }

    .stand-right {
        position: absolute;
        right: 9%;
        top: 34%;
        width: 20%;
        height: 45%;
        border: 2px solid rgba(255, 255, 255, .55);
    }

    .stand-counter {
        position: absolute;
        left: 36%;
        bottom: 13%;
        width: 28%;
        height: 14%;
        background: rgba(255, 255, 255, .16);
        border: 1px solid rgba(255, 255, 255, .5);
    }

    .stand-light {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--new-gold);
        box-shadow: 0 0 25px var(--new-gold);
    }

    .light-1 {
        left: 25%;
        top: 12%;
    }

    .light-2 {
        left: 50%;
        top: 12%;
    }

    .light-3 {
        right: 25%;
        top: 12%;
    }

    .stand-logo {
        position: absolute;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 18px;
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: 2px;
    }


    /* =====================================================
   INTRO
===================================================== */

    .exhibition-intro {
        padding: 90px 0;
        background: white;
    }

    .intro-layout {
        display: grid;
        grid-template-columns: 80px 1.4fr 1fr;
        gap: 50px;
        align-items: start;
    }

    .intro-number {
        color: var(--gold);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        font-weight: 800;
        padding-top: 7px;
    }

    .intro-heading h2 {
        color: var(--dark);
        max-width: 650px;
        margin-top: 15px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(40px, 5vw, 62px);
        line-height: 1.02;
        letter-spacing: -3px;
    }

    .intro-heading h2 span {
        color: var(--blue);
    }

    .intro-text {
        padding-top: 35px;
    }

    .intro-text p {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 18px;
    }


    /* =====================================================
   EXHIBITION TYPES
===================================================== */

    .exhibition-types {
        padding: 110px 0;
        background: var(--light);
    }

    .section-heading {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 80px;
        align-items: end;
        margin-bottom: 60px;
    }

    .section-heading h2 {
        max-width: 650px;
        margin-top: 15px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1;
        letter-spacing: -3px;
    }

    .section-heading h2 span {
        color: var(--blue);
    }

    .section-heading>p {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.9;
    }

    .type-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .type-card {
        min-height: 380px;
        position: relative;
        padding: 30px;
        background: white;
        border: 1px solid var(--border);
        transition: .35s;
    }

    .type-card:hover,
    .type-card.featured {
        background: var(--blue);
        color: white;
        transform: translateY(-7px);
        box-shadow: 0 25px 60px rgba(21, 94, 239, .16);
    }

    .type-number {
        position: absolute;
        right: 25px;
        top: 25px;
        color: #98A2B3;
        font-size: 8px;
        font-weight: 800;
    }

    .type-card:hover .type-number,
    .type-card.featured .type-number {
        color: rgba(255, 255, 255, .6);
    }

    .type-icon {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        margin-bottom: 50px;
        color: var(--blue);
        background: var(--blue-light);
        border-radius: 8px;
    }

    .type-card:hover .type-icon,
    .type-card.featured .type-icon {
        color: var(--blue);
        background: white;
    }

    .type-card h3 {
        color: var(--dark);
        max-width: 210px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 23px;
        line-height: 1.15;
        margin-bottom: 17px;
    }

    .type-card h3 span {
        display: block;
        color: var(--blue);
    }

    .type-card:hover h3 span,
    .type-card.featured h3 span {
        color: var(--new-gold);
    }

    /* 
.type-card:hover h3{
    color: #fff;
} */

    .type-card p {
        color: var(--muted);
        font-size: 11px;
        line-height: 1.8;
    }

    .type-card:hover p,
    .type-card.featured p {
        color: rgba(255, 255, 255, .75);
    }

    .type-card a {
        position: absolute;
        left: 30px;
        bottom: 28px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--blue);
        font-size: 9px;
        font-weight: 800;
    }

    .type-card:hover a,
    .type-card.featured a {
        color: white;
    }


    /* =====================================================
   DESIGN + BUILD
===================================================== */

    .design-build {
        padding: 130px 0;
        background: white;
    }

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

    .db-visual {
        height: 530px;
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(135deg, #F0F5FF, #E7EEFF);
        border: 1px solid var(--border);
    }

    .db-label {
        position: absolute;
        left: 25px;
        top: 25px;
        color: var(--blue);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .db-lines {
        position: absolute;
        background: rgba(21, 94, 239, .15);
    }

    .line-one {
        width: 1px;
        height: 100%;
        left: 30%;
    }

    .line-two {
        width: 100%;
        height: 1px;
        top: 35%;
    }

    .line-three {
        width: 1px;
        height: 100%;
        right: 25%;
    }

    .db-box {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: white;
        border: 1px solid rgba(21, 94, 239, .2);
        box-shadow: 0 20px 45px rgba(16, 24, 40, .08);
    }

    .db-box span {
        color: #98A2B3;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .db-box strong {
        color: var(--blue);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 35px;
    }

    .box-main {
        width: 220px;
        height: 170px;
        left: 15%;
        top: 28%;
    }

    .box-small {
        width: 140px;
        height: 120px;
        right: 10%;
        top: 15%;
    }

    .box-small i {
        color: var(--gold);
        font-size: 25px;
    }

    .box-final {
        width: 180px;
        height: 140px;
        right: 17%;
        bottom: 12%;
    }

    .box-final i {
        color: var(--blue);
        font-size: 25px;
    }

    .db-vertical {
        position: absolute;
        right: 15px;
        bottom: 25px;
        writing-mode: vertical-rl;
        color: #98A2B3;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .db-content h2 {
        color: var(--dark);
        max-width: 600px;
        margin-top: 16px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(42px, 5vw, 63px);
        line-height: 1;
        letter-spacing: -3px;
    }

    .db-content h2 span {
        color: var(--blue);
    }

    .db-content>p {
        max-width: 560px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.9;
        margin: 25px 0 35px;
    }

    .process-list {
        border-top: 1px solid var(--border);
    }

    .process-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 15px;
        padding: 17px 0;
        border-bottom: 1px solid var(--border);
    }

    .process-item>span {
        color: var(--gold);
        font-size: 9px;
        font-weight: 800;
    }

    .process-item h4 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .process-item p {
        color: var(--muted);
        font-size: 10px;
    }


    /* =====================================================
   CAPABILITIES
===================================================== */

    .capabilities {
        padding: 90px 0;
        background: var(--dark);
        color: white;
    }

    .cap-header {
        display: flex;
        justify-content: space-between;
        align-items: end;
        margin-bottom: 60px;
    }

    .cap-header .section-label {
        color: var(--new-gold);
    }

    .cap-header h2 {
        max-width: 650px;
        margin-top: 15px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(42px, 5vw, 65px);
        line-height: 1;
        letter-spacing: -3px;
    }

    .cap-header h2 span {
        color: #6F9DF5;
    }

    .cap-counter {
        width: 100px;
        height: 100px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 50%;
        color: var(--new-gold);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 22px;
        font-weight: 800;
    }

    .cap-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 1px solid rgba(255, 255, 255, .12);
    }

    .cap-item {
        min-height: 250px;
        position: relative;
        padding: 30px;
        border-right: 1px solid rgba(255, 255, 255, .12);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .cap-item i {
        color: var(--new-gold);
        font-size: 20px;
        margin-bottom: 55px;
    }

    .cap-item>span {
        position: absolute;
        top: 30px;
        right: 30px;
        color: rgba(255, 255, 255, .3);
        font-size: 8px;
    }

    .cap-item h3 {
        max-width: 180px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 19px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .cap-item p {
        max-width: 240px;
        color: rgba(255, 255, 255, .55);
        font-size: 11px;
        line-height: 1.7;
    }


    /* =====================================================
   FEATURED PROJECT
===================================================== */

    .featured-project {
        padding: 90px 0;
        background: white;
    }

    .project-heading {
        margin-bottom: 55px;
    }

    .project-heading h2 {
        color: var(--dark);
        margin-top: 15px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(43px, 5vw, 65px);
        line-height: 1;
        letter-spacing: -3px;
    }

    .project-heading h2 span {
        color: var(--blue);
    }

    .project-showcase {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        min-height: 500px;
        background: var(--light);
    }

    .project-image {
        min-height: 500px;
    }

    .project-placeholder {
        height: 100%;
        min-height: 500px;
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(135deg, #0D3FAF, #5D8EEB);
    }

    .project-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
        background-size: 35px 35px;
    }

    .project-structure {
        position: absolute;
        left: 18%;
        right: 18%;
        top: 20%;
        bottom: 20%;
        border: 2px solid rgba(255, 255, 255, .6);
    }

    .project-structure div {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(255, 255, 255, .4);
    }

    .project-structure div:nth-child(1) {
        left: 33%;
    }

    .project-structure div:nth-child(2) {
        left: 66%;
    }

    .project-structure div:nth-child(3) {
        left: 50%;
        background: var(--gold);
    }

    .project-placeholder>span {
        position: absolute;
        right: 25px;
        bottom: 20px;
        color: white;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 30px;
        font-weight: 800;
        letter-spacing: 4px;
    }

    .project-info {
        padding: 55px;
    }

    .project-no {
        color: var(--gold);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .project-info h3 {
        color: var(--dark);
        margin: 25px 0 20px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 35px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .project-info>p {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.8;
    }

    .project-details {
        margin-top: 30px;
        border-top: 1px solid var(--border);
    }

    .project-details div {
        display: flex;
        justify-content: space-between;
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
    }

    .project-details small {
        color: #98A2B3;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .project-details strong {
        color: var(--dark);
        font-size: 9px;
    }

    .project-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        color: var(--blue);
        font-size: 9px;
        font-weight: 800;
    }


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

    .exhibition-stats {
        padding: 70px 0;
        background: var(--blue);
        color: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .stat {
        padding: 15px 35px;
        border-right: 1px solid rgba(255, 255, 255, .2);
    }

    .stat:first-child {
        padding-left: 0;
    }

    .stat:last-child {
        border-right: none;
    }

    .stat strong {
        display: block;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 48px;
        letter-spacing: -3px;
        margin-bottom: 7px;
    }

    .stat span {
        color: rgba(255, 255, 255, .7);
        font-size: 8px;
        line-height: 1.5;
        font-weight: 800;
        letter-spacing: 1.5px;
    }


    /* =====================================================
   CTA
===================================================== */

    .exhibition-cta {
        min-height: 520px;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #F3F7FF;
    }

    .cta-circle {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(21, 94, 239, .1);
    }

    .cta-circle-one {
        width: 550px;
        height: 550px;
        right: -250px;
        top: -200px;
    }

    .cta-circle-two {
        width: 350px;
        height: 350px;
        right: -150px;
        top: -100px;
    }

    .cta-inner {
        position: relative;
        z-index: 2;
    }

    .cta-inner h2 {
        color: var(--dark);
        max-width: 850px;
        margin: 18px 0 25px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: clamp(48px, 6vw, 76px);
        line-height: .98;
        letter-spacing: -4px;
    }

    .cta-inner h2 span {
        color: var(--blue);
    }

    .cta-inner p {
        max-width: 510px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 30px;
    }

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

    @media(max-width:1000px) {

        .exhibition-hero .container,
        .db-grid,
        .project-showcase {
            grid-template-columns: 1fr;
        }

        .hero-content {
            padding-bottom: 20px;
        }

        .hero-visual {
            padding-bottom: 70px;
        }

        .intro-layout {
            grid-template-columns: 50px 1fr;
        }

        .intro-text {
            grid-column: 2;
            padding-top: 0;
        }

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

        .section-heading {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .db-grid {
            gap: 60px;
        }

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

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

        .stat {
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            padding: 25px;
        }

        .stat:first-child {
            padding-left: 25px;
        }

    }


    @media(max-width:650px) {

        .container {
            width: 91%;
        }

        .exhibition-hero {
            min-height: auto;
        }

        .hero-content h1 {
            font-size: 50px;
            letter-spacing: -3px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .visual-frame {
            height: 360px;
        }

        .visual-building {
            top: 65px;
            bottom: 50px;
        }

        .stand-logo {
            font-size: 13px;
        }

        .exhibition-intro,
        .exhibition-types,
        .design-build,
        .capabilities,
        .featured-project {
            padding: 80px 0;
        }

        .intro-layout {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .intro-text {
            grid-column: auto;
        }

        .intro-heading h2,
        .section-heading h2,
        .db-content h2,
        .cap-header h2,
        .project-heading h2 {
            font-size: 42px;
            letter-spacing: -2.5px;
        }

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

        .type-card {
            min-height: 340px;
        }

        .db-visual {
            height: 380px;
        }

        .box-main {
            width: 170px;
            height: 130px;
        }

        .box-small {
            width: 110px;
            height: 95px;
        }

        .box-final {
            width: 140px;
            height: 110px;
        }

        .cap-header {
            align-items: flex-start;
            gap: 30px;
            flex-direction: column;
        }

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

        .project-showcase {
            display: block;
        }

        .project-image,
        .project-placeholder {
            min-height: 350px;
        }

        .project-info {
            padding: 35px 25px;
        }

        .project-info h3 {
            font-size: 29px;
        }

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

        .stat strong {
            font-size: 38px;
        }

        .cta-inner h2 {
            font-size: 47px;
            letter-spacing: -3px;
        }


    }





    .section-label {
        display: inline-block;
        color: var(--blue);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 2.8px;
    }


    /* =====================================================
   BUTTONS
===================================================== */

    .primary-btn,
    .secondary-btn {
        display: inline-flex;
        align-items: center;
        gap: 13px;
        padding: 15px 21px;
        font-size: 10px;
        font-weight: 800;
        transition: .3s;
    }

    .primary-btn {
        color: #fff;
        background: var(--blue);
        border-radius: 5px;
        box-shadow: 0 12px 30px rgba(21, 94, 239, .18);
    }

    .primary-btn:hover {
        background: var(--blue-dark);
        transform: translateY(-3px);
    }

    .secondary-btn {
        border-bottom: 1px solid var(--dark);
    }

    .secondary-btn:hover {
        color: var(--blue);
        border-color: var(--blue);
    }


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

    .retail-hero {
        min-height: 720px;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(125deg, #fff, #F4F7FF);
    }

    .hero-pattern {
        position: absolute;
        inset: 0;
        opacity: .5;

        background-image:
            linear-gradient(rgba(21, 94, 239, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(21, 94, 239, .035) 1px, transparent 1px);

        background-size: 50px 50px;
    }

    .hero-circle {
        position: absolute;
        border: 1px solid rgba(21, 94, 239, .08);
        border-radius: 50%;
    }

    .circle-one {
        width: 600px;
        height: 600px;
        right: -300px;
        top: -260px;
    }

    .circle-two {
        width: 350px;
        height: 350px;
        left: -240px;
        bottom: -200px;
    }

    .retail-hero .container {
        position: relative;
        z-index: 2;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;

        align-items: center;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-label {
        display: flex;
        align-items: center;
        gap: 10px;

        color: var(--gold);

        font-size: 9px;
        font-weight: 800;
        letter-spacing: 3px;

        margin-bottom: 22px;
    }

    .hero-label span {
        width: 28px;
        height: 2px;
        background: var(--blue);
    }

    .hero-content h1 {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(52px, 6vw, 80px);
        line-height: .98;

        letter-spacing: -5px;

        font-weight: 800;
    }

    .hero-content h1 span {
        color: var(--blue);
    }

    .hero-content>p {
        max-width: 510px;

        color: var(--muted);

        font-size: 14px;
        line-height: 1.9;

        margin: 28px 0 32px;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
        gap: 28px;
    }


    /* =====================================================
   RETAIL HERO VISUAL
===================================================== */

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .retail-store {
        width: min(500px, 100%);
        height: 480px;

        position: relative;

        padding: 22px;

        background: #fff;
        border: 1px solid var(--border);

        box-shadow: 0 35px 80px rgba(16, 24, 40, .10);
    }

    .store-top,
    .store-bottom {
        display: flex;
        justify-content: space-between;

        color: #98A2B3;

        font-size: 7px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .store-building {
        position: absolute;

        left: 45px;
        right: 45px;

        top: 80px;
        bottom: 65px;

        overflow: hidden;

        background:
            linear-gradient(135deg, #DDE9FF, #F8FAFF);
    }

    .store-building::after {
        content: "";

        position: absolute;
        inset: 0;

        background-image:
            linear-gradient(rgba(21, 94, 239, .08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(21, 94, 239, .08) 1px, transparent 1px);

        background-size: 30px 30px;
    }

    .store-wall {
        position: absolute;
        z-index: 2;

        top: 20%;
        bottom: 12%;

        width: 17%;

        background: #fff;
        border: 1px solid #D8E0ED;
    }

    .wall-left {
        left: 8%;
    }

    .wall-right {
        right: 8%;
    }

    .store-ceiling {
        position: absolute;
        z-index: 3;

        top: 12%;
        left: 22%;
        right: 22%;

        height: 9px;

        background: var(--blue);
    }

    .store-shelf {
        position: absolute;
        z-index: 5;

        width: 22%;
        height: 36%;

        top: 38%;

        background: #fff;

        border: 1px solid #D7DFEC;

        box-shadow: 0 10px 20px rgba(16, 24, 40, .08);
    }

    .store-shelf span {
        position: absolute;

        right: 8px;
        bottom: 8px;

        color: var(--blue);

        font-size: 7px;
        font-weight: 800;
    }

    .shelf-one {
        left: 23%;
    }

    .shelf-two {
        right: 23%;
    }

    .store-counter {
        position: absolute;
        z-index: 7;

        left: 38%;
        bottom: 12%;

        width: 24%;
        height: 14%;

        background: var(--dark);
    }

    .store-light {
        position: absolute;
        z-index: 8;

        width: 7px;
        height: 7px;

        border-radius: 50%;

        background: var(--new-gold);

        box-shadow: 0 0 20px var(--new-gold);
    }

    .l1 {
        left: 30%;
        top: 15%;
    }

    .l2 {
        left: 50%;
        top: 15%;
    }

    .l3 {
        right: 30%;
        top: 15%;
    }

    .store-brand {
        position: absolute;
        z-index: 8;

        left: 50%;
        top: 28%;

        transform: translateX(-50%);

        text-align: center;

        color: var(--dark);

        font-family: "Plus Jakarta Sans", sans-serif;

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

    .store-brand strong {
        display: block;
        color: var(--blue);
        font-size: 17px;
    }


    /* =====================================================
   INTRO
===================================================== */

    .retail-intro {
        padding: 90px 0;
    }

    .intro-grid {
        display: grid;

        grid-template-columns: 80px 1.4fr 1fr;

        gap: 50px;
    }

    .intro-number {
        color: var(--gold);

        font-size: 14px;
        font-weight: 800;
    }

    .intro-title h2 {
        color: var(--dark);
        max-width: 620px;

        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(40px, 5vw, 62px);
        line-height: 1.02;

        letter-spacing: -3px;
    }

    .intro-title h2 span {
        color: var(--blue);
    }

    .intro-content {
        padding-top: 35px;
    }

    .intro-content p {
        color: var(--muted);

        font-size: 13px;
        line-height: 1.9;

        margin-bottom: 18px;
    }


    /* =====================================================
   SOLUTIONS
===================================================== */

    .retail-solutions {
        padding: 110px 0;
        background: var(--light);
    }

    .section-heading {
        display: grid;

        grid-template-columns: 1.2fr .8fr;

        gap: 80px;

        align-items: end;

        margin-bottom: 60px;
    }

    .section-heading h2 {
        max-width: 650px;

        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(42px, 5vw, 64px);
        line-height: 1;

        letter-spacing: -3px;
    }

    .section-heading h2 span {
        color: var(--blue);
    }

    .section-heading>p {
        color: var(--muted);

        font-size: 13px;
        line-height: 1.9;
    }

    .solution-grid {
        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 15px;
    }

    .solution-card {
        min-height: 380px;

        position: relative;

        padding: 30px;

        background: #fff;

        border: 1px solid var(--border);

        transition: .35s;
    }

    .solution-card:hover,
    .solution-card.featured {
        color: #fff;

        background: var(--blue);

        transform: translateY(-7px);

        box-shadow: 0 25px 60px rgba(21, 94, 239, .16);
    }

    .card-number {
        position: absolute;

        top: 25px;
        right: 25px;

        color: #98A2B3;

        font-size: 8px;
        font-weight: 800;
    }

    .solution-card:hover .card-number,
    .solution-card.featured .card-number {
        color: rgba(255, 255, 255, .5);
    }

    .card-icon {
        width: 48px;
        height: 48px;

        display: grid;
        place-items: center;

        margin-bottom: 50px;

        color: var(--blue);
        background: var(--blue-light);

        border-radius: 8px;
    }

    .solution-card:hover .card-icon,
    .solution-card.featured .card-icon {
        background: #fff;
    }

    .solution-card h3 {
        max-width: 210px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 23px;
        line-height: 1.15;

        margin-bottom: 17px;
    }

    .solution-card h3 span {
        display: block;
        color: var(--blue);
    }

    .solution-card:hover h3 span,
    .solution-card.featured h3 span {
        color: var(--new-gold);
    }

    .solution-card p {
        color: var(--muted);

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

    .solution-card:hover p,
    .solution-card.featured p {
        color: rgba(255, 255, 255, .75);
    }

    .solution-card a {
        position: absolute;

        left: 30px;
        bottom: 28px;

        display: flex;
        align-items: center;

        gap: 10px;

        color: var(--blue);

        font-size: 9px;
        font-weight: 800;
    }

    .solution-card:hover a,
    .solution-card.featured a {
        color: #fff;
    }


    /* =====================================================
   CUSTOMER EXPERIENCE
===================================================== */

    .customer-section {
        padding: 130px 0;
    }

    .customer-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 100px;

        align-items: center;
    }

    .customer-visual {
        height: 520px;

        position: relative;

        overflow: hidden;

        background:
            linear-gradient(135deg, #EEF4FF, #F8FAFF);

        border: 1px solid var(--border);
    }

    .customer-visual::before {
        content: "";

        position: absolute;
        inset: 30px;

        border: 1px solid rgba(21, 94, 239, .12);
    }

    .visual-title {
        position: absolute;

        left: 40px;
        top: 40px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 30px;
        font-weight: 800;

        letter-spacing: -1px;
    }

    .visual-title span {
        display: block;
        color: var(--blue);
    }

    .journey-line {
        position: absolute;

        left: 12%;
        right: 12%;

        top: 57%;

        height: 2px;

        background:
            linear-gradient(90deg,
                var(--blue),
                var(--gold),
                var(--blue));
    }

    .journey-point {
        position: absolute;

        top: calc(57% - 28px);

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 8px;
    }

    .journey-point span {
        width: 55px;
        height: 55px;

        display: grid;
        place-items: center;

        border-radius: 50%;

        background: #fff;

        border: 2px solid var(--blue);

        color: var(--blue);

        font-size: 10px;
        font-weight: 800;
    }

    .journey-point strong {
        color: var(--dark);

        font-size: 8px;
        letter-spacing: 1px;
    }

    .point-one {
        left: 8%;
    }

    .point-two {
        left: 34%;
    }

    .point-three {
        right: 34%;
    }

    .point-four {
        right: 8%;
    }

    .customer-content h2 {
        color: var(--dark);
        max-width: 600px;

        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(42px, 5vw, 63px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .customer-content h2 span {
        color: var(--blue);
    }

    .customer-content>p {
        max-width: 520px;

        color: var(--muted);

        font-size: 13px;
        line-height: 1.9;

        margin: 25px 0 35px;
    }

    .experience-list {
        border-top: 1px solid var(--border);
    }

    .experience-item {
        display: grid;

        grid-template-columns: 42px 1fr;

        gap: 15px;

        padding: 17px 0;

        border-bottom: 1px solid var(--border);
    }

    .experience-item>i {
        color: var(--blue);

        padding-top: 4px;
    }

    .experience-item h4 {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 13px;

        margin-bottom: 4px;
    }

    .experience-item p {
        color: var(--muted);

        font-size: 10px;

        line-height: 1.7;
    }


    /* =====================================================
   PROCESS
===================================================== */

    .retail-process {
        padding: 90px 0;

        background: var(--dark);

        color: #fff;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-header .section-label {
        color: var(--new-gold);
    }

    .process-header h2 {
        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(43px, 5vw, 65px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .process-header h2 span {
        color: #6F9DF5;
    }

    .process-grid {
        display: grid;

        grid-template-columns: repeat(4, 1fr);

        border-top: 1px solid rgba(255, 255, 255, .12);

        border-left: 1px solid rgba(255, 255, 255, .12);
    }

    .process-card {
        min-height: 300px;

        position: relative;

        padding: 30px;

        border-right: 1px solid rgba(255, 255, 255, .12);

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

        transition: .3s;
    }

    .process-card:hover {
        background: rgba(255, 255, 255, .04);
    }

    .process-card>span {
        position: absolute;

        top: 30px;
        right: 30px;

        color: rgba(255, 255, 255, .3);

        font-size: 8px;
    }

    .process-card i {
        color: var(--new-gold);

        font-size: 22px;

        margin-bottom: 70px;
    }

    .process-card h3 {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 21px;

        margin-bottom: 12px;
    }

    .process-card p {
        max-width: 210px;

        color: rgba(255, 255, 255, .55);

        font-size: 11px;

        line-height: 1.8;
    }


    /* =====================================================
   MATERIALS
===================================================== */

    .materials {
        padding: 90px 0;
    }

    .materials-grid {
        display: grid;

        grid-template-columns: .9fr 1.1fr;

        gap: 110px;

        align-items: center;
    }

    .materials-content h2 {
        max-width: 600px;

        margin: 15px 0 25px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(42px, 5vw, 63px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .materials-content h2 span {
        color: var(--blue);
    }

    .materials-content>p {
        max-width: 500px;

        color: var(--muted);

        font-size: 13px;

        line-height: 1.9;

        margin-bottom: 30px;
    }

    .material-list {
        border-top: 1px solid var(--border);
    }

    .material-row {
        display: grid;

        grid-template-columns: 45px 1fr 30px;

        align-items: center;

        gap: 15px;

        padding: 20px 0;

        border-bottom: 1px solid var(--border);

        transition: .3s;
    }

    .material-row:hover {
        padding-left: 10px;

        color: var(--blue);
    }

    .material-row span {
        color: var(--gold);

        font-size: 8px;

        font-weight: 800;
    }

    .material-row strong {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 14px;
    }

    .material-row i {
        font-size: 10px;
    }


    /* =====================================================
   PROJECT
===================================================== */

    .retail-project {
        padding: 90px 0;

        background: var(--light);
    }

    .project-header {
        margin-bottom: 55px;
    }

    .project-header h2 {
        color: var(--dark);
        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(43px, 5vw, 65px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .project-header h2 span {
        color: var(--blue);
    }

    .project-box {
        display: grid;

        grid-template-columns: 1.2fr .8fr;

        min-height: 500px;

        background: #fff;
    }

    .project-image {
        min-height: 500px;
    }

    .project-art {
        height: 100%;
        min-height: 500px;

        position: relative;

        overflow: hidden;

        background:
            linear-gradient(135deg, #DCE8FF, #F8FAFF);
    }

    .art-grid {
        position: absolute;
        inset: 0;

        background-image:
            linear-gradient(rgba(21, 94, 239, .07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(21, 94, 239, .07) 1px, transparent 1px);

        background-size: 35px 35px;
    }

    .art-store {
        position: absolute;

        left: 17%;
        right: 17%;

        top: 18%;
        bottom: 18%;

        border: 2px solid rgba(21, 94, 239, .35);
    }

    .art-store div {
        position: absolute;

        top: 0;
        bottom: 0;

        width: 2px;

        background: rgba(21, 94, 239, .25);
    }

    .art-store div:nth-child(1) {
        left: 33%;
    }

    .art-store div:nth-child(2) {
        left: 66%;
    }

    .art-store div:nth-child(3) {
        left: 50%;

        background: var(--gold);
    }

    .project-art>span {
        position: absolute;

        right: 30px;
        bottom: 25px;

        color: var(--blue);

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 32px;

        font-weight: 800;

        letter-spacing: 4px;
    }

    .project-info {
        padding: 55px;
    }

    .project-info>small {
        color: var(--gold);

        font-size: 8px;

        font-weight: 800;

        letter-spacing: 2px;
    }

    .project-info h3 {
        margin: 25px 0 20px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 34px;

        line-height: 1.05;

        letter-spacing: -2px;
    }

    .project-info>p {
        color: var(--muted);

        font-size: 12px;

        line-height: 1.8;
    }

    .project-meta {
        margin-top: 30px;

        border-top: 1px solid var(--border);
    }

    .project-meta div {
        display: flex;

        justify-content: space-between;

        padding: 13px 0;

        border-bottom: 1px solid var(--border);
    }

    .project-meta span {
        color: #98A2B3;

        font-size: 7px;

        font-weight: 800;

        letter-spacing: 1.5px;
    }

    .project-meta strong {
        font-size: 9px;
    }

    .project-link {
        display: inline-flex;

        align-items: center;

        gap: 12px;

        margin-top: 25px;

        color: var(--blue);

        font-size: 9px;

        font-weight: 800;
    }


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

    .retail-stats {
        padding: 70px 0;

        background: var(--blue);

        color: #fff;
    }

    .stats-grid {
        display: grid;

        grid-template-columns: repeat(4, 1fr);
    }

    .stat {
        padding: 15px 35px;

        border-right: 1px solid rgba(255, 255, 255, .2);
    }

    .stat:first-child {
        padding-left: 0;
    }

    .stat:last-child {
        border-right: 0;
    }

    .stat strong {
        display: block;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 48px;

        letter-spacing: -3px;

        margin-bottom: 7px;
    }

    .stat span {
        color: rgba(255, 255, 255, .7);

        font-size: 8px;

        line-height: 1.5;

        font-weight: 800;

        letter-spacing: 1.5px;
    }


    /* =====================================================
   CTA
===================================================== */

    .retail-cta {
        min-height: 500px;

        position: relative;

        display: flex;

        align-items: center;

        overflow: hidden;

        background: #F3F7FF;
    }

    .cta-ring {
        position: absolute;

        border-radius: 50%;

        border: 1px solid rgba(21, 94, 239, .1);
    }

    .ring-one {
        width: 550px;
        height: 550px;

        right: -250px;
        top: -200px;
    }

    .ring-two {
        width: 350px;
        height: 350px;

        right: -150px;
        top: -100px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-content h2 {
        color: var(--dark);
        max-width: 800px;

        margin: 18px 0 25px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(48px, 6vw, 76px);

        line-height: .98;

        letter-spacing: -4px;
    }

    .cta-content h2 span {
        color: var(--blue);
    }

    .cta-content p {
        max-width: 510px;

        color: var(--muted);

        font-size: 13px;

        line-height: 1.9;

        margin-bottom: 30px;
    }



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

    @media(max-width:1000px) {

        .retail-hero .container,
        .customer-grid,
        .materials-grid,
        .project-box {
            grid-template-columns: 1fr;
        }

        .hero-content {
            padding-bottom: 20px;
        }

        .hero-visual {
            padding-bottom: 70px;
        }

        .intro-grid {
            grid-template-columns: 50px 1fr;
        }

        .intro-content {
            grid-column: 2;
            padding-top: 0;
        }

        .section-heading {
            grid-template-columns: 1fr;
            gap: 30px;
        }

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

        .customer-grid {
            gap: 60px;
        }

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

        .materials-grid {
            gap: 60px;
        }

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

        .stat {
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            padding: 25px;
        }

        .stat:first-child {
            padding-left: 25px;
        }

    }


    @media(max-width:650px) {

        .container {
            width: 91%;
        }

        .hero-content h1 {
            font-size: 50px;
            letter-spacing: -3px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .retail-store {
            height: 360px;
        }

        .store-building {
            top: 65px;
            bottom: 50px;
        }

        .retail-intro,
        .retail-solutions,
        .customer-section,
        .retail-process,
        .materials,
        .retail-project {
            padding: 80px 0;
        }

        .intro-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .intro-content {
            grid-column: auto;
        }

        .intro-title h2,
        .section-heading h2,
        .customer-content h2,
        .process-header h2,
        .materials-content h2,
        .project-header h2 {
            font-size: 42px;
            letter-spacing: -2.5px;
        }

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

        .solution-card {
            min-height: 340px;
        }

        .customer-visual {
            height: 400px;
        }

        .visual-title {
            font-size: 23px;
        }

        .journey-point span {
            width: 42px;
            height: 42px;
            font-size: 8px;
        }

        .journey-point strong {
            font-size: 6px;
        }

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

        .process-card {
            min-height: 240px;
        }

        .project-image,
        .project-art {
            min-height: 350px;
        }

        .project-info {
            padding: 35px 25px;
        }

        .project-info h3 {
            font-size: 29px;
        }

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

        .stat strong {
            font-size: 38px;
        }

        .cta-content h2 {
            font-size: 47px;
            letter-spacing: -3px;
        }

    }


















    .section-label {
        display: inline-block;

        color: var(--blue);

        font-size: 9px;
        font-weight: 800;

        letter-spacing: 2.8px;
    }


    /* =====================================================
   BUTTONS
===================================================== */

    .primary-btn,
    .secondary-btn {
        display: inline-flex;

        align-items: center;
        gap: 13px;

        padding: 15px 21px;

        font-size: 10px;
        font-weight: 800;

        transition: .3s;
    }

    .primary-btn {
        color: #fff;
        background: var(--blue);

        border-radius: 5px;

        box-shadow: 0 12px 30px rgba(21, 94, 239, .18);
    }

    .primary-btn:hover {
        background: var(--blue-dark);
        transform: translateY(-3px);
    }

    .secondary-btn {
        border-bottom: 1px solid var(--dark);
    }

    .secondary-btn:hover {
        color: var(--blue);
        border-color: var(--blue);
    }


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

    .events-hero {
        min-height: 720px;

        position: relative;

        display: flex;
        align-items: center;

        overflow: hidden;

        background: linear-gradient(125deg, #fff, #F3F7FF);
    }

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

        opacity: .55;

        background-image:
            linear-gradient(rgba(21, 94, 239, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(21, 94, 239, .035) 1px, transparent 1px);

        background-size: 50px 50px;
    }

    .hero-orb {
        position: absolute;

        border-radius: 50%;

        border: 1px solid rgba(21, 94, 239, .08);
    }

    .orb-one {
        width: 650px;
        height: 650px;

        right: -330px;
        top: -300px;
    }

    .orb-two {
        width: 330px;
        height: 330px;

        left: -220px;
        bottom: -180px;
    }

    .events-hero .container {
        position: relative;
        z-index: 2;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 80px;

        align-items: center;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-label {
        display: flex;

        align-items: center;
        gap: 10px;

        color: var(--gold);

        font-size: 9px;
        font-weight: 800;

        letter-spacing: 3px;

        margin-bottom: 22px;
    }

    .hero-label span {
        width: 28px;
        height: 2px;

        background: var(--blue);
    }

    .hero-content h1 {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(52px, 6vw, 80px);

        line-height: .98;

        letter-spacing: -5px;

        font-weight: 800;
    }

    .hero-content h1 span {
        color: var(--blue);
    }

    .hero-content>p {
        max-width: 500px;

        color: var(--muted);

        font-size: 14px;

        line-height: 1.9;

        margin: 28px 0 32px;
    }

    .hero-buttons {
        display: flex;

        align-items: center;

        gap: 28px;
    }


    /* =====================================================
   HERO EVENT VISUAL
===================================================== */

    .event-visual {
        display: flex;
        justify-content: center;
    }

    .event-frame {
        width: min(510px, 100%);
        height: 470px;

        position: relative;

        padding: 22px;

        background: #fff;

        border: 1px solid var(--border);

        box-shadow: 0 35px 80px rgba(16, 24, 40, .10);
    }

    .frame-top,
    .frame-bottom {
        display: flex;

        justify-content: space-between;

        color: #98A2B3;

        font-size: 7px;

        font-weight: 800;

        letter-spacing: 2px;
    }

    .stage {
        position: absolute;

        left: 35px;
        right: 35px;

        top: 65px;
        bottom: 60px;

        overflow: hidden;

        background:
            radial-gradient(circle at 50% 25%,
                rgba(21, 94, 239, .18),
                transparent 40%),
            linear-gradient(135deg, #E6EEFF, #F8FAFF);
    }

    .stage::after {
        content: "";

        position: absolute;

        inset: 0;

        background-image:
            linear-gradient(rgba(21, 94, 239, .06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(21, 94, 239, .06) 1px, transparent 1px);

        background-size: 35px 35px;
    }

    .stage-light {
        position: absolute;

        z-index: 3;

        width: 130px;
        height: 130px;

        border-radius: 50%;

        filter: blur(30px);

        background: rgba(21, 94, 239, .13);
    }

    .light-a {
        left: -35px;
        top: -35px;
    }

    .light-b {
        right: -35px;
        top: -35px;
    }

    .light-c {
        left: 40%;
        bottom: -70px;

        background: rgba(201, 154, 50, .14);
    }

    .stage-screen {
        position: absolute;

        z-index: 5;

        left: 22%;
        right: 22%;

        top: 20%;

        height: 48%;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        background: var(--dark);

        box-shadow: 0 20px 40px rgba(16, 24, 40, .18);
    }

    .stage-screen small {
        color: var(--new-gold) font-size: 7px;

        letter-spacing: 2px;

        margin-bottom: 12px;
    }

    .stage-screen strong {
        color: #fff;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 27px;

        line-height: 1;
    }

    .stage-screen span {
        color: rgba(255, 255, 255, .4);

        font-size: 6px;

        letter-spacing: 2px;

        margin-top: 14px;
    }

    .stage-platform {
        position: absolute;

        z-index: 6;

        left: 25%;
        right: 25%;

        bottom: 19%;

        height: 14px;

        background: var(--blue);

        box-shadow: 0 15px 25px rgba(21, 94, 239, .25);
    }

    .audience {
        position: absolute;

        z-index: 7;

        bottom: 8%;

        width: 18px;
        height: 18px;

        border-radius: 50% 50% 40% 40%;

        background: #344054;
    }

    .audience-one {
        left: 18%;
    }

    .audience-two {
        left: 33%;
    }

    .audience-three {
        left: 48%;
    }

    .audience-four {
        left: 63%;
    }

    .audience-five {
        left: 78%;
    }


    /* =====================================================
   INTRO
===================================================== */

    .events-intro {
        padding: 90px 0;
    }

    .intro-grid {
        display: grid;

        grid-template-columns: 80px 1.4fr 1fr;

        gap: 50px;
    }

    .intro-number {
        color: var(--gold);

        font-size: 14px;
        font-weight: 800;
    }

    .intro-grid h2 {
        color: var(--dark);
        max-width: 620px;

        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(40px, 5vw, 62px);

        line-height: 1.02;

        letter-spacing: -3px;
    }

    .intro-grid h2 span {
        color: var(--blue);
    }

    .intro-text {
        padding-top: 35px;
    }

    .intro-text p {
        color: var(--muted);

        font-size: 13px;

        line-height: 1.9;

        margin-bottom: 18px;
    }


    /* =====================================================
   EVENT SERVICES
===================================================== */

    .event-services {
        padding: 110px 0;

        background: var(--light);
    }

    .section-heading {
        display: grid;

        grid-template-columns: 1.2fr .8fr;

        gap: 80px;

        align-items: end;

        margin-bottom: 60px;
    }

    .section-heading h2 {
        max-width: 650px;

        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(42px, 5vw, 64px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .section-heading h2 span {
        color: var(--blue);
    }

    .section-heading>p {
        color: var(--muted);

        font-size: 13px;

        line-height: 1.9;
    }

    .event-grid {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 15px;
    }

    .event-card {
        min-height: 370px;

        position: relative;

        padding: 30px;

        background: #fff;

        border: 1px solid var(--border);

        transition: .35s;
    }

    .event-card:hover,
    .event-card.featured {
        color: #fff;

        background: var(--blue);

        transform: translateY(-7px);

        box-shadow: 0 25px 60px rgba(21, 94, 239, .16);
    }

    .event-number {
        position: absolute;

        top: 25px;
        right: 25px;

        color: #98A2B3;

        font-size: 8px;

        font-weight: 800;
    }

    .event-card:hover .event-number,
    .event-card.featured .event-number {
        color: rgba(255, 255, 255, .45);
    }

    .event-icon {
        width: 50px;
        height: 50px;

        display: grid;

        place-items: center;

        margin-bottom: 48px;

        color: var(--blue);

        background: var(--blue-light);

        border-radius: 8px;
    }

    .event-card:hover .event-icon,
    .event-card.featured .event-icon {
        background: #fff;
    }

    .event-card h3 {
        color: var(--dark);
        max-width: 220px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 23px;

        line-height: 1.15;

        margin-bottom: 17px;
    }

    .event-card h3 span {
        display: block;

        color: var(--blue);
    }

    .event-card:hover h3 span,
    .event-card.featured h3 span {
        color: var(--new-gold)
    }

    .event-card p {
        color: var(--muted);

        font-size: 11px;

        line-height: 1.8;
    }

    .event-card:hover p,
    .event-card.featured p {
        color: rgba(255, 255, 255, .75);
    }

    .event-card a {
        position: absolute;

        left: 30px;
        bottom: 28px;

        display: flex;

        align-items: center;

        gap: 10px;

        color: var(--blue);

        font-size: 9px;

        font-weight: 800;
    }

    .event-card:hover a,
    .event-card.featured a {
        color: #fff;
    }


    /* =====================================================
   EXPERIENCE
===================================================== */

    .experience-section {
        padding: 130px 0;
    }

    .experience-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 100px;

        align-items: center;
    }

    .experience-visual {
        height: 520px;

        position: relative;

        overflow: hidden;

        background:
            linear-gradient(135deg, #EDF3FF, #F9FBFF);

        border: 1px solid var(--border);
    }

    .experience-visual::before {
        content: "";

        position: absolute;

        inset: 30px;

        border: 1px solid rgba(21, 94, 239, .1);
    }

    .visual-top {
        position: absolute;

        left: 40px;
        top: 40px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 27px;

        font-weight: 800;
    }

    .visual-top span {
        display: block;

        color: var(--blue);
    }

    .circle-main {
        position: absolute;

        left: 50%;
        top: 54%;

        width: 220px;
        height: 220px;

        transform: translate(-50%, -50%);

        display: grid;

        place-items: center;

        border-radius: 50%;

        border: 1px solid rgba(21, 94, 239, .2);
    }

    .circle-main::before,
    .circle-main::after {
        content: "";

        position: absolute;

        border-radius: 50%;

        border: 1px solid rgba(21, 94, 239, .13);
    }

    .circle-main::before {
        width: 290px;
        height: 290px;
    }

    .circle-main::after {
        width: 360px;
        height: 360px;
    }

    .circle-inner {
        width: 115px;
        height: 115px;

        display: grid;

        place-items: center;

        border-radius: 50%;

        color: #fff;

        background: var(--blue);

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 28px;

        font-weight: 800;

        box-shadow: 0 20px 40px rgba(21, 94, 239, .22);
    }

    .visual-tag {
        position: absolute;

        z-index: 5;

        padding: 9px 13px;

        background: #fff;

        border: 1px solid var(--border);

        color: var(--blue);

        font-size: 7px;

        font-weight: 800;

        letter-spacing: 1.5px;

        box-shadow: 0 10px 25px rgba(16, 24, 40, .07);
    }

    .tag-one {
        top: 38%;
        left: 13%;
    }

    .tag-two {
        top: 38%;
        right: 13%;
    }

    .tag-three {
        bottom: 25%;
        left: 13%;
    }

    .tag-four {
        bottom: 25%;
        right: 13%;
    }

    .experience-content h2 {
        color: var(--dark);
        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(42px, 5vw, 62px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .experience-content>p {
        max-width: 510px;

        color: var(--muted);

        font-size: 13px;

        line-height: 1.9;

        margin: 25px 0 35px;
    }

    .experience-list {
        border-top: 1px solid var(--border);
    }

    .experience-item {
        display: grid;

        grid-template-columns: 42px 1fr;

        gap: 15px;

        padding: 17px 0;

        border-bottom: 1px solid var(--border);
    }

    .experience-icon {
        color: var(--blue);

        padding-top: 4px;
    }

    .experience-item h4 {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 13px;

        margin-bottom: 4px;
    }

    .experience-item p {
        color: var(--muted);

        font-size: 10px;

        line-height: 1.7;
    }


    /* =====================================================
   PROCESS
===================================================== */

    .event-process {
        padding: 90px 0;

        background: var(--dark);

        color: #fff;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-header .section-label {
        color: var(--new-gold);
    }

    .process-header h2 {
        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(43px, 5vw, 65px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .process-header h2 span {
        color: #6F9DF5;
    }

    .process-grid {
        display: grid;

        grid-template-columns: repeat(4, 1fr);

        border-top: 1px solid rgba(255, 255, 255, .12);

        border-left: 1px solid rgba(255, 255, 255, .12);
    }

    .process-card {
        min-height: 300px;

        position: relative;

        padding: 30px;

        border-right: 1px solid rgba(255, 255, 255, .12);

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

    .process-card>span {
        position: absolute;

        top: 30px;
        right: 30px;

        color: rgba(255, 255, 255, .3);

        font-size: 8px;
    }

    .process-card>i {
        color: var(--new-gold);
        font-size: 22px;

        margin-bottom: 70px;
    }

    .process-card h3 {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 21px;

        margin-bottom: 12px;
    }

    .process-card p {
        max-width: 210px;

        color: rgba(255, 255, 255, .55);

        font-size: 11px;

        line-height: 1.8;
    }


    /* =====================================================
   ELEMENTS
===================================================== */

    .elements-section {
        padding: 90px 0;
    }

    .elements-header {
        margin-bottom: 50px;
    }

    .elements-header h2 {
        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(43px, 5vw, 65px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .elements-header h2 span {
        color: var(--blue);
    }

    .elements-list {
        border-top: 1px solid var(--border);
    }

    .element-row {
        display: grid;

        grid-template-columns: 60px 1fr 30px;

        align-items: center;

        padding: 23px 0;

        border-bottom: 1px solid var(--border);

        transition: .3s;
    }

    .element-row:hover {
        padding-left: 12px;

        color: var(--blue);
    }

    .element-row span {
        color: var(--gold);

        font-size: 8px;

        font-weight: 800;
    }

    .element-row strong {
        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 15px;
    }

    .element-row i {
        font-size: 10px;
    }


    /* =====================================================
   FEATURED EVENT
===================================================== */

    .featured-event {
        padding: 90px 0;

        background: var(--light);
    }

    .featured-heading {
        margin-bottom: 55px;
    }

    .featured-heading h2 {
        color: var(--dark);
        margin-top: 15px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(43px, 5vw, 65px);

        line-height: 1;

        letter-spacing: -3px;
    }

    .featured-heading h2 span {
        color: var(--blue);
    }

    .featured-box {
        display: grid;

        grid-template-columns: 1.2fr .8fr;

        min-height: 500px;

        background: #fff;
    }

    .featured-art {
        min-height: 500px;

        position: relative;

        overflow: hidden;

        background:
            linear-gradient(135deg, #DCE8FF, #F8FAFF);
    }

    .art-rays {
        position: absolute;

        inset: -30%;

        background:
            repeating-conic-gradient(from 0deg,
                rgba(21, 94, 239, .04) 0deg 12deg,
                transparent 12deg 24deg);
    }

    .art-stage {
        position: absolute;

        left: 15%;
        right: 15%;

        top: 18%;
        bottom: 18%;
    }

    .art-screen {
        position: absolute;

        left: 17%;
        right: 17%;

        top: 5%;

        height: 65%;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        background: var(--dark);

        box-shadow: 0 25px 50px rgba(16, 24, 40, .18);
    }

    .art-screen small {
        color: var(--new-gold) font-size: 7px;

        letter-spacing: 2px;

        margin-bottom: 12px;
    }

    .art-screen strong {
        color: #fff;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 35px;

        line-height: .95;
    }

    .art-floor {
        position: absolute;

        left: 5%;
        right: 5%;

        bottom: 5%;

        height: 13px;

        background: var(--blue);
    }

    .art-label {
        position: absolute;

        right: 25px;
        bottom: 20px;

        color: var(--blue);

        font-size: 8px;

        font-weight: 800;

        letter-spacing: 2px;
    }

    .featured-content {
        padding: 55px;
    }

    .featured-content>small {
        color: var(--gold);

        font-size: 8px;

        font-weight: 800;

        letter-spacing: 2px;
    }

    .featured-content h3 {
        color: var(--dark);
        margin: 25px 0 20px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 34px;

        line-height: 1.05;

        letter-spacing: -2px;
    }

    .featured-content>p {
        color: var(--muted);

        font-size: 12px;

        line-height: 1.8;
    }

    .featured-meta {
        margin-top: 30px;

        border-top: 1px solid var(--border);
    }

    .featured-meta div {
        display: flex;

        justify-content: space-between;

        padding: 13px 0;

        border-bottom: 1px solid var(--border);
    }

    .featured-meta span {
        color: #98A2B3;

        font-size: 7px;

        font-weight: 800;

        letter-spacing: 1.5px;
    }

    .featured-meta strong {
        font-size: 9px;
    }

    .project-link {
        display: inline-flex;

        align-items: center;

        gap: 12px;

        margin-top: 25px;

        color: var(--blue);

        font-size: 9px;

        font-weight: 800;
    }


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

    .event-stats {
        padding: 70px 0;

        background: var(--blue);

        color: #fff;
    }

    .stats-grid {
        display: grid;

        grid-template-columns: repeat(4, 1fr);
    }

    .stat {
        padding: 15px 35px;

        border-right: 1px solid rgba(255, 255, 255, .2);
    }

    .stat:first-child {
        padding-left: 0;
    }

    .stat:last-child {
        border-right: 0;
    }

    .stat strong {
        display: block;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: 48px;

        letter-spacing: -3px;

        margin-bottom: 7px;
    }

    .stat span {
        color: rgba(255, 255, 255, .7);

        font-size: 8px;

        line-height: 1.5;

        font-weight: 800;

        letter-spacing: 1.5px;
    }


    /* =====================================================
   CTA
===================================================== */

    .event-cta {
        min-height: 500px;

        position: relative;

        display: flex;

        align-items: center;

        overflow: hidden;

        background: #F3F7FF;
    }

    .cta-circle {
        position: absolute;

        border-radius: 50%;

        border: 1px solid rgba(21, 94, 239, .1);
    }

    .circle-one {
        width: 550px;
        height: 550px;

        right: -250px;
        top: -200px;
    }

    .circle-two {
        width: 350px;
        height: 350px;

        right: -150px;
        top: -100px;
    }

    .cta-content {
        position: relative;

        z-index: 2;
    }

    .cta-content h2 {
        max-width: 800px;

        margin: 18px 0 25px;

        font-family: "Plus Jakarta Sans", sans-serif;

        font-size: clamp(48px, 6vw, 76px);

        line-height: .98;

        letter-spacing: -4px;
    }

    .cta-content h2 span {
        color: var(--blue);
    }

    .cta-content p {
        max-width: 510px;

        color: var(--muted);

        font-size: 13px;

        line-height: 1.9;

        margin-bottom: 30px;
    }



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

    @media(max-width:1000px) {

        .events-hero .container,
        .experience-grid,
        .featured-box {
            grid-template-columns: 1fr;
        }

        .hero-content {
            padding-bottom: 20px;
        }

        .event-visual {
            padding-bottom: 70px;
        }

        .intro-grid {
            grid-template-columns: 50px 1fr;
        }

        .intro-text {
            grid-column: 2;
            padding-top: 0;
        }

        .section-heading {
            grid-template-columns: 1fr;
            gap: 30px;
        }

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

        .experience-grid {
            gap: 60px;
        }

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

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

        .stat {
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            padding: 25px;
        }

        .stat:first-child {
            padding-left: 25px;
        }

    }


    @media(max-width:650px) {

        .container {
            width: 91%;
        }

        .hero-content h1 {
            font-size: 50px;
            letter-spacing: -3px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .event-frame {
            height: 360px;
        }

        .stage {
            top: 55px;
            bottom: 50px;
        }

        .events-intro,
        .event-services,
        .experience-section,
        .event-process,
        .elements-section,
        .featured-event {
            padding: 80px 0;
        }

        .intro-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .intro-text {
            grid-column: auto;
        }

        .intro-grid h2,
        .section-heading h2,
        .experience-content h2,
        .process-header h2,
        .elements-header h2,
        .featured-heading h2 {
            font-size: 42px;
            letter-spacing: -2.5px;
        }

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

        .event-card {
            min-height: 340px;
        }

        .experience-visual {
            height: 400px;
        }

        .visual-top {
            font-size: 23px;
        }

        .circle-main {
            width: 170px;
            height: 170px;
        }

        .circle-inner {
            width: 90px;
            height: 90px;

            font-size: 22px;
        }

        .circle-main::before {
            width: 230px;
            height: 230px;
        }

        .circle-main::after {
            width: 285px;
            height: 285px;
        }

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

        .process-card {
            min-height: 240px;
        }

        .featured-art {
            min-height: 350px;
        }

        .featured-content {
            padding: 35px 25px;
        }

        .featured-content h3 {
            font-size: 29px;
        }

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

        .stat strong {
            font-size: 38px;
        }

        .cta-content h2 {
            font-size: 47px;
            letter-spacing: -3px;
        }

    }




    .countries-section {
        background-color: #f2f2f2;
        /* Light grey background jaisa image me hai */
        padding: 60px 20px;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .countries-section h2 {
        font-size: 24px;
        color: #333333;
        letter-spacing: 1px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    /* .underline {
        width: 90px;
        height: 3px;
        background-color: #00a8e8;
        margin: 0 auto 20px auto;
    } */

    .country-list {
        font-size: 14px;
        color: #555555;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .map-container {
        background: #ffffff;
        padding: 20px;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        display: inline-block;
        width: 100%;
        max-width: 850px;
        box-sizing: border-box;
        overflow: hidden; 
        box-shadow: 2px 2px 11px #00000044;
        transition: .5s;
    }

    .map-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: .5s;
    }

/* .map-container:hover{ 
    box-shadow: 2px 2px 11px #00000075;
    transition: .5s;
}


    .map-container:hover img {
        transition: .5s;
        transform: scale(1.1);
    } */

    /* Responsive media query for smaller screens */
    @media (max-width: 768px) {
        .countries-section h2 {
            font-size: 20px;
        }

        .country-list {
            font-size: 13px;
            padding: 0 10px;
        }
    }