*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
}

/* Animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hover enhancements */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Animated counter for stats */
.metric-value {
    transition: all 0.3s ease;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 50%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(10, 198, 108, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 176, 232, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.how-header {
    max-width: 620px;
    margin: 0 0 3rem;
    text-align: left;
}

.how-header .section-header {
    text-align: left; 
}

.how-header .section-subtitle {
    text-align: left;
}

.how-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
}

.subtitle-text {
    font-size: 1.1rem;
    color: rgba(12, 29, 49, 0.8);
    line-height: 1.5;
}

.subtitle-accent {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0ac66c;
    position: relative;
    display: inline-block;
}

.subtitle-accent::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0ac66c, #06b0e8);
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.7rem;
    position: relative;
}

.process-step-card {
    text-align: center;
    padding: 2rem 1.4rem 1.8rem;
}

.process-icon-large {
    display: block;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 0 0, rgba(125, 235, 167, 0.45), transparent 60%),
        radial-gradient(circle at 100% 0, rgba(124, 209, 255, 0.55), transparent 55%),
        rgba(222, 244, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #0ac66c;
    transition: all 0.3s ease;
}

.process-step-card:hover .process-icon-large {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(10, 198, 108, 0.25);
}

.process-step-card h3 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    text-align: center;
}

.process-step-card p {
    font-size: 0.9rem;
    color: rgba(12, 29, 49, 0.8);
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

/* Responsive for How It Works */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .how-it-works {
        padding: 4rem 0;
    }
}

/* Trusted By / Client Logos */
.trusted-by {
    padding: 3.5rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(20, 53, 92, 0.06);
    border-bottom: 1px solid rgba(20, 53, 92, 0.06);
}

.trusted-by .section-header {
    /* text-align: center; */
    margin-bottom: 2rem;
}

.trusted-by .section-header h2 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1rem;
    color: rgba(12, 29, 49, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    justify-items: start;
    /* background-color: #06b0e8; */
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.25rem 1.5rem;
    background: rgba(248, 252, 255, 0.5);
    border-radius: 0.75rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #081320;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.client-logo:hover {
    background: rgba(10, 198, 108, 0.08);
    color: #0ac66c;
    transform: translateY(-3px);
}

