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

        :root {
            --navy: #1a2e5a;
            --blue: #2358b8;
            --blue-mid: #3a7bd5;
            --blue-light: #e8f0fc;
            --green: #7dc242;
            --white: #ffffff;
            --off: #f4f7fb;
            --text: #1c2a40;
            --muted: #5a6880;
            --border: #d6e2f5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }

        .modern-contact-card {
            background: #fff;
            border-radius: 28px;
            padding: 32px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);

        }

        .contact-top {
            margin-bottom: 28px;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #eef4ff;
            color: #7dc242;
            padding: 10px 16px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .contact-heading {
            font-size: 38px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        .modern-contact-info {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .modern-contact-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }

        .modern-contact-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: #f5f7ff0d;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7dc242;
            font-size: 18px;
            flex-shrink: 0;
        }

        .modern-contact-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #6b7280;
            margin-bottom: 6px;
        }

        .modern-contact-item p,
        .modern-contact-item a {
            margin: 0;
            font-size: 16px;
            line-height: 1.7;
            color: #ffffff;
            text-decoration: none;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 5%;
            background: rgb(255 255 255 / 98%);
            backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            transition: all .3s;
        }

        .source-card-img {
            width: 100%;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 18px;
            width: 280px;
            margin: 0 auto;
        }

        .source-card-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
           img{
             width: 150px;
           }
        }
        .footer-logo{
             img{
             width: 150px;
           }
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-logo svg {
            width: 38px;
            height: 38px;
        }

        .contact-address-item a {
            color: white !important;

        }

        .nav-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: .04em;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 50px;
}

/* Cards */
.contact-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Form */
.enquiry-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    padding: 16px 18px;
    font-size: .95rem;
    color: var(--navy);
    outline: none;
    transition: all .3s ease;
    font-family: inherit;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
    background: #fff;
}