.client-logo-icon {
    width: 35px;
    height: 35px;
    margin-right: 0.75rem;
    background: linear-gradient(135deg, rgba(10, 198, 108, 0.2), rgba(6, 176, 232, 0.2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logo {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 198, 108, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 176, 232, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cert-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(20, 53, 92, 0.08);
    box-shadow: 0 8px 25px rgba(13, 45, 85, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ac66c, #06b0e8);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(13, 45, 85, 0.12);
}

.cert-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 198, 108, 0.1) 0%, rgba(6, 176, 232, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ac66c;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    background: linear-gradient(135deg, #0ac66c 0%, #06b0e8 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.cert-card h3 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #081320;
    margin-bottom: 0.4rem;
}

.cert-card p {
    font-size: 0.85rem;
    color: rgba(12, 29, 49, 0.65);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .client-logos {
        gap: 1rem;
    }
    
    .client-logo {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #081320;
    background: radial-gradient(circle at top left, #e1f5ff 0, #f5fbff 32%, #fdfdfd 70%, #f5fff7 100%);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    display: block; 
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: none;
    background: transparent;
    border-bottom: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    border-bottom: none;
    pointer-events: none;
    z-index: -1;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar-scrolled {
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(1, 6, 15, 0.8);
}

.navbar-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-scrolled::before {
    background: rgba(3, 10, 20, 0.78);
    border-bottom: 1px solid rgba(21, 56, 96, 0.7);
}

.navbar-scrolled .nav-links a {
    color: rgba(232, 242, 255, 0.9);
}

.navbar-scrolled .nav-links a:hover {
    color: #ffffff;
}

.navbar-scrolled .nav-toggle {
    background: rgba(5, 16, 32, 0.92); 
    /* border-color: rgba(59, 90, 130, 0.85); */
    border-color: rgba(61, 61, 61, 0.85);
}

.navbar-scrolled .nav-toggle span {
    background: #ffe8f5;
}

.logo-text {
    color: rgba(172, 172, 172, 0.95);
}

.navbar-scrolled .logo-text {
    color: rgba(246, 251, 255, 0.95);
}


.navbar-scrolled .logo-text span:last-child {
    color: rgba(132, 255, 197, 0.92);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Poppins", system-ui, sans-serif;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0, #88f0b2 0, #bfffe2 28%, #04714d 55%, #47edb0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #f5fdff;
    box-shadow: 0 10px 30px rgba(0, 121, 255, 0.38);
    overflow: hidden;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.3rem;
}

.logo-text span:last-child {
    color: #0a9f5f;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 0.94rem;

}

.nav-links a {
    position: relative;
    color: rgba(242, 248, 255, 0.9);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #34c759, #0b9fdd);
    transition: width 0.22s ease;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(4, 153, 89, 0.12);
    /* background: linear-gradient(135deg, #0ac66c, #08a554);
    color: #f5fff9 !important;
    box-shadow: 0 10px 22px rgba(5, 148, 74, 0.35); */



    
    background: linear-gradient(135deg, #0ac66c, #06b0e8);
    color: #f6fff9;
    box-shadow: 0 18px 36px rgba(7, 161, 110, 0.35);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #001310!important;
    background: rgba(255, 255, 255, 0.95); 
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px!important;
    height: 2px;
    border-radius: 999px; 
    background: #e8cfbf;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.open {
    gap: 0;
}

.nav-toggle.open span:first-child {
    transform: translateY(5px) rotate(45deg)!important;
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    padding: 4rem 0 3.5rem;
}

.hero-inner {
    display: flex;
    align-items: center;
}

.hero.hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    background-image:
        /* radial-gradient(circle at 20% 10%, rgba(180, 245, 255, 0.16), transparent 60%),
        linear-gradient(to bottom, rgba(2, 8, 18, 0.82), rgba(2, 8, 18, 0.36) 55%, rgba(2, 8, 18, 0.86)), */
        
        /* radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.16), transparent 10%), */
        linear-gradient(to bottom, #000000, rgba(2, 8, 18, 0.82), rgba(2, 8, 18, 0.36) 35%, rgba(2, 8, 18, 0.86)),
        url("../images/p01.jpg");
        /* url("https://images.unsplash.com/photo-1668097613572-40b7c11c8727?auto=format&fit=crop&w=2400&q=85"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.hero-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0, rgba(16, 182, 115, 0.22), transparent 55%),
        radial-gradient(circle at 0 90%, rgba(6, 176, 232, 0.18), transparent 60%);
    pointer-events: none;
}

.hero.hero-full .hero-inner {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.hero.hero-full .hero-content {
    margin: auto;    
    max-width: 720px; 
}

.hero-content h1 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(2.3rem, 3.3vw + 1rem, 3.1rem);
    line-height: 1.09;
    letter-spacing: -0.03em;
    margin-top: 1.5rem;
    margin-bottom: 1.1rem;
    color: #f6fbff;


    text-align: center;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(240, 248, 255, 0.82);
    max-width: 34rem;

    margin: auto;
    text-align: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-size: 2.1rem;
    color: #0ac66c;
    text-shadow: #b4ffd8 0em .0em .1em;
    font-weight: 600;
    margin-bottom: 0.7rem;

    /* #0ac66c, #08a554 */
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.9rem 0 1.8rem;

    /* background-color: #04714d; */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.2s ease, border-color 0.2s ease;

    margin: auto;
}

.btn.primary {
    background: linear-gradient(135deg, #0ac66c, #06b0e8);
    color: #f6fff9;
    box-shadow: 0 18px 36px rgba(7, 161, 110, 0.35);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(7, 133, 105, 0.42);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(210, 235, 255, 0.22);
    color: rgba(246, 251, 255, 0.92);
}

.btn.ghost:hover {
    background: rgba(250, 252, 255, 0.2);
    transform: translateY(-1px);
}

.btn.full-width {
    width: 100%;
}

.hero-metas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 5rem;
}

.hero-metas h3 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: rgba(246, 251, 255, 0.95);


    text-align: center;
}

.hero-metas h3 span {
    font-size: 0.9rem;
    color: rgba(220, 235, 255, 0.68);
    margin-left: 0.1rem;

    text-align: center;
}

.hero-metas p {
    font-size: 0.86rem;
    color: rgba(230, 242, 255, 0.72);

    text-align: center;
}

.hero-glass {
    max-width: 520px;
    margin: 0.4rem 0 1.6rem;
    padding: 0.95rem 1rem;
    border-radius: 1.1rem;
    background: rgba(6, 16, 30, 0.5);
    border: 1px solid rgba(210, 235, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero-glass p {
    margin-top: 0.45rem;
    font-size: 0.92rem;
    color: rgba(240, 248, 255, 0.9);
}

.hero-badge {
    padding: 1rem 1.2rem;
    background: rgba(250, 252, 255, 0.96);
    border-radius: 1rem;
    border: 1px solid rgba(8, 46, 80, 0.06);
    max-width: 320px;
    box-shadow: 0 18px 45px rgba(9, 50, 92, 0.09);
    margin-left: auto;
    margin-bottom: 1rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(5, 165, 102, 0.09);
    color: #0f9b5b;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-badge p {
    font-size: 0.88rem;
    color: rgba(10, 23, 40, 0.8);
}

.hero-card {
    position: relative;
    border-radius: 1.4rem;
    overflow: hidden;
    background: radial-gradient(circle at 0 0, rgba(79, 241, 188, 0.3), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(65, 199, 253, 0.32), transparent 52%),
        radial-gradient(circle at 10% 100%, rgba(20, 45, 95, 0.95), rgba(4, 10, 21, 0.98));
    color: #f8ffff;
    box-shadow: 0 26px 60px rgba(9, 30, 66, 0.8);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.2), transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}

.hero-card.main {
    padding: 1.3rem 1.35rem 1.4rem;
}

.hero-card-content {
    position: relative;
    z-index: 1;
}

.hero-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.mix-chart {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.mix-bar {
    position: relative;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(5, 15, 29, 0.7);
}

.mix-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 40%);
}

.mix-bar span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-size: 0.86rem;
    z-index: 1;
}

.mix-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform-origin: left;
    transform: scaleX(calc(var(--value, 50) / 100));
}

.mix-bar.solar::after {
    background: linear-gradient(90deg, #ffe86b, #ffb347);
}

.mix-bar.wind::after {
    background: linear-gradient(90deg, #4de3ff, #2b9fff);
}

.mix-bar.storage::after {
    background: linear-gradient(90deg, #68ffba, #14c779);
}

.mix-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid transparent;
}

.pill.positive {
    border-color: rgba(82, 242, 184, 0.6);
    background: rgba(14, 167, 103, 0.12);
}

.pill.neutral {
    border-color: rgba(213, 228, 245, 0.6);
    background: rgba(27, 50, 85, 0.28);
}

.hero-card.secondary {
    margin-top: 1rem;
    background: rgba(10, 30, 58, 0.96);
    color: #f8fbff;
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(126, 194, 255, 0.28);
}

.hero-card.secondary .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
    margin-bottom: 0.4rem;
}

.hero-card.secondary .value {
    font-size: 0.92rem;
}

.section {
    padding: 3.5rem 0;
}

.section-header {
    text-align: left;
    max-width: 620px;
    margin-bottom: 2.4rem;
}

.section-header.compact {
    margin-bottom: 1.8rem;
}

.section-header h2 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.9rem;
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: rgba(8, 25, 44, 0.75);
    font-size: 0.98rem;
}

.grid {
    display: grid;
    gap: 1.7rem;
}

.solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: rgba(252, 253, 255, 0.94);
    border-radius: 1.1rem;
    padding: 1.5rem 1.4rem 1.4rem;
    border: 1px solid rgba(20, 53, 92, 0.07);
    box-shadow: 0 18px 45px rgba(13, 45, 85, 0.06);
}

.solution-card h3 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    text-align: center;
}

.solution-card p {
    font-size: 0.92rem;
    color: rgba(12, 29, 49, 0.8);
    margin-bottom: 0.9rem;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: rgba(12, 29, 49, 0.9);
}

.solution-card li + li {
    margin-top: 0.35rem;
}

.solution-card li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 0.45rem;
    background: linear-gradient(135deg, #0fba64, #0e9ddd);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 50%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 198, 108, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 176, 232, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(20, 53, 92, 0.06);
    box-shadow: 
        0 4px 20px rgba(13, 45, 85, 0.04),
        0 12px 40px rgba(13, 45, 85, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: linear-gradient(90deg, #0ac66c, #06b0e8);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 30px rgba(13, 45, 85, 0.08),
        0 20px 50px rgba(13, 45, 85, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.testimonial-rating span {
    color: #ffc107;
    font-size: 1rem;
    text-shadow: 0 0 0 rgba(255, 193, 7, 0.3);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(12, 29, 49, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 53, 92, 0.08);
}

.author-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ac66c 0%, #06b0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(10, 198, 108, 0.25);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #081320;
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.82rem;
    color: rgba(12, 29, 49, 0.65);
}

/* Responsive adjustments for testimonials */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d2035 0%, #081320 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(232, 242, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0ac66c, #06b0e8);
    color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(7, 161, 110, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(7, 133, 105, 0.42);
}

.icon-circle {
    display: block;
    margin: auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    /* background: radial-gradient(circle at 0 0, rgba(125, 235, 167, 0.45), transparent 60%),
        radial-gradient(circle at 100% 0, rgba(124, 209, 255, 0.55), transparent 55%),
        rgba(222, 244, 255, 0.9); */
    font-size: 8.2rem; 
}
 
.icon-circle img{
    display: block;
    width: 100%;
    border-radius: 50%;
}
.impact {
    background: radial-gradient(circle at 10% 0, #e5f9ff 0, #f2fbff 35%, #f9fef9 100%);
}

.impact-inner {
    display: flex;
    flex-direction: column;
}

.impact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.impact-card {
    border-radius: 1.1rem;
    padding: 1.5rem 1.4rem 1.4rem;
}

.primary-card {
    background: linear-gradient(135deg, #04142a, #06263f);
    color: #f6fbff;
    box-shadow: 0 28px 60px rgba(4, 18, 38, 0.9);
    overflow: hidden;
    position: relative;
}

.primary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 197, 107, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.primary-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.card-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.primary-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.metric-value span {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 0.15rem;
}

.impact-bar-wrapper {
    margin-top: 0.4rem;
}

.impact-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 36, 61, 0.8);
    overflow: hidden;
    margin-bottom: 0.7rem;
}

.bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0ac56b, #09b2e2);
    animation: barGrow 1.5s ease-out forwards;
}

@keyframes barGrow {
    from { width: 0; }
}

.impact-bar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.target-text {
    font-weight: 600;
    color: #0ac56b;
}

.impact-bar-meta .pill.neutral {
    background: rgba(14, 33, 55, 0.85);
    border-color: rgba(162, 196, 238, 0.8);
}

.secondary-card {
    background: rgba(250, 252, 255, 0.96);
    border: 1px solid rgba(16, 40, 71, 0.08);
    box-shadow: 0 18px 45px rgba(10, 32, 59, 0.08);
    display: flex;
    flex-direction: column;
}

.secondary-card-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
}

.secondary-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.insights-list {
    list-style: none;
    flex: 1;
}

.insights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(16, 40, 71, 0.06);
}

.insights-list li:last-child {
    border-bottom: none;
}

.insight-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.insights-list strong {
    display: block;
    font-size: 0.95rem;
    color: #0b1934;
    margin-bottom: 0.2rem;
}

.insights-list p {
    font-size: 0.82rem;
    color: rgba(8, 26, 47, 0.7);
    margin: 0;
    line-height: 1.4;
}

.insight-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 1.2rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, #0a9f5f, #08c4a0);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}

.insight-cta:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(10, 159, 95, 0.35);
}

.secondary-card ul {
    list-style: none;
    font-size: 0.92rem;
    color: rgba(8, 26, 47, 0.9);
}

.secondary-card li + li {
    margin-top: 0.45rem;
}

.projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.projects .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.8rem;
}

.projects .section-header h2 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 2.15rem;
    font-weight: 700;
    color: #0b1934;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.projects .section-subtitle {
    font-size: 1.05rem;
    color: rgba(11, 29, 52, 0.72);
    line-height: 1.6;
}

.project-card {
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 159, 95, 0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(4, 20, 42, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    z-index: 2;
}

.badge-icon {
    font-size: 0.9rem;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 159, 95, 0.92) 0%, rgba(10, 159, 95, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-case-study {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.project-card:hover .view-case-study {
    transform: translateY(0);
}

.project-content {
    padding: 1.4rem 1.5rem 1.6rem;
}

.project-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0a9f5f;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.project-card h3 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #0b1934;
}

.project-location {
    font-size: 0.8rem;
    color: rgba(8, 26, 47, 0.65);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-card p {
    font-size: 0.9rem;
    color: rgba(11, 29, 52, 0.82);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.project-card .project-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #0a9f5f;
    margin-bottom: 0.55rem;
    font-weight: 600;
}

.project-card h3 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.project-card p {
    font-size: 0.92rem;
    color: rgba(11, 29, 52, 0.82);
    margin-bottom: 0.9rem;
}

.project-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(7, 25, 49, 0.85);
}

.project-metas span {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(214, 236, 251, 0.9);
    font-weight: 500;
}

.meta-highlight {
    background: linear-gradient(135deg, #0a9f5f, #08c4a0) !important;
    color: #ffffff;
    font-weight: 600;
}

.projects-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.projects-cta .btn {
    min-width: 180px;
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.about-content h2 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
}

.about-content p {
    font-size: 0.95rem;
    color: rgba(9, 25, 46, 0.86);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.about-highlights h3 {
    font-size: 1.05rem;
    font-family: "Poppins", system-ui, sans-serif;
    margin-bottom: 0.2rem;
}

.about-highlights p {
    font-size: 0.88rem;
    color: rgba(10, 28, 50, 0.8);
}

.about-card {
    background: linear-gradient(145deg, #0a1a33, #07101f);
    color: #f5fbff;
    border-radius: 1.2rem;
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: 0 26px 55px rgba(2, 8, 18, 0.9);
}

.about-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.quote {
    font-size: 0.94rem;
    margin-bottom: 0.7rem;
}

.quote-meta {
    font-size: 0.8rem;
    opacity: 0.85;
}

.contact {
    background: radial-gradient(circle at 0 0, #e5f6ff 0, #f3fbff 40%, #f9fff6 100%);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 2.2rem;
    align-items: flex-start;
}

.contact-copy h2 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
}

.contact-copy p {
    font-size: 0.95rem;
    color: rgba(6, 25, 47, 0.86);
}

.contact-points {
    margin-top: 1.1rem;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(6, 25, 47, 0.86);
}

.contact-points li + li {
    margin-top: 0.3rem;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: 0 20px 50px rgba(16, 46, 80, 0.12);
    border: 1px solid rgba(17, 46, 81, 0.06);
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.field-group label {
    font-size: 0.8rem;
    color: rgba(5, 24, 43, 0.9);
}

.field-group input,
.field-group select,
.field-group textarea {
    border-radius: 0.7rem;
    border: 1px solid rgba(17, 48, 82, 0.16);
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    background: rgba(250, 252, 255, 0.9);
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field-group textarea {
    resize: vertical;
    min-height: 100px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: rgba(16, 165, 106, 0.75);
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(18, 182, 115, 0.3);
}

.form-note {
    font-size: 0.78rem;
    color: rgba(10, 28, 48, 0.7);
    margin-top: 0.3rem;
}

.footer {
    padding: 2.4rem 0 1.3rem;
    background: #030712;
    color: rgba(230, 239, 255, 0.86);
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2.8rem;
    align-items: flex-start;
    margin-bottom: 1.6rem;
}

.footer-brand p {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    color: rgba(217, 231, 255, 0.72);
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    font-size: 0.85rem;
}

.footer-links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(186, 204, 236, 0.9);
    margin-bottom: 0.55rem;
}

.footer-links a {
    display: block;
    color: rgba(215, 229, 252, 0.8);
    margin-top: 0.25rem;
    font-size: 0.84rem;
}

.footer-bottom {
    border-top: 1px solid rgba(46, 67, 95, 0.6);
    padding-top: 0.9rem;
    font-size: 0.8rem;
    color: rgba(156, 177, 206, 0.9);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .hero.hero-full {
        min-height: calc(100vh - 64px);
        background-position: 55% center;
    }

    .hero.hero-full .hero-inner {
        padding: 4.6rem 0;
    }
 
    .solutions-grid,
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-inner,
    .impact-grid,
    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-card {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    /* Ensure navbar is above backdrop */
    .navbar {
        z-index: 150 !important;
        background: rgba(3, 10, 20, 0.98) !important;
    }

    .navbar .logo {
        z-index: 75;
        margin-left: 7px;
    }

    .nav-toggle {
        z-index: 150 !important; 
    }

    /* Mobile menu backdrop */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 5, 3, 0.85);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 50;
        cursor: pointer;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Ensure navbar background stays visible when menu is open */
    body.menu-open .navbar::before {
        background: rgba(3, 10, 20, 0.95);
        border-bottom: 1px solid rgba(21, 56, 96, 0.7);
    }

    body.menu-open .navbar {
        background: rgba(3, 10, 20, 0.95);
    }

    .nav-toggle {
        display: flex;
        z-index: 25;
        margin-right: 5px;
    }

    .nav-links {
        position: fixed;
        top: 60px;

    /* margin-top: 16px; */
        overflow-y: scroll;
        right: 0;
        bottom: 0;
        width: min(300px, 80vw);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 1.2rem;
        /* background: linear-gradient(180deg, rgba(8, 20, 35, 0.98) 0%, rgba(3, 15, 30, 0.99) 100%) !important; */
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 90%, rgba(0, 0, 0, 0.99) 100%) !important;
        border-radius: 0 0 0 1.2rem;
        border: 1px solid rgba(0, 21, 22, 0.35);
        border-right: none;
        box-shadow: -8px 0 32px rgba(3, 17, 36, 0.4);
        transform: translateX(110%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 
        z-index: 120;
    } 

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    /* Ensure nav-links background is always solid when open */
    .navbar-scrolled .nav-links.open {
        background: linear-gradient(180deg, rgba(8, 20, 35, 0.98) 0%, rgba(3, 15, 30, 0.99) 100%);
    }

    /* Animated menu items */
    .nav-links a {
        padding: 0.85rem 0.5rem;
        border-bottom: .5px solid rgba(1, 63, 68, 0.35);
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease, background 0.2s ease;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation delays for menu items */
    .nav-links a:nth-child(1) { transition-delay: 0.05s; }
    .nav-links a:nth-child(2) { transition-delay: 0.1s; }
    .nav-links a:nth-child(3) { transition-delay: 0.15s; }
    .nav-links a:nth-child(4) { transition-delay: 0.2s; }
    .nav-links a:nth-child(5) { transition-delay: 0.25s; }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(10, 198, 108, 0.12);
        padding-left: 0.8rem;
        color: #0ac66c !important;
    }

    /* Enhanced CTA button in mobile menu */
    .nav-links .nav-cta {
        margin-top: 1rem;
        padding: 0.9rem 1.2rem;
        /* background: linear-gradient(135deg, #0ac66c 0%, #08a85c 100%); */
        border-radius: 0.6rem;
        text-align: center;
        font-weight: 600;
        border: none;
        border-bottom: none;
        /* color: #ffffff !important; */
        opacity: 0;

        background: linear-gradient(135deg, #0ac66c, #06b0e8);
        color: #f6fff9;
    box-shadow: 0 18px 36px rgba(7, 161, 110, 0.35);



        transform: translateX(20px);
        transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s, background 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-links.open .nav-cta {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links .nav-cta:hover,
    .nav-links .nav-cta:focus {
        background: linear-gradient(135deg, #08d97a 0%, #0ac66c 100%);
        box-shadow: 0 4px 16px rgba(10, 198, 108, 0.4);
        padding-left: 1.2rem;
    }

    .nav-links a,
    .navbar-scrolled .nav-links a {
        color: rgba(235, 244, 255, 0.96);
        font-size: 1rem;
    }

    /* Hamburger menu animation improvements */
    .nav-toggle {
        width: 42px;
        height: 42px;
        padding: 10px;
        background: rgba(3, 10, 20, 0.5);
        border: 1px solid rgba(59, 90, 130, 0.4);
        border-radius: 8px;
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: #ffffff;
    }

    .nav-toggle span:nth-child(2) {
        margin: 4px 0;
    }

    .nav-toggle.open span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-toggle.open {
        background: rgba(10, 198, 108, 0.15);
        border-color: rgba(10, 198, 108, 0.5);
    }

    .nav-toggle.open span {
        background: #0ac66c;
    }

    .hero.hero-full {
        min-height: calc(100vh - 62px);
        background-position: 60% center; 
    }

    .hero.hero-full .hero-inner {
        padding: 4.2rem 10.4px; 
    }
    .hero.hero-full .hero-inner h1{
        font-weight: 400;
    }

    .hero-metas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .solutions-grid,
    .projects-grid,
    .about-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.8rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hero-metas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-metas {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-links {
        grid-template-columns: minmax(0, 1fr);
    }
}