/* Button */
.enquiry-btn {
    width: 100%;
    border: none;
    padding: 16px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,99,235,0.25);
}

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

    .contact-card {
        padding: 28px 22px;
    }
}

        .nav-links a {
            color: #1A2E58 !important;
            text-decoration: none;
            font-size: .88rem;
            font-weight: 500;
            letter-spacing: .04em;
            transition: color .2s;
        }

        .nav-links a:hover {
            color: var(--green);
        }

        .nav-cta {
            background: var(--green);
            color: var(--white);
            border: none;
            padding: .55rem 1.4rem;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: .88rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            text-transform: uppercase;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(125, 194, 66, .45);
        }

        /* HERO */
        .hero {

            background: url("runway.jpg") center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 9% 5%;
        }

        /* Before overlay effect */
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(0, 0, 0, 0.75),
                    rgba(0, 0, 0, 0.35));
            z-index: 1;
        }

        /* Keep content above overlay */
        .hero>* {
            position: relative;
            z-index: 2;
        }

        .hero-bg-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-bg-shapes circle {
            animation: floatCircle 12s ease-in-out infinite;
        }

        .hero-bg-shapes circle:nth-child(2) {
            animation-delay: -4s;
        }

        .hero-bg-shapes circle:nth-child(3) {
            animation-delay: -8s;
        }

        @keyframes floatCircle {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 80px;
            width: 100%;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(125, 194, 66, .15);
            border: 1px solid rgba(125, 194, 66, .35);
            color: var(--green);
            padding: .35rem 1rem;
            border-radius: 50px;
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 4.5vw, 3.8rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            color: var(--green);
        }

        .hero-desc {
            color: rgba(255, 255, 255, .72);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 0.7rem;
            max-width: 750px;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--green);
            color: var(--white);
            padding: .75rem 2rem;
            border-radius: 50px;
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-size: .95rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: transform .2s, box-shadow .2s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(125, 194, 66, .45);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: .75rem 2rem;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, .4);
            font-family: 'DM Sans', sans-serif;
            font-size: .95rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all .2s;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, .1);
            border-color: rgba(255, 255, 255, .7);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, .12);
        }

        .hero-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
        }

        .hero-stat-label {
            font-size: .78rem;
            color: rgba(255, 255, 255, .55);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-top: .2rem;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-logo-display {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 24px;
            padding: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(8px);
            animation: heroPulse 4s ease-in-out infinite;
        }

        @keyframes heroPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(35, 88, 184, .3);
            }

            50% {
                box-shadow: 0 0 0 30px rgba(35, 88, 184, 0);
            }
        }

        .hero-logo-display img {
            max-width: 280px;
            filter: brightness(0) invert(1);
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255, 255, 255, .1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 16px;
            padding: 1rem 1.4rem;
            display: flex;
            align-items: center;
            gap: .8rem;
            animation: floatCard 6s ease-in-out infinite;
        }

        .hero-floating-card:nth-child(2) {
            top: 10%;
            right: -10%;
            animation-delay: -2s;
        }

        .hero-floating-card:nth-child(3) {
            bottom: 15%;
            left: -8%;
            animation-delay: -4s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .fc-icon {
            width: 36px;
            height: 36px;
            background: var(--green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .fc-text-top {
            font-size: .75rem;
            color: rgba(255, 255, 255, .6);
            font-weight: 500;
        }

        .fc-text-bot {
            font-size: .9rem;
            color: var(--white);
            font-weight: 600;
        }

        /* SECTION COMMONS */
        .section {
            padding: 4.2rem 5%;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            color: var(--blue);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--green);
            border-radius: 2px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 2.5vw, 2.8rem);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-desc {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.8;
            max-width: 600px;
        }

        .text-center {
            text-align: center;
        }

        .text-center .section-label {
            justify-content: center;
        }

        .text-center .section-desc {
            margin: 0 auto;
        }

        /* ABOUT */
        .about {
            background: var(--white);
        }

        /* MOBILE ORDER CHANGE */

@media(max-width:768px){

    .about-grid{
        display:flex;
        flex-direction:column;
    }

    .about-grid > div:first-child{
        order:2;
    }

    .about-grid > div:last-child{
        order:1;
    }
    .hero-title {
font-size: clamp(1.8rem, 4.5vw, 3.8rem) !important;
    }
    .hero {
    background: url(runway.jpg) center / cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 22% 5%  16%!important;
}

}

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

        .about-image-wrap {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image-wrap img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-image-wrap {
                margin-bottom: 30px;
            }

            .about-image-wrap img {
                width: 100%;
                max-width: 100%;
            }
        }

        .about-img-main {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--blue-light), var(--border));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-accent {
            position: absolute;
            bottom: -24px;
            right: -24px;
            background: var(--navy);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            color: var(--white);
        }

        .about-accent-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--green);
        }

        .about-accent-txt {
            font-size: .8rem;
            color: rgba(255, 255, 255, .65);
            max-width: 120px;
            line-height: 1.4;
        }

        .about-text p {
            color: var(--muted);
            line-height: 1.9;
            margin-bottom: 1.2rem;
            font-size: .97rem;
        }

        .about-pillars {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .pillar-chip {
            background: var(--blue-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: .9rem 1.1rem;
            display: flex;
            align-items: center;
            gap: .6rem;
        }

        .pillar-dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .pillar-chip span {
            font-size: .85rem;
            font-weight: 500;
            color: var(--navy);
        }

        /* WHAT WE SOURCE */
        .source-section {
            background: var(--navy);
        }

        .source-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .source-card {
            flex: 1 1 380px;
            max-width: 320px;
            text-align: center;
        }

        .source-card {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 16px;
            padding: 15px 8px;
            text-align: center;

            transition: all .3s;
            cursor: pointer;
        }

        .source-card:hover {
            background: rgba(255, 255, 255, .1);
            transform: translateY(-4px);
            border-color: rgba(125, 194, 66, .4);
        }

        .source-card-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .source-card-title {
            font-size: .9rem;
            font-weight: 600;
            color: var(--white);
            line-height: 1.4;
        }

        /* SERVICES */
        .services {
            background: var(--off);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            transition: all .3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue), var(--green));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s;
        }

        .service-card:hover {
            box-shadow: 0 12px 40px rgba(35, 88, 184, .1);
            transform: translateY(-4px);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 52px;
            height: 52px;
            background: var(--blue-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }

        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: .8rem;
        }

        /* ===== SERVICES GRID ===== */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin-top: 60px;
        }

        /* ===== GLASSMORPHISM CARD ===== */

        .service-card {
            position: relative;
            padding: 32px 28px;
            border-radius: 28px;

            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);

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

            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.06),
                inset 0 1px 1px rgba(255, 255, 255, 0.4);

            overflow: hidden;
            transition: all 0.4s ease;
        }

        /* Glow Effect */
        .service-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left,
                    rgba(59, 130, 246, 0.18),
                    transparent 40%),
                radial-gradient(circle at bottom right,
                    rgba(16, 185, 129, 0.15),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.25);

            box-shadow:
                0 20px 45px rgba(37, 99, 235, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.5);
        }

        /* ===== ICON STYLE ===== */

        .service-icon {
            width: 78px;
            height: 78px;
            border-radius: 22px;

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

            margin-bottom: 24px;

            background:
                linear-gradient(135deg,
                    rgba(37, 99, 235, 0.12),
                    rgba(16, 185, 129, 0.12));

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

            box-shadow:
                inset 0 1px 1px rgba(255, 255, 255, 0.4),
                0 8px 25px rgba(37, 99, 235, 0.08);

            position: relative;
            overflow: hidden;
        }

        /* animated shine */
        .service-icon::before {
            content: "";
            position: absolute;
            width: 120%;
            height: 120%;
            background: linear-gradient(120deg,
                    transparent,
                    rgba(255, 255, 255, 0.6),
                    transparent);

            transform: rotate(25deg) translateX(-120%);
            transition: all 0.7s ease;
        }

        .service-card:hover .service-icon::before {
            transform: rotate(25deg) translateX(120%);
        }

        .service-icon i {
            font-size: 2rem;
            background: linear-gradient(135deg,
                    #2563eb,
                    #10b981);

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ===== TITLE ===== */

        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.20rem;
            font-weight: 700;
            color: var(--navy);
            text-transform: uppercase;

            margin-bottom: 1.2rem;
            line-height: 1.3;

            position: relative;
        }

        .service-title::after {
            content: "";
            display: block;
            width: 65px;
            height: 3px;

            margin-top: 12px;
            border-radius: 20px;

            background: linear-gradient(to right,
                    #2563eb,
                    #10b981);
        }

        /* ===== LIST STYLE ===== */

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-list li {
            position: relative;

            font-size: .92rem;
            font-weight: 500;
            color: var(--muted);

            line-height: 1.7;

            padding: .55rem 0;
            padding-left: 1.8rem;

            transition: all .25s ease;
        }

        /* stylish bullet */
        .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 15px;

            width: 9px;
            height: 9px;
            border-radius: 50%;

            background: linear-gradient(135deg,
                    #2563eb,
                    #10b981);

            box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
        }

        .service-card:hover .service-list li {
            transform: translateX(3px);
        }

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

        @media (max-width: 768px) {

            .services-grid {
                gap: 20px;
            }

            .service-card {
                padding: 24px 20px;
                border-radius: 22px;
            }

            .service-icon {
                width: 64px;
                height: 64px;
                border-radius: 18px;
            }

            .service-icon i {
                font-size: 1.6rem;
            }

            .service-title {
                font-size: 1.15rem;
            }

            .service-list li {
                font-size: .85rem;
            }
        }

        /* SAACS BANNER */
        .saacs-banner {
            background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
            padding: 4rem 5%;
            text-align: center;
        }

        .saacs-banner-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .saacs-tag {
            display: inline-block;
            background: rgba(125, 194, 66, .25);
            color: var(--green);
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: .35rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
        }

        .saacs-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            color: var(--white);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .saacs-desc {
            color: rgba(255, 255, 255, .7);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* WHY US */
        .why {
            background: var(--white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
        }

        .why-icon-wrap {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--blue-light), rgba(125, 194, 66, .15));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            border: 1px solid var(--border);
        }

        .why-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: .8rem;
        }

        .why-list {
            list-style: none;
            padding: 0;
        }

        .why-list li {
            font-size: 1rem;
            color: var(--muted);
            padding: .3rem 0;
            border-bottom: 1px solid var(--border);
        }

        .why-list li:last-child {
            border: none;
        }

        /* FOOTPRINT */
        .footprint {
            background: var(--navy);
            padding: 6rem 5%;
        }

        .footprint-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footprint-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-top: 3rem;
        }

        .fp-block {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 2rem;
        }

        .fp-block-label {
            font-size: .75rem;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-bottom: 1rem;
        }

        .fp-block-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 600;
            margin-bottom: .8rem;
        }

        .fp-block-text {
            font-size: .88rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.9;
        }

        .fp-block-text strong {
            color: rgba(255, 255, 255, .85);
        }

        .fp-teams {
            margin-top: 2rem;
            background: rgba(125, 194, 66, .1);
            border: 1px solid rgba(125, 194, 66, .25);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .fp-teams-label {
            font-size: .75rem;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-bottom: .8rem;
        }

        .fp-teams-cities {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
        }

        .city-tag {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .75);
            font-size: .78rem;
            font-weight: 500;
            padding: .3rem .8rem;
            border-radius: 50px;
        }

        /* FOUNDERS */
        .founders {
            background: var(--off);
        }

        .founders-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .founder-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            transition: box-shadow .3s;
        }

        .founder-card:hover {
            box-shadow: 0 20px 60px rgba(35, 88, 184, .12);
        }

        .founder-photo {
            aspect-ratio: 3/4;
            overflow: hidden;
            background: var(--blue-light);
        }

        .founder-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .founder-info {
            padding: 0px 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.35s ease;
        }

        .founder-info:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
        }

        .founder-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            background: linear-gradient(135deg,
                    var(--blue-light),
                    rgba(0, 102, 255, 0.08));
            color: var(--blue);
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .12em;
            padding: .45rem .95rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(0, 102, 255, 0.12);
        }

        .founder-name {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--navy);
            margin-bottom: .5rem;
            position: relative;
        }

        .founder-name::after {
            content: "";
            width: 70px;
            height: 3px;
            background: linear-gradient(to right, var(--blue), transparent);
            display: block;
            margin-top: 12px;
            border-radius: 10px;
        }

        .founder-role {
            font-size: .95rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            letter-spacing: .03em;
        }

        .founder-description {
            font-size: .98rem;
            line-height: 1.8;
            color: var(--text);
            opacity: .9;
        }

        .founder-role {
            font-size: .85rem;
            font-weight: 600;
            color: var(--blue);

        }

        .founder-office {
            font-size: .8rem;
            color: var(--muted);
            margin-bottom: .5rem;
            display: flex;
            align-items: center;
            gap: .4rem;
        }

        .founder-contact {
            margin-top: 5px;
            display: flex;
            flex-direction: column;
            gap: .4rem;
        }

        .founder-contact a {
            font-size: .82rem;
            color: var(--blue);
            text-decoration: none;
            font-weight: 500;
            transition: color .2s;
        }

        .founder-contact a:hover {
            color: var(--green);
        }

        /* CLIENTS */
        .clients {
            background: var(--white);
            padding: 5rem 5%;
        }

        .clients-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .clients-marquee-wrap {
            overflow: hidden;
            margin-top: 2.5rem;
            position: relative;
        }

        .clients-marquee-wrap::before,
        .clients-marquee-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
        }

        .clients-marquee-wrap::before {
            left: 0;
            background: linear-gradient(90deg, var(--white), transparent);
        }

        .clients-marquee-wrap::after {
            right: 0;
            background: linear-gradient(-90deg, var(--white), transparent);
        }

        .clients-track {
            display: flex;
            gap: 2.5rem;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .client-pill {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: .6rem 1.8rem;
            font-size: .82rem;
            font-weight: 600;
            color: var(--navy);
            white-space: nowrap;
            transition: all .2s;
        }

        .client-pill:hover {
            background: var(--blue-light);
            border-color: var(--blue);
            color: var(--blue);
        }

        /* CERTS */
        .certs {
            background: var(--off);
        }

        .cert-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
            justify-content: center;
        }

        .cert-chip {
            flex: 1 1 200px;
            max-width: calc(20% - 1rem);
            /* 5 items per row */

            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.2rem;

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

            min-height: 140px;
            transition: all .2s;
        }

        .cert-chip:hover {
            border-color: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(35, 88, 184, .1);
        }

        .cert-chip img {
            width: 100%;
            max-width: 140px;
            /* same logo size */
            max-height: 100px;
            object-fit: contain;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .cert-chip {
                max-width: calc(33.33% - 1rem);
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .cert-chip {
                max-width: calc(50% - .5rem);
                min-height: 110px;
            }

            .cert-chip img {
                max-width: 110px;
                max-height: 55px;
            }
        }

        .cert-note {
            color: var(--muted);
            font-size: .9rem;
            line-height: 1.8;
            margin-top: 1.5rem;
        }

        /* CONTACT */
        .contact {
            background: linear-gradient(145deg, var(--navy) 0%, #0d1e42 100%);
            padding: 6rem 5%;
        }

        .contact-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-desc {
            color: rgba(255, 255, 255, .65);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 20px;
            padding: 2rem;
            text-align: left;
        }

        .contact-card-label {
            font-size: 1rem;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-bottom: 1.2rem;
        }

        .contact-card-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--white);
            font-weight: 600;
            margin-bottom: .3rem;
        }

        .contact-card-role {
            font-size: .82rem;
            color: rgba(255, 255, 255, .55);
            margin-bottom: 1.2rem;
        }

        .contact-card-info {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        .contact-card-info a {
            color: rgba(255, 255, 255, .75);
            text-decoration: none;
            font-size: .85rem;
            transition: color .2s;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .contact-card-info a:hover {
            color: var(--green);
        }

        .contact-card-addr {
            font-size: 1rem;
            color: rgb(255, 255, 255);
            line-height: 1.7;
            margin-top: .8rem;
            padding-top: .8rem;
            border-top: 1px solid rgba(255, 255, 255, .1);
        }

        /* FOOTER */
        footer {
            background: #0a1428;
            padding: 1.5rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: gap;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: .6rem;
        }

        .footer-copy {
            font-size: .8rem;
            color: rgb(255, 255, 255);
        }

        /* SCROLL REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .team-card {
            background: #ffffff;
            padding: 35px 20px;
            border-radius: 24px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
        }

        .team-name {
            font-size: 1.7rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .team-role {
            font-size: 1rem;
            font-weight: 600;
            color: #2563eb;
            line-height: 1.5;
        }

        /* Tablet */
        @media (max-width: 900px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .team-grid {
                grid-template-columns: 1fr;
            }

            .team-card {
                padding: 28px 18px;
            }

            .team-name {
                font-size: 1.4rem;
            }

            .team-role {
                font-size: .95rem;
            }
        }

        /* RESPONSIVE */
        @media(max-width:768px) {

            .hero-grid,
            .about-grid,
            .footprint-grid,
            .founders-grid,
            .contact-cards {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                display: none;
            }

            nav .nav-links {
                display: none;
            }

            .founder-card {
                grid-template-columns: 1fr;
            }

            .founder-photo {
                aspect-ratio: 4/3;
            }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 18px;
            border-radius: 60px;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
            z-index: 9999;
            overflow: hidden;
            animation: floaty 2s ease-in-out infinite;
            transition: 0.3s ease;
        }

        .whatsapp-float i {
            font-size: 24px;
            animation: pulse 1.5s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
        }

        /* Floating Animation */
        @keyframes floaty {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-6px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Pulse Animation */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Mobile Responsive */
        @media(max-width:480px) {
            .whatsapp-float {
                bottom: 15px;
                right: 15px;
                padding: 12px 16px;
                font-size: 13px;
            }

            .whatsapp-float i {
                font-size: 20px;
            }
        }
  

.bluena-products{
    position:relative;
    padding:110px 5%;
    background:
    radial-gradient(circle at top left,#dbeafe 0%,transparent 30%),
    radial-gradient(circle at bottom right,#e0f2fe 0%,transparent 30%),
    #f8fafc;
}



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

.bluena-container{
    max-width:1450px;
    margin:auto;
    position:relative;
    z-index:2;
}

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

.bluena-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:100px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.7);
    color:#2563eb;
    font-size:.78rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    margin-bottom:22px;
    font-weight:700;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.bluena-label::before{
    content:'';
    width:8px;
    height:8px;
    border-radius:50%;
    background:#2563eb;
}

.bluena-title{
    font-size:clamp(2.5rem,5vw,2.5rem);
       font-family: 'Playfair Display', serif;
    font-weight:800;
    line-height:1.05;
    color:#0f172a;
    margin-bottom:20px;
    letter-spacing:-2px;
}

.bluena-desc{
    max-width:720px;
    margin:auto;
    color:#64748b;
    font-size:1rem;
    line-height:1.9;
}

/* =========================
   TABS
========================= */

.bluena-tabs-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:70px;
}

.bluena-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    padding:14px;
    border-radius:100px;
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.7);
    box-shadow:
    0 10px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.bluena-tab-btn{
    border:none;
    background:transparent;
    color:#64748b;
    padding:12px 28px;
    border-radius:100px;
    font-size:.92rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
             font-family: 'Playfair Display', serif;
             text-transform: uppercase;
    
}

.bluena-tab-btn:hover{
    color:#2563eb;
}

.bluena-tab-btn.active{
        background: linear-gradient(135deg, #2563eb, #7dc242);
    color:#fff;
    box-shadow:0 10px 25px rgba(37,99,235,.2);
}

/* =========================
   TAB CONTENT
========================= */

.bluena-tab-content{
    display:none;
    animation:fade .4s ease;
}

.bluena-tab-content.active{
    display:block;
}

@keyframes fade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   PRODUCT GRID
========================= */

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

/* =========================
   PRODUCT CARD
========================= */

.bluena-card{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    cursor:pointer;
    background:#fff;
    border:1px solid rgba(255,255,255,.8);
    transition:.35s ease;
    box-shadow:
    0 12px 40px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.bluena-card:hover{
    transform:translateY(-6px);
    box-shadow:
    0 20px 45px rgba(37,99,235,.12),
    0 8px 20px rgba(15,23,42,.06);
}

.bluena-image{
    height:450px;
    overflow:hidden;
    position:relative;
}

.bluena-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.bluena-card:hover img{
    transform:scale(1.03);
}

.bluena-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(15,23,42,.82),
    transparent 65%);
}

.bluena-info{
    position:absolute;
    left:24px;
    bottom:24px;
    z-index:5;
}

.bluena-name{
    font-size:1.2rem;
    font-weight:700;
    color:#fff;
    margin-bottom:6px;
}

.bluena-type{
    color:rgba(255,255,255,.8);
    font-size:.88rem;
    font-weight:500;
}

/* =========================
   POPUP
========================= */

.bluena-popup{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.72);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
    padding:20px;
}

.bluena-popup.active{
    opacity:1;
    visibility:visible;
}

.bluena-popup-box{
    width:min(900px,100%);
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    box-shadow:0 25px 80px rgba(15,23,42,.18);
    animation:popup .4s ease;
}

@keyframes popup{

    from{
        transform:translateY(30px) scale(.96);
        opacity:0;
    }

    to{
        transform:translateY(0) scale(1);
        opacity:1;
    }

}

.bluena-popup-image{
    height:520px;
    overflow:hidden;
}

.bluena-popup-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.bluena-popup-close{
    position:absolute;
    top:18px;
    right:18px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(20, 20, 20, 0.568);
    color:#fff;
    font-size:1rem;
    cursor:pointer;
}

.bluena-popup-content{
    padding:35px;
}

.bluena-popup-title{
    font-size:2rem;
    color:#0f172a;
    margin-bottom:12px;
    font-weight:700;
}

.bluena-popup-desc{
    color:#64748b;
    line-height:1.9;
}

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

@media(max-width:1200px){

    .bluena-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:900px){

    .bluena-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .bluena-products{
        padding:80px 5%;
    }
.nav-logo {
    img {
        width: 120px;
    }
}
footer {
    background: #0a1428;
    padding: 1.5rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
     gap: 12px;
}

.footer-logo img{
    width: 120px;
}
    .bluena-tabs{
        justify-content:center;
        border-radius:30px;
    }

    .bluena-title{
        font-size:1.4rem;
    }

    .bluena-image{
        height:320px;
    }

    .bluena-popup-image{
        height:420px;
    }

}

@media(max-width:520px){

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

    .bluena-image{
        height:380px;
    }

    .bluena-tab-btn{
        width:100%;
    }

}

.about-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:40px;
}

.about-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

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

/* MOBILE */

@media(max-width:768px){

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

    .about-gallery-item img{
        /* height:220px; */
        height: 100%;
        object-fit: contain;
    }
.about-gallery-item {
    border-radius: 12px !important;
}
.founder-info{
    padding: 20px 12px !important;
}
}