/* --- S and D Trusun Solutions Premium Color System & Globals --- */
:root {
    --bg-main: #ffffff;
    --bg-surface: rgba(0, 0, 0, 0.04);
    --bg-surface-hover: rgba(0, 0, 0, 0.08);
    --border-color: rgba(0, 0, 0, 0.1);
    
    --primary: #39D353;
    --primary-glow: rgba(57, 211, 83, 0.3);
    --secondary: #22C55E;
    --accent: #FFB300;
    
    --text-primary: #0F172A;
    --text-muted: #64748B;
    --font-sans: 'Montserrat', 'Inter', 'Outfit', sans-serif;
    
    --grad-hero: linear-gradient(135deg, #39D353 0%, #22C55E 100%);
    --grad-dark: radial-gradient(circle at top, #f0fdf4 0%, #ffffff 80%);

    /* Slider Specific Variables */
    --navy-950:#0A0F1C;
    --navy-900:#0F1830;
    --teal-400:#2DD4BF;
    --teal-200:#BFF3E8;
    --amber-400:#FBBF24;
    --amber-200:#FDE8B8;
    --coral-500:#FB7154;
    --cream-50:#F7F5F0;
    --lime:#4ade80;
    --violet:#c084fc;
    --gold:#facc15;
    --ink-70: rgba(247,245,240,.78);
    --ink-50: rgba(247,245,240,.55);
    --radius-lg: 20px;
    --ease: cubic-bezier(.22,.9,.32,1);
}

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

html, body {
    overflow-x: clip;
    max-width: 100vw;
}

body {
    background: var(--bg-main);
    background-image: var(--grad-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 2rem;
}

/* --- Navbar (Glassmorphic) --- */
.site-header {
    position: sticky;
    top: 0;
    background: rgb(241 255 246 / 85%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

/* --- Top Bar --- */
.top-bar {
    background: linear-gradient(90deg, rgb(23 91 183) 0%, rgb(8 145 99) 100%);
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.marquee-wrapper {
    overflow: hidden;
    width: 250px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-marquee 12s linear infinite;
}

@keyframes scroll-marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-right a {
    color: #cbd5e1;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.top-bar-right a:hover {
    color: var(--primary);
}

.top-bar-right svg {
    width: 15px;
    height: 15px;
}

/* --- Call Button --- */
.btn-nav-call {
    background: var(--primary);
    color: #ffffff !important;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(62, 140, 74, 0.2);
}

.btn-nav-call:hover {
    background: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 140, 74, 0.3);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.35rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    row-gap: 1.8rem;
    column-gap: 0.5rem;
}

.logo span {
    font-weight: 300;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.main-nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    color: var(--text-primary);
}

.main-nav a:hover {
    color: #237fa9;
}

/* Nav Dropdown Base Styles */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
}

.dropdown-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
}

.nav-dropdown-menu a {
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    color: #475569 !important;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: rgba(57, 211, 83, 0.08);
    color: var(--primary) !important;
}

/* Hover States to show the dropdown */
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger {
    color: var(--primary);
}


/* Mobile Navbar Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Transform hamburger to X when active */
.nav-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 99;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a, 
    .nav-dropdown-trigger {
        padding: 14px 24px;
        width: 100%;
        display: block;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .btn-admin {
        margin: 15px 24px 5px;
        text-align: center;
        display: block;
    }

    .main-nav a.btn-nav-call {
        width: 42px;
        height: 42px;
        display: flex;
        align-self: center;
        margin: 15px auto;
        padding: 0 !important;
        border-bottom: none;
        justify-content: center;
        align-items: center;
    }

    /* Mobile Dropdown adjustment */
    .nav-dropdown-wrapper {
        display: block;
        width: 100%;
    }

    .nav-dropdown-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown-menu.active {
        display: flex;
    }

    .nav-dropdown-menu a {
        padding: 12px 40px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .nav-dropdown-wrapper:hover .nav-dropdown-menu {
        display: none; /* disable hover menu trigger on mobile */
    }
    
    .nav-dropdown-wrapper:hover .dropdown-chevron {
        transform: none;
    }
}


.btn-admin {
    padding: 0.55rem 1.4rem;
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    background: transparent;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.25s ease !important;
    display: inline-block;
}

.btn-admin:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* --- Interactive Hero Slider --- */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    isolation: isolate;
}

/* ---------- SCENE / BACKGROUND ---------- */
.scene {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sky-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}

.sky-layer.is-active {
    opacity: 1;
}

/* Background image layers */
.sky-layer--0 {
    background-image: linear-gradient(180deg, rgba(10, 15, 28, 0.45) 0%, rgba(10, 15, 28, 0.9) 100%), url('../images/hero-bg2.webp');
    background-size: cover;
    background-position: center;
}

.sky-layer--1 {
    background-image: linear-gradient(180deg, rgba(7, 30, 43, 0.45) 0%, rgba(7, 30, 43, 0.9) 100%), url('../images/hero-bg3.webp');
    background-size: cover;
    background-position: center;
}

.sky-layer--2 {
    background-image: linear-gradient(180deg, rgba(21, 10, 32, 0.45) 0%, rgba(21, 10, 32, 0.9) 100%), url('../images/hero-bg4.webp');
    background-size: cover;
    background-position: center;
}

.scene-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 9, 18, .15) 0%, rgba(6, 9, 18, .35) 55%, rgba(6, 9, 18, .82) 100%);
    z-index: 2;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    filter: blur(6px);
    z-index: 1;
}

.cloud--1 { width: 220px; height: 60px; top: 14%; left: -10%; animation: drift 46s linear infinite; }
.cloud--2 { width: 160px; height: 44px; top: 24%; left: -20%; animation: drift 62s linear infinite; animation-delay: -20s; }
.cloud--3 { width: 120px; height: 34px; top: 10%; left: -30%; animation: drift 38s linear infinite; animation-delay: -8s; }

@keyframes drift { 
    to { transform: translateX(140vw); } 
}

.sun-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    z-index: 1;
    will-change: left, top;
}

.sun-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, .55) 0%, rgba(251, 191, 36, 0) 70%);
    animation: pulse 5s ease-in-out infinite;
}

.sun {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #FFF3D0, var(--amber-400) 60%, var(--coral-500) 100%);
    box-shadow: 0 0 30px rgba(251, 191, 36, .5);
}

@keyframes pulse { 
    0%, 100% { opacity: .7; } 
    50% { opacity: 1; } 
}

.silhouette {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    z-index: 2;
}

.silhouette svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s var(--ease);
}

.silhouette svg.is-active {
    opacity: 1;
}

.particles {
    position: absolute;
    inset: 0 0 38% 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber-200);
    opacity: 0;
    animation: rise 5s ease-in infinite;
}

@keyframes rise {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    15% { opacity: .8; }
    100% { opacity: 0; transform: translateY(-160px) scale(.4); }
}

/* ---------- CONTENT ---------- */
.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px clamp(24px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 100%;
    padding-left: 40px;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: black;
    background: rgba(247, 245, 240, .08);
    border: 1px solid rgba(247, 245, 240, .16);
    border-color: #facc15;
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(14px);
    animation: rise-in .8s var(--ease) .1s forwards;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    animation: pulse 2.4s ease-in-out infinite;
}

.headline {
    margin: 18px 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.02em;
}

.headline .line {
    display: inline-block;
}

.line--1 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.4rem, 6.4vw, 3.6rem);
    color: var(--cream-50);
    opacity: 0;
    transform: translateY(18px) rotate(-1deg);
    animation: rise-in .8s var(--ease) .22s forwards;
}

.line--1 .underline {
    position: absolute;
    left: -2%;
    bottom: -.14em;
    width: 104%;
    height: .3em;
    overflow: visible;
}

.line--1 .underline path {
    fill: none;
    stroke: var(--accent, var(--lime));
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-underline 1.1s var(--ease) .95s forwards;
    transition: stroke .5s var(--ease);
}

.line--1 .underline path.pen2 {
    stroke-width: 2;
    opacity: .55;
    animation-duration: 1.3s;
    animation-delay: 1.05s;
}

@keyframes draw-underline { 
    to { stroke-dashoffset: 0; } 
}

.line--2 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.6rem, 6.4vw, 4.2rem);
    background: linear-gradient(100deg, var(--lime), var(--violet) 45%, var(--gold) 80%, var(--lime));
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-height: 1.05em;
    animation: gradient-drift 7s ease-in-out infinite;
}

@keyframes gradient-drift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.line--2 {
    -webkit-clip-path: polygon(-6% 0, -2% 14%, -7% 30%, -1% 48%, -8% 66%, -3% 84%, -6% 100%, -10% 100%, -10% 0);
    clip-path: polygon(-6% 0, -2% 14%, -7% 30%, -1% 48%, -8% 66%, -3% 84%, -6% 100%, -10% 100%, -10% 0);
}

.line--2.is-changing {
    animation: ink-wipe .85s var(--ease) forwards, gradient-drift 7s ease-in-out infinite;
}

@keyframes ink-wipe {
    0% {
        -webkit-clip-path: polygon(-6% 0, -2% 14%, -7% 30%, -1% 48%, -8% 66%, -3% 84%, -6% 100%, -10% 100%, -10% 0);
        clip-path: polygon(-6% 0, -2% 14%, -7% 30%, -1% 48%, -8% 66%, -3% 84%, -6% 100%, -10% 100%, -10% 0);
    }
    100% {
        -webkit-clip-path: polygon(98% 0, 102% 14%, 97% 30%, 103% 48%, 96% 66%, 101% 84%, 98% 100%, -10% 100%, -10% 0);
        clip-path: polygon(98% 0, 102% 14%, 97% 30%, 103% 48%, 96% 66%, 101% 84%, 98% 100%, -10% 100%, -10% 0);
    }
}

.subcopy {
    margin: 32px 0 0;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.65;
    color: var(--ink-70);
    max-width: 520px;
    opacity: 0;
    transform: translateY(14px);
    animation: rise-in .8s var(--ease) .34s forwards;
}

@keyframes rise-in { 
    to { opacity: 1; transform: translateY(0); } 
}

.cta-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(14px);
    animation: rise-in .8s var(--ease) .46s forwards;
    max-width: 100%;
}

/* Button override */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 14px 11px 15px 10px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    border: 1px solid #97a2be78;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .3s var(--ease), border-radius .3s var(--ease);
    cursor: pointer;
}

.btn:focus-visible { 
    outline: 2px solid var(--cream-50); 
    outline-offset: 3px; 
}

.btn--primary {
    color: white !important;
    background: #2e94ff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 1px 2px 0 #969696;
}

.btn--primary:hover {
    transform: translate(-2px, -3px) rotate(-1.2deg);
    border-radius: 11px 15px 10px 14px;
    box-shadow: 6px 7px 0 var(--navy-950);
}

.btn--ghost {
    color: #ffffff !important;
    background: linear-gradient(100deg, #49d68a, #3b82f6);
    box-shadow: 3px 4px 0 var(--navy-950);
}

.btn--ghost:hover {
    transform: translate(-2px, -3px) rotate(1.2deg);
    border-radius: 15px 10px 14px 11px;
    box-shadow: 6px 7px 0 var(--navy-950);
}

.btn--whatsapp {
    color: #0A0F1C !important;
    background: #4ade80;
    box-shadow: 3px 4px 0 var(--navy-950);
}

.btn--whatsapp:hover {
    transform: translate(-2px, -3px) rotate(-1deg);
    border-radius: 10px 14px 11px 15px;
    box-shadow: 6px 7px 0 var(--navy-950);
}

.btn:active { 
    transform: translate(0,0) !important; 
    box-shadow: 1px 2px 0 var(--navy-950) !important; 
}

.btn svg { 
    width: 18px; 
    height: 18px; 
}

.tag-row {
    list-style: circle;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    font-size: .85rem;
    opacity: 0;
    transform: translateY(14px);
    animation: rise-in .8s var(--ease) .58s forwards;
}

.tag-row li {
    background: rgba(0, 0, 0, 0.06);
    color: var(--cream-50);
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: normal;
    text-align: center;
}
::marker {
    color: #00a0bf;
}
.tag-row li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
}

/* ---------- ARC NAV / SIGNATURE ELEMENT ---------- */
.arc-nav {
    position: absolute;
    z-index: 4;
    right: clamp(20px, 5vw, 64px);
    bottom: 0;
    width: min(46vw, 420px);
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.arc-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.arc-track path {
    fill: none;
    stroke: rgba(247, 245, 240, .18);
    stroke-width: 1.5;
    stroke-dasharray: 2 8;
    stroke-linecap: round;
}

.arc-sun {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #FFF3D0, var(--amber-400) 70%);
    box-shadow: 0 0 12px rgba(251, 191, 36, .8);
    transform: translate(-50%, -50%);
    pointer-events: none;
    will-change: left, top;
}

.arc-marker {
    position: absolute;
    transform: translate(-50%, 50%);
    bottom: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--ink-50);
    padding: 6px;
}

.arc-marker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(247, 245, 240, .3);
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.arc-marker span {
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .85;
}

.arc-marker[aria-selected="true"] {
    color: var(--cream-50);
}

.arc-marker[aria-selected="true"]::before {
    background: var(--teal-400);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--teal-400);
}

.arc-marker:focus-visible {
    outline: 2px solid var(--teal-200);
    outline-offset: 2px;
    border-radius: 6px;
}

/* --- Mobile Responsive Breakpoints --- */

/* Extra Small Devices (320px - 479px) */
@media (max-width: 479px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100svh !important;
    }

    .hero-inner {
        min-height: 100vh !important;
        min-height: 100svh !important;
        padding: 60px clamp(16px, 4vw, 24px) 40px clamp(16px, 4vw, 24px);
    }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .eyebrow {
        font-size: 10px;
        padding: 6px 12px 6px 8px;
        gap: 6px;
        justify-content: center;
    }

    .headline {
        margin: 12px 0 0;
    }

    .line--1 {
        font-size: clamp(2.2rem, 5vw, 2.4rem);
    }

    .line--2 {
        font-size: clamp(2.2rem, 5vw, 2.8rem);
    }

    .subcopy {
        margin: 24px 0 0;
        font-size: clamp(0.85rem, 1.2vw, 0.95rem);
        max-width: 100%;
        line-height: 1.5;
        padding-top: 20px;
    }

    .arc-nav {
        display: none;
    }


    .cta-row {
        gap: 8px;
        margin-top: 20px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .cta-row .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        justify-content: center;
    }

    .tag-row {
        gap: 8px;
        margin: 18px 0 0;
        font-size: 0.75rem;
        grid-auto-flow: column;
        grid-template-columns: unset;
        justify-content: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .tag-row li {
        padding: 5px 12px;
        text-align: center;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .cloud--1 { width: 160px; height: 45px; top: 16%; }
    .cloud--2 { width: 120px; height: 33px; top: 26%; }
    .cloud--3 { width: 90px; height: 25px; top: 12%; }

    .slider-dots {
        bottom: 20px;
    }

    .gallery-tabs {
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-bottom: 30px !important;
    }

    .gallery-tabs .tab-btn {
        white-space: nowrap !important;
        font-size: 0.75rem !important;
        padding: 10px 12px !important;
        flex: 1;
        text-align: center;
    }
}

/* Small Devices (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100svh !important;
    }

    .hero-inner {
        min-height: 100vh !important;
        min-height: 100svh !important;
        padding: 70px clamp(20px, 5vw, 32px) 50px;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .eyebrow {
        font-size: 11px;
        padding: 7px 13px;
        justify-content: center;
    }

    .headline {
        margin: 16px 0 0;
    }

    .line--1 {
        font-size: clamp(2.8rem, 5.5vw, 2.8rem);
    }

    .line--2 {
        font-size: clamp(2.8rem, 5.5vw, 3.2rem);
    }

    .subcopy {
        margin: 28px 0 0;
        font-size: clamp(0.9rem, 1.4vw, 1rem);
        max-width: 100%;
    }

    .cta-row {
        gap: 10px;
        margin-top: 24px;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .cta-row .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .tag-row {
        gap: 10px;
        margin: 20px 0 0;
        font-size: 0.8rem;
        grid-auto-flow: column;
        grid-template-columns: unset;
        justify-content: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .tag-row li {
        padding: 6px 14px;
        text-align: center;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .cloud--1 { width: 180px; height: 50px; }
    .cloud--2 { width: 140px; height: 38px; }
    .cloud--3 { width: 110px; height: 30px; }

    .arc-nav {
        display: none;
    }

    .slider-dots {
        bottom: 24px;
    }
}

/* Tablets (768px - 860px) */
@media (min-width: 768px) and (max-width: 860px) {
    .hero-inner {
        padding: 80px clamp(28px, 5vw, 48px) 60px;
    }

    .hero-content {
        max-width: 90%;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }

    .headline {
        margin: 18px 0 0;
    }

    .line--1 {
        font-size: clamp(2.4rem, 6vw, 3rem);
    }

    .line--2 {
        font-size: clamp(2.6rem, 6vw, 3.4rem);
    }

    .cta-row {
        gap: 12px;
        margin-top: 28px;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .cta-row .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .tag-row {
        gap: 12px;
        margin: 24px 0 0;
        grid-auto-flow: column;
        grid-template-columns: unset;
        justify-content: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .tag-row li {
        padding: 7px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .arc-nav {
        display: none;
    }
}

/* Desktop and larger (861px and up) */
@media (min-width: 861px) {
    .hero-inner {
        padding: 80px clamp(24px, 6vw, 72px);
    }

    .cta-row .btn {
        flex: 0 1 auto;
    }
}

@media (max-width: 600px) {
    .charging {
    position: absolute;
    left: 0;
    width: 155px;
    height: auto;
    opacity: 0.3;
    z-index: 10;
    pointer-events: none;
}
.tab-content{
    grid-template-columns: none!important ;
    gap: 30px;
}
}

@media (prefers-reduced-motion: reduce) {
    .cloud, .sun-glow, .particle, .eyebrow .dot { animation: none !important; }
    .eyebrow, .line--1, .subcopy, .cta-row, .tag-row { animation: none !important; opacity: 1 !important; transform: none !important; }
    .arc-sun, .sun-wrap { transition: none !important; }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn--primary:hover,
    .btn--primary:active {
        transform: translate(-2px, -3px) rotate(-1.2deg);
        border-radius: 11px 15px 10px 14px;
        box-shadow: 6px 7px 0 var(--navy-950);
    }

    .btn--ghost:hover,
    .btn--ghost:active {
        transform: translate(-2px, -3px) rotate(1.2deg);
        border-radius: 15px 10px 14px 11px;
        box-shadow: 6px 7px 0 var(--navy-950);
    }

    .btn--whatsapp:hover,
    .btn--whatsapp:active {
        transform: translate(-2px, -3px) rotate(-1deg);
        border-radius: 10px 14px 11px 15px;
        box-shadow: 6px 7px 0 var(--navy-950);
    }

    .slider-dot {
        width: 14px;
        height: 14px;
        padding: 10px;
        margin: -10px;
    }

    .tag-row li {
        padding: 10px 18px;
        cursor: pointer;
    }
}

/* --- Products Page --- */
.page-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 211, 83, 0.4);
    box-shadow: 0 10px 30px rgba(57, 211, 83, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.2rem;
}

.product-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.product-card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Contact Form --- */
.contact-form {
    max-width: 600px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

/* ===================================================
   PREMIUM FOOTER
   =================================================== */

.site-footer {
  position: relative;
  margin-top: auto;
}

/* ---- Background Wrap ---- */
.footer-bg-wrap {
  background-color: #f7f8f2;
  background-image: url('../images/footer-one-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
}

/* ---- Main Content Area ---- */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 56px;
}

/* ---- 3-Column Grid ---- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* ---- Column Headings ---- */
.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 4px;
  background: var(--primary);
}

/* ---- Contact List ---- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.footer-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(62,140,74,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg { width: 16px; height: 16px; stroke-width: 2.2; }

/* ---- Links List ---- */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-links li a:hover {
  color: var(--primary);
  gap: 12px;
}

.footer-links li a:hover::before {
  transform: scale(1.4);
}

/* ---- Newsletter ---- */
.footer-newsletter-text {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-form input[type="email"] {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: #94a3b8;
}

.footer-newsletter-form input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 211, 83, 0.15);
}

.footer-newsletter-form button {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.footer-newsletter-form button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(57, 211, 83, 0.3);
}

/* ---- Social Icons ---- */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ---- Bottom Bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.footer-bottom p strong {
  color: #0f172a;
}

.footer-bottom p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-bottom-links span {
  color: #cbd5e1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-grid > :nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-bg-wrap {
    background-position: center center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .footer-grid > :nth-child(3) {
    grid-column: span 2;
  }
  
  .footer-main {
    padding: 48px 20px 40px;
  }

  .footer-logo-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-col .footer-socials {
    justify-content: center;
  }

  /* Make sure the Retrod small footer wraps beautifully on mobile */
  .small_footer > div {
    flex-direction: column !important;
    padding: 15px 10px !important;
    height: auto !important;
    gap: 8px;
  }

  .small_footer a {
    margin-left: 0 !important;
    margin-top: 4px;
    align-items: center;
  }
}

/* ---------- SLIDER DOTS ---------- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 36px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.22,.9,.32,1);
    padding: 0; /* Reset padding/margin so they size cleanly */
    margin: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

.slider-dot.is-active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--accent);
}

@media (max-width: 479px) {
    .slider-dots {
        gap: 30px;
        margin-top: 24px;
    }

    .slider-dot {
        width: 5px;
        height: 5px;
    }
}

/* --- About Us Page Redesign --- */
.about-page-wrapper {
    background-color: #a7ffcb14; /* #6766361a warm premium cream background */
    color: #112821; /* deep forest green text */
    padding: 6rem 2rem;
    min-height: 80vh;
    font-family: var(--font-sans);
}

.about-page-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

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

/* Left Column: Visual avatar framing */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circular-frame-wrapper {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer dashed circle decoration */
.circle-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgb(109 228 180);
    border-radius: 50%;
    animation: rotateCircle 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Yellow and Green Dots on the border */
.decor-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.yellow-dot {
    background-color: #FBC02D;
    box-shadow: 0 0 10px rgba(251, 192, 45, 0.4);
}

.green-dot {
    background-color: #6cd7dc;
    box-shadow: 0 0 1px rgba(11, 42, 32, 0.4);
}

/* Position dots along the circle */
.dot-1 { top: 10%; right: 20%; }
.dot-2 { bottom: 20%; left: 5%; }
.dot-3 { bottom: 28%; right: 2%; }
.dot-4 { top: 30%; right: 1.5%; }
.dot-5 { bottom: 10%; right: 25%; }

/* Inner solid/creamy background circle */
.inner-circle-bg {
    position: absolute;
    width: 86%;
    height: 86%;
    background-color: #FDE8B8; /* soft gold/cream */
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

/* Overlapping pine tree shapes */
.visual-decor-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.decor-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 100px solid #053328; /* deep forest green */
}

.triangle-1 {
    bottom: 18%;
    right: 3%;
    transform: rotate(20deg);
}

.triangle-2 {
    bottom: 28%;
    left: 4%;
    transform: rotate(-15deg) scale(0.75);
}

/* Worker Avatar image */
.worker-image {
    position: relative;
    width: 86%;
    height: 86%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    transition: transform 0.5s ease;
    box-shadow: 0 20px 40px rgba(11, 42, 32, 0.15);
}

.circular-frame-wrapper:hover .worker-image {
    transform: scale(1.03);
}

/* Right Column: Copywriting content styling */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px;
    border-radius: 999px;
    background: #3396ff;
    border: 1px solid rgb(4 145 255 / 22%);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

.about-icon {
    width: 13px;
    height: 13px;
    color: #ffffff;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0b0e1a;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.about-title .highlight {
    display: inline-block;
    background: linear-gradient(100deg, var(--lime), var(--violet) 45%, var(--gold) 80%, var(--lime));
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-drift 7s ease-in-out infinite;
    position: relative;
    padding: 0 4px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #526A62;
    margin-bottom: 0.5rem;
}

/* Pill Badges */
.about-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: nowrap;
    align-items: center;
}

.about-action-wrap {
    margin-top: 1.5rem;
    width: 100%;
    display: block;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(11, 42, 32, 0.12);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-badge:nth-child(1) {
    background:  linear-gradient(156deg, #49d68a, #498effba);
}

.about-badge:nth-child(2) {
    background:  linear-gradient(156deg, #49d68a, #498effba);
}

.about-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 42, 32, 0.1);
}

.badge-check-icon {
    width: 20px;
    height: 20px;
    background-color: #06392D;
    color: #F4F3EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-check-icon svg {
    width: 10px;
    height: 10px;
}

.badge-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgb(0 79 74);
}

/* Progress Bars */
.about-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.progress-bar-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0B2A20;
}

.progress-bar-track {
    width: 100%;
    height: 8px;
    background-color: #E8E6E0; /* soft light grey/cream track */
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #06392D; /* deep forest green progress */
    border-radius: 4px;
    width: 0%; /* Start at 0% for animation trigger */
    transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }
    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-page-wrapper {
        padding: 3rem 1rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about-visual {
        order: 1;
    }
    .about-content {
        order: 2;
        align-items: center;
    }
    .about-eyebrow {
        justify-content: center;
    }
    .about-title {
        font-size: 2.0rem;
    }
    .about-badges {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: center;
        width: 100%;
        gap: 0.4rem;
    }
    .about-badge {
        padding: 6px 10px;
        gap: 4px;
    }
    .badge-text {
        font-size: 13px !important;
    }
    .badge-check-icon {
        width: 16px;
        height: 16px;
    }
    .about-action-wrap {
        text-align: center;
        width: 100%;
        margin-top: 1.5rem;
    }
    .circular-frame-wrapper {
        width: 320px;
        height: 320px;
    }
    .decor-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
    }
    .about-badges {
        gap: 0.3rem;
    }
    .about-badge {
        padding: 5px 8px;
        gap: 3px;
    }
    .badge-text {
        font-size: 11px !important;
    }
}

/* --- Orbiting/Revolving Images on Dashed Circle --- */
.decor-image-wrapper {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #4fdc98; /* match the warm orange-cream background */
    box-shadow: 0 6px 15px rgba(11, 42, 32, 0.15);
    overflow: hidden;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.decor-image-wrapper.dot-1 {
    top: 10%;
    right: 20%;
    transform: translate(50%, -50%);
}

.decor-image-wrapper.dot-2 {
    bottom: 20%;
    left: 5%;
    transform: translate(-50%, 50%);
}

.revolving-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: counterRotateCircle 60s linear infinite;
}

@keyframes counterRotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Scale down revolving images on mobile viewports */
@media (max-width: 768px) {
    .decor-image-wrapper {
        width: 48px;
        height: 48px;
        border-width: 2px;
    }
}

/* --- About Section Action Button --- */
.about-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #09b2bc; /* Theme vibrant forest teal */
    color: #FFF;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 139, 116, 0.25);
}

.about-btn-primary:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 139, 116, 0.4);
    color: #FFF;
}

@media (max-width: 768px) {
    .about-badges {
        flex-wrap: nowrap !important;
    }
}

/* --- About Section Background Overlays --- */
.about-page-wrapper {
    position: relative;
    overflow: hidden; /* Prevent overlays from bleeding out of section */
}

.about-overlay-img {
    position: absolute;
    z-index: 0;
    opacity: 0.5; /* Increased opacity for visibility */
    pointer-events: none; /* Make sure it doesn't block clicks */
}

.about-overlay-img.overlay-1 {
    top: 5%;
    right: -10%;
    width: 400px;
    animation: floatOverlay1 12s ease-in-out infinite alternate;
}

.about-overlay-img.overlay-2 {
    bottom: 0%;
    left: -10%;
    width: 450px;
    animation: floatOverlay2 15s ease-in-out infinite alternate-reverse;
}

/* Ensure content sits above overlays */
.about-page-wrapper .container {
    position: relative;
    z-index: 1;
}

@keyframes floatOverlay1 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(20px) rotate(5deg); }
}

@keyframes floatOverlay2 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(-5deg); }
}

/* --- How It Works Section --- */
.process-section{
  --orange:#ff4713;
  --orange-dark:#e8380a;
  --navy:#0b0e1a;
  --card-bg:#f3f3f5;
  --card-line:#e2e2e6;
  --text-dark:#12131a;
  --text-muted:#6b6c76;
  --white:#ffffff;
  --bg-img:url('../images/process.png');
  --hover-1:#c084fc;
  --hover-1-rgb:192,132,252;
  --hover-2:#4ade80;
  --hover-2-rgb:74,222,128;
  --hover-3:#facc15;
  --hover-3-rgb:250,204,21;
  
  padding:90px 40px 130px;
  background-color: #ffffff;
  position: relative;
}

.process-hand-decor {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 290px;
  height: auto;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.process-hand-decor-right {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 290px;
  height: auto;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  transform: scaleX(-1);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ssvc-sun-decor {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
  height: auto;
  opacity: 0.8;
  z-index: 10;
  pointer-events: none;
  animation: spinSlow 20s linear infinite;
}

.process-header{
  text-align:center;
  width: fit-content;
  max-width: 100%;
  margin:0 auto 64px;
}

.process-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px;
  border-radius: 999px;
  background: #3396ff;
  border: 1px solid rgb(4 145 255 / 22%);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.process-header h2{
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0b0e1a;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  white-space: nowrap;
  text-align: center;
}

.process-header h2 .highlight {
  display: inline-block;
  background: linear-gradient(100deg, var(--lime), var(--violet) 45%, var(--gold) 80%, var(--lime));
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-drift 7s ease-in-out infinite;
  padding: 0 4px;
}

.process-header p{
  color:var(--text-muted);
  font-size:16px;
  line-height:1.6;
  margin:0;
}

.process-grid{
  max-width: 1300px;
  margin: 0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
  align-items:stretch;
}

.process-card{
  position:relative;
  padding-bottom:32px;
  transition:transform .35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-card:hover{
  transform:translateY(-10px);
}

.process-card .card-inner{
  position:relative;
  border-radius:22px;
  padding:38px 28px 58px;
  background-image:var(--bg-img);
  background-size:cover;
  background-position:center;
  overflow:hidden;
  transition:box-shadow .35s ease;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
  flex-grow: 1;
}

.process-card .card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(100deg, var(--lime), var(--violet) 50%, var(--lime));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

.process-card:hover .card-inner{
  box-shadow:0 22px 40px rgba(0,0,0,0.16);
}

.process-card .card-inner::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(243,243,245,0.94);
  transition:background .4s ease;
  pointer-events:none;
}

.process-card:hover .card-inner::before{
  background: #1b434112;
}
/* Fourth card needs a color, let's reuse hover-1 or maybe --orange? The original cycles every 3 cards */

.process-card .topbar{
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  display:flex;
  z-index:2;
}
.process-card .topbar span:first-child{flex:1; background:var(--orange);}
.process-card .topbar span:last-child{flex:1; background:var(--navy);}

.process-card .step-number{
  position:relative;
  z-index:1;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid rgba(18,19,26,0.15);
  font-size:14px;
  font-weight:800;
  letter-spacing:0.5px;
  color:var(--orange);
  margin-bottom:22px;
  background:var(--white);
  transition:color .35s ease, border-color .35s ease;
}

.process-card:hover .step-number{color:rgba(18,19,26,0.7);}

.process-card:nth-child(3n+1):hover .step-number{border-color:var(--hover-1);}
.process-card:nth-child(3n+2):hover .step-number{border-color:var(--hover-2);}
.process-card:nth-child(3n+3):hover .step-number{border-color:var(--hover-3);}

.process-card h3{
  position:relative;
  z-index:1;
  font-size:22px;
  font-weight:800;
  color:var(--text-dark);
  margin:0 0 18px;
  transition:color .35s ease;
}

.process-card .divider{
  position:relative;
  z-index:1;
  height:1px;
  background:var(--card-line);
  margin-bottom:20px;
  transition:background .35s ease;
}

.process-card:hover .divider{background:rgba(18,19,26,0.18);}

.process-card p{
  position:relative;
  z-index:1;
  font-size:14.5px;
  line-height:1.7;
  color:var(--text-muted);
  margin:0;
  transition:color .35s ease;
}

.process-card:hover p{color:rgba(18,19,26,0.7);}

.icon-wrap{
  position:absolute;
  top: 38px;
  right: 28px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  z-index:2;
  transition:transform .35s ease;
}

.process-card:hover .icon-wrap{
  transform: scale(1.08);
}

.icon-wrap .icon-circle{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--card-bg);
  color:var(--orange);
  transition:background .35s ease, color .35s ease;
}

.process-card:nth-child(3n+1) .icon-wrap .icon-circle{
  background:var(--hover-1);
  color:var(--white);
}
.process-card:nth-child(3n+2) .icon-wrap .icon-circle{
  background:var(--hover-2);
  color:var(--white);
}
.process-card:nth-child(3n+3) .icon-wrap .icon-circle{
  background:var(--hover-3);
  color:var(--white);
}

.icon-circle svg{width:24px; height:24px;}

/* === Process Section — Responsive === */

/* Tablet: 2-column grid */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-section {
    padding: 70px 32px 100px;
  }
  .process-header {
    margin-bottom: 48px;
  }
  .process-hand-decor,
  .process-hand-decor-right,
  .ssvc-sun-decor {
    display: none;
  }
}

/* Large Mobile: 2-column, tighter */
@media (max-width: 768px) {
  .process-section {
    padding: 60px 24px 90px;
  }
  .process-header {
    width: 100%;
    margin-bottom: 40px;
  }
  /* Allow heading to wrap on mobile */
  .process-header h2 {
    white-space: normal;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
  }
  .process-header p {
    font-size: 15px;
    text-align: center;
  }
  .process-eyebrow {
    font-size: 0.95rem;
  }
}

/* Small Mobile: single column */
@media (max-width: 560px) {
  .process-section {
    padding: 50px 16px 80px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-header h2 {
    font-size: 40px;
  }
  .process-card .card-inner {
    padding: 28px 20px 52px;
  }
  .process-card h3 {
    font-size: 18px;
  }
  .process-card p {
    font-size: 14px;
  }
  .process-card .step-number {
    width: 38px;
    height: 38px;
    font-size: 12px;
    margin-bottom: 16px;
  }
  .icon-wrap {
    width: 56px;
    height: 56px;
  }
  .icon-wrap .icon-circle {
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   Solar Installation Services Section
   ============================================================ */
.solar-services-section {
  position: relative;
  background-color: #f6f6f8;
  padding: 90px 40px 110px;
  overflow: hidden;
}

.solar-services-section::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 260px;
  height: 260px;
  background-image: url('../images/earth.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  animation: earth-rotate 80s linear infinite;
}

@keyframes earth-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ssvc-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- Header ----- */
.ssvc-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.ssvc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px;
  border-radius: 999px;
  background: #3396ff;
  border: 1px solid rgb(4 145 255 / 22%);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ssvc-chip svg { width: 13px; height: 13px; }

.ssvc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0b0e1a;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.ssvc-accent {
  background: linear-gradient(100deg, #0dcb89, var(--gold) 80%, #1ab6e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ssvc-subtitle {
  color: #6b6c76;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

/* ----- Layout: Photo + Grid ----- */
.ssvc-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}

/* ----- LEFT: Photo ----- */
.ssvc-photo-wrap {
  position: relative;
}

.ssvc-photo-glow {
  position: absolute;
  inset: -12px;
  border-radius: 34px 34px 90px 34px;
  background: linear-gradient(135deg, #c98a12, #c96a3e, #3e8c4a);
  opacity: 0.14;
  z-index: 0;
}

.ssvc-photo {
  position: relative;
  z-index: 1;
  border-radius: 28px 28px 84px 28px;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssvc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating warranty badge */
.ssvc-badge {
  position: absolute;
  left: 20px;
  bottom: 24px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 16px 22px 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 8px 32px rgba(62, 140, 74, 0.18),
    0 2px 8px rgba(11,14,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.ssvc-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3e8c4a 0%, #5ab86c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(62,140,74,0.35);
  animation: ssvc-pulse 2.8s ease-in-out infinite;
}

@keyframes ssvc-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(62,140,74,0.35); }
  50%       { box-shadow: 0 4px 22px rgba(62,140,74,0.6); }
}

.ssvc-badge-icon svg { width: 20px; height: 20px; stroke-width: 2.5; }

.ssvc-badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0b2a20;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ssvc-badge span {
  display: block;
  font-size: 11.5px;
  color: #6b8c7a;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* ----- RIGHT: 2x2 Cards ----- */
.ssvc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ssvc-card {
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 22px 18px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.ssvc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11,14,26,0.06);
}

.ssvc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ssvc-card-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }

.ssvc-card--yellow { border-color: #fcd34d; }
.ssvc-card--yellow .ssvc-card-icon { background: #fef9c3; color: #334155; }

.ssvc-card--peach { border-color: #fdba74; }
.ssvc-card--peach .ssvc-card-icon { background: #ffedd5; color: #334155; }

.ssvc-card--green { border-color: #86efac; }
.ssvc-card--green .ssvc-card-icon { background: #dcfce7; color: #334155; }

.ssvc-card--lime { border-color: #bef264; }
.ssvc-card--lime .ssvc-card-icon { background: #ecfccb; color: #334155; }

.ssvc-card--blue { border-color: #93c5fd; }
.ssvc-card--blue .ssvc-card-icon { background: #eff6ff; color: #334155; }

.ssvc-card--purple { border-color: #c4b5fd; }
.ssvc-card--purple .ssvc-card-icon { background: #f5f3ff; color: #334155; }

.ssvc-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.ssvc-card--yellow .ssvc-tag { background: #f59e0b; }
.ssvc-card--peach .ssvc-tag { background: #f97316; }
.ssvc-card--green .ssvc-tag { background: #10b981; }
.ssvc-card--lime .ssvc-tag { background: #84cc16; }
.ssvc-card--blue .ssvc-tag { background: #3b82f6; }
.ssvc-card--purple .ssvc-tag { background: #8b5cf6; }

.ssvc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}
.ssvc-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .ssvc-layout {
    grid-template-columns: 1fr;
  }
  .ssvc-photo {
    min-height: 340px;
  }
  .ssvc-badge {
    bottom: -18px;
  }
}

@media (max-width: 640px) {
  .solar-services-section {
    padding: 60px 20px 80px;
  }
  .ssvc-grid {
    grid-template-columns: 1fr;
  }
  .ssvc-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .ssvc-photo {
    min-height: 260px;
  }
}

/* ===================================================
   FAQ SECTION
   =================================================== */

.faq-section {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow backdrop */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(57, 211, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Container ---- */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Header ---- */
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 999px;
  background: #3396ff;
  border: 1px solid rgb(4 145 255 / 22%);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b0ffbd;
  box-shadow: 0 0 10px var(--primary);
  animation: faq-pulse 2.2s ease-in-out infinite;
}

@keyframes faq-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.faq-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0b0e1a;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.faq-highlight {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(57, 211, 83, 0.4);
  transition: border-color 0.2s;
}
.faq-link:hover {
  border-color: var(--primary);
}

/* ---- 2-Column Grid ---- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- FAQ Item Card ---- */
.faq-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faq-item:hover {
  border-color: rgba(57, 211, 83, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.faq-item.active {
  background: rgba(57, 211, 83, 0.04);
  border-color: rgba(57, 211, 83, 0.25);
  box-shadow: 0 4px 24px rgba(57, 211, 83, 0.08);
}

/* ---- Question Button ---- */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

/* ---- Plus / X Icon ---- */
.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(57, 211, 83, 0.12);
  border: 1.5px solid rgba(57, 211, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.22, 0.9, 0.32, 1), border-color 0.3s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.32, 1);
}

/* Rotate to × when active */
.faq-item.active .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
  color: #ffffff;
}

/* ---- Answer Panel ---- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 0.9, 0.32, 1),
              padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 70px 20px 90px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .faq-question {
    font-size: 14px;
    padding: 18px 18px;
  }
  .faq-answer p {
    padding: 0 18px 20px;
    font-size: 13.5px;
  }
}

/* ============================================
   UNIFIED MOBILE HEADING SIZES (max 768px)
   All section titles are locked to 1.75rem
   so every heading looks consistent on phones.
   ============================================ */
@media (max-width: 768px) {

  /* Hero headline lines */
  .line--1,
  .line--2 {
    font-size: 1.75rem !important;
    letter-spacing: -0.02em;
  }

  /* About Us section title */
  .about-title {
    font-size: 1.75rem !important;
  }

  /* Our Services / How It Works / Solar section titles */
  .ssvc-title {
    font-size: 1.75rem !important;
  }

  /* Process section title (How We Work) */
  .process-section h2,
  .process-title {
    font-size: 1.75rem !important;
  }

  /* FAQ section title */
  .faq-title {
    font-size: 1.75rem !important;
  }

  /* Inner page h1 and h2 (Services, Products, About, Contact pages) */
  .services-banner h1,
  .products-banner h1,
  .page-banner h1,
  .page-inner h1,
  .page-inner h2,
  section h2,
  .container h2 {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }
}

/* =====================================================
   RESOURCES STORY SECTION  (about.php)
   ===================================================== */
.resources-story-section {
  position: relative;
  overflow: hidden;
  background: #f6fbf4;
  padding: clamp(60px, 8vw, 100px) 0;
}

/* Decorative blobs */
.rs-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.13);
  pointer-events: none;
}
.rs-blob--tl {
  width: 420px; height: 420px;
  top: -120px; left: -140px;
}
.rs-blob--br {
  width: 320px; height: 320px;
  bottom: -100px; right: -100px;
  background: rgba(132, 204, 22, 0.08);
}

/* Two-column layout */
.rs-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* ---- LEFT: Image frame ---- */
.rs-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: visible;
}
.rs-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Experience badge */
.rs-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #84cc16, #4ade80);
  color: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(132, 204, 22, 0.4);
  min-width: 120px;
}
.rs-exp-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.rs-exp-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 4px;
  opacity: 0.92;
}

/* ---- RIGHT: Content ---- */
.rs-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Eyebrow pill */
.rs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132, 204, 22, 0.12);
  color: #3a7000;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  width: fit-content;
}
.rs-eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #84cc16;
}

/* Title */
.rs-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #0b0e1a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}
.rs-title-accent {
  background: linear-gradient(100deg, #84cc16, #4ade80 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Description */
.rs-desc {
  font-size: 0.97rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* ---- Circular stats row ---- */
.rs-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.rs-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* SVG ring */
.rs-circle-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}
.rs-ring-svg {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}
.rs-ring-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 8;
}
.rs-ring-fill {
  fill: none;
  stroke: #84cc16;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease;
}
.rs-ring-fill--alt {
  stroke: #4ade80;
}

/* Label inside ring */
.rs-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #0b0e1a;
}
.rs-ring-unit {
  font-size: 0.78rem;
  font-weight: 700;
  color: #84cc16;
  margin-top: -6px;
  margin-left: 1px;
}

/* Caption below ring */
.rs-stat-caption {
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  text-align: center;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ---- Mobile responsive ---- */
@media (max-width: 768px) {
  .rs-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rs-main-img {
    height: 280px;
  }
  .rs-exp-badge {
    right: 12px;
    bottom: -16px;
  }
  .rs-title {
    font-size: 1.75rem !important;
  }
  .rs-stats-row {
    justify-content: center;
  }
}

/* ============================================================
   Benefits Grid Customizations
   ============================================================ */
.benefits-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefits-grid .process-card .topbar,
.benefits-grid .process-card .divider,
.benefits-grid .process-card .card-inner::after,
.benefits-grid .process-card .card-inner::before { 
    display: none !important; 
}

.benefits-grid .process-card .card-inner {
    border: 1.5px solid transparent;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.02);
    padding: 86px 28px 32px 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.benefits-grid .process-card:hover .card-inner {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.benefits-grid .process-card:nth-child(1) .card-inner { border-color: rgba(74, 222, 128, 0.5); }
.benefits-grid .process-card:nth-child(2) .card-inner { border-color: rgba(59, 130, 246, 0.4); }
.benefits-grid .process-card:nth-child(3) .card-inner { border-color: rgba(250, 204, 21, 0.5); }
.benefits-grid .process-card:nth-child(4) .card-inner { border-color: rgba(45, 212, 191, 0.5); }
.benefits-grid .process-card:nth-child(5) .card-inner { border-color: rgba(236, 72, 153, 0.4); background: linear-gradient(180deg, #ffffff 0%, rgba(253, 242, 248, 0.8) 100%); }
.benefits-grid .process-card:nth-child(6) .card-inner { border-color: rgba(192, 132, 252, 0.4); }

.benefits-grid .process-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0F172A;
    padding-right: 0;
}

.benefits-grid .process-card:hover h3 {
    color: #0F172A;
}

.benefits-grid .process-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.benefits-grid .process-card:hover p {
    color: #64748B;
}

.benefits-grid .process-card .icon-wrap {
    position: absolute !important;
    top: 28px !important;
    left: 28px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    z-index: 10 !important;
}

.benefits-grid .process-card .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.benefits-grid .process-card .icon-circle svg {
    width: 20px;
    height: 20px;
}

.benefits-grid .process-card:nth-child(1) .icon-circle { color: #22C55E; background: rgba(34, 197, 94, 0.12); }
.benefits-grid .process-card:nth-child(2) .icon-circle { color: #3b82f6; background: rgba(59, 130, 246, 0.12); }
.benefits-grid .process-card:nth-child(3) .icon-circle { color: #ca8a04; background: rgba(234, 179, 8, 0.15); }
.benefits-grid .process-card:nth-child(4) .icon-circle { color: #14b8a6; background: rgba(20, 184, 166, 0.12); }
.benefits-grid .process-card:nth-child(5) .icon-circle { color: #db2777; background: rgba(219, 39, 119, 0.12); }
.benefits-grid .process-card:nth-child(6) .icon-circle { color: #9333ea; background: rgba(147, 51, 234, 0.12); }

/* ============================================================
   Resources Story Section (About Page)
   ============================================================ */
.resources-story-section {
    padding: 100px 40px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT: Image + Experience Badge */
.rs-image-col {
    position: relative;
    padding-right: 2rem;
}

.rs-img-frame {
    position: relative;
    border-radius: 24px;
}

.rs-main-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(11, 42, 32, 0.15);
}

.rs-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(100deg, var(--lime), var(--violet) 50%, var(--lime));
    color: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
}

.rs-exp-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.rs-exp-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RIGHT: Content + Stats */
.rs-content-col {
    display: flex;
    flex-direction: column;
}

.rs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(27,67,65,0.07);
    border: 1px solid rgba(27,67,65,0.22);
    color: #1b4341;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.rs-eyebrow-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.rs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0b0e1a;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.rs-title-accent {
    background: linear-gradient(100deg, var(--lime), var(--violet) 45%, var(--gold) 80%, var(--lime));
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-drift 7s ease-in-out infinite;
}

.rs-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #526A62;
    margin-bottom: 40px;
}

/* Circular Stats */
.rs-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.rs-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.rs-circle-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.rs-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.rs-ring-bg {
    fill: none;
    stroke: rgba(11, 42, 32, 0.05);
    stroke-width: 6;
}

.rs-ring-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-out;
}

.rs-ring-fill--alt {
    stroke: var(--hover-3);
}

.rs-ring-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.rs-ring-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b0e1a;
    line-height: 1;
}

.rs-ring-unit {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.rs-stat-caption {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0b0e1a;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .rs-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .rs-image-col {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}
@media (max-width: 768px) {
    .resources-story-section {
        padding: 60px 24px;
    }
    .rs-stats-row {
        gap: 1.5rem;
    }
    .rs-circle-wrap {
        width: 80px;
        height: 80px;
    }
    .rs-ring-num {
        font-size: 1.25rem;
    }
}

/* ============================================================
   About Hero Section (Redesigned)
   ============================================================ */
.about-hero-section {
    padding: 80px 40px;
    background: url('../images/breadcumb.png') center/100% 100% no-repeat;
    background-color: #ffffff; /* Fallback */
    position: relative;
}

.about-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.about-hero-content {
    display: flex;
    flex-direction: column;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(100deg, #29bd6d, #3b82f6);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-eyebrow .star-icon {
    width: 14px;
    height: 14px;
    color: #ffdc3a;  /* #4da6ff; Light blue star color */
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e8a; /* Deep blue title color */
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.arrow-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5b041; /* Yellow arrow */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.arrow-btn:hover {
    transform: translateY(-3px);
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
}

.highlight-text {
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.7;
    margin: 0;
}

.highlight-text strong {
    color: #2c3e8a;
    font-weight: 700;
}

/* Right Image */
.about-hero-image-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.whatsapp-float-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.wa-icon {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .about-hero-section {
        padding: 40px 15px;
    }
    
    .about-hero-grid {
        gap: 2rem;
    }

    .about-hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .whatsapp-float-btn {
        bottom: 16px;
        right: 16px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .wa-icon {
        width: 16px;
        height: 16px;
    }
}

/* ============================================================
   Vision & Mission Section (New Stats Layout)
   ============================================================ */
.vision-section {
    background: linear-gradient(100deg, #05448f, #06c44c);
    color: #ffffff;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.vision-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.vision-top-left {
    flex: 1;
}

.vision-new-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 20px;
}

.vision-top-right {
    flex: 1;
    max-width: 500px;
}

.vision-top-right p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
}

.vision-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(7 152 127 / 81%);
    border: 2px solid rgb(236 236 236);
    border-radius: 20px;
    padding: 35px 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vision-stat-col:hover {
    transform: translateY(-5px);
    background: rgb(16 148 126 / 42%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
}

.stat-text {
    font-size: 0.95rem;
    color: #e5e7eb;
    margin: 0 0 20px;
    line-height: 1.5;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: inset;
    background-color: rgb(216 255 80 / 56%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.vision-stat-col:hover .stat-icon {
    background-color: var(--primary-color, #2b7a78);
    transform: scale(1.1);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: #eeff5d;
    transition: color 0.3s ease;
}

.vision-stat-col:hover .stat-icon svg {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .vision-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .vision-stat-col {
        padding: 30px 20px;
    }
    .stat-num {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .stat-text {
        font-size: 0.95rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 992px) {
    .vision-top-row {
        flex-direction: column;
    }
    .vision-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .vision-stat-col {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .vision-bottom-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vision-stat-col {
        padding: 24px 16px;
        aspect-ratio: auto;
    }
    .stat-num {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    .stat-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
   Team Section
   ============================================================ */
.team-section {
    padding: 100px 40px;
    background: linear-gradient(100deg, #0461ce, #0a8236);
    /*background-image: url('../images/team-bg.jpg');*/
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.team-layout-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column Styling */
.team-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-eyebrow {
    color: #bababa;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.team-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.team-main-title .highlight-red {
    color: #ef4444; /* Red color */
}

.team-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

.team-nav-buttons {
    display: flex;
    gap: 15px;
}

.team-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-nav-btn:hover {
    background-color: #ef4444;
    border-color: #ef4444;
}

.team-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Right Column (Cards Carousel) Styling */
.team-right-col {
    width: 100%;
    overflow: hidden; /* Hide horizontal overflow */
}

.team-carousel {
    display: flex;
    gap: 30px;
    /* CSS horizontal scrolling setup */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 20px; /* Space for shadow */
}

.team-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.team-card-new {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards visible on desktop */
    min-width: 280px;
    scroll-snap-align: start;
    background-color: #1e293b; /* Dark blue card background */
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-card-new:hover {
    transform: translateY(-10px);
}

.team-img-box {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-card-new:hover .team-img-box img {
    transform: scale(1.05);
}

/* Social Pill */
.team-social-pill {
    position: absolute;
    top: 20px;
    right: -60px; /* Hidden off-screen by default */
    background-color: #ef4444;
    border-radius: 30px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: right 0.3s ease 0.1s;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
}

.team-card-new:hover .team-social-pill {
    right: 20px; /* Slide in on hover */
}

.team-social-pill a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.team-social-pill a:hover {
    transform: scale(1.2);
}

.team-social-pill a svg {
    width: 18px;
    height: 18px;
}

/* Info Box */
.team-info-box {
    padding: 25px 20px;
    text-align: center;
    background-color: #0459a4;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.team-info-box h3 {
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.team-info-box p {
    color: rgb(137 255 157 / 58%);
    font-size: 1 rem;
    margin: 0;
    text-transform: capitalize;
}

/* Responsive Styles for Team Section */
@media (max-width: 1024px) {
    .team-layout-grid {
        grid-template-columns: 1fr;
    }
    .team-left-col {
        text-align: center;
        align-items: center;
    }
    .team-desc {
        max-width: 100%;
    }
    .team-nav-buttons {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 20px;
    }
    .team-card-new {
        flex: 0 0 calc(85%); /* Show 1 full card and a bit of the next on mobile */
    }
}

/* ============================================================
   Award Section (About Page)
   ============================================================ */
.award-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.award-header {
    background-color: #f8f9fa;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.award-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon svg {
    width: 32px;
    height: 32px;
    stroke: #1e293b;
    stroke-width: 1.5;
}

/* Add an orange accent to part of the SVG icon to match the image style */
.award-icon svg path:first-child,
.award-icon svg circle:first-child {
    stroke: #0a9f9c;
}

.award-title-box {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.award-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.award-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-grow: 1;
}

.award-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover .award-img-box img {
    transform: scale(1.05);
}

.award-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d6932b; /* Orange from image */
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.award-card:hover .award-read-more {
    transform: translateY(0);
}

.award-read-more svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .award-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .award-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Featured On-Grid Section (Services Page)
   ============================================================ */
.featured-service-section {
    padding: 80px 20px;
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.featured-service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
}

.featured-details {
    padding-right: 20px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #3396ff;
    border: 2px solid #3496ff82;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.featured-badge svg {
    width: 16px;
    height: 16px;
    color: #ffde23;
}

.featured-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.featured-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.featured-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 35px;
}

.featured-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.list-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.advantages-title { color: var(--primary); border-bottom-color: rgba(57, 211, 83, 0.2); }
.limitations-title { color: #ef4444; border-bottom-color: rgba(239, 68, 68, 0.2); }

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 12px;
    line-height: 1.5;
}

.feature-list .icon-check {
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 10px;
    text-align: center;
    line-height: 24px;
    border-radius: 50px;
    color: #ffffff;
    background: #ff9800; /* mapped from --color-orange */
    flex-shrink: 0;
    margin-top: 2px;
    padding: 4px;
    box-sizing: content-box;
}

.feature-list .icon-cross {
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 10px;
    text-align: center;
    line-height: 24px;
    border-radius: 50px;
    color: #ffffff;
    background: #ef4444; /* Red */
    flex-shrink: 0;
    margin-top: 2px;
    padding: 4px;
    box-sizing: content-box;
}

.featured-best-for {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 1rem;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Right Content: Card */
.featured-summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.featured-summary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--primary);
    border-radius: 20px 20px 0 0;
}

.featured-summary-card .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 5px 0;
    text-align: center;
}

.featured-summary-card .card-subtitle {
    display: block;
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 30px;
}

.card-stat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.card-stat-box:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.card-stat-box.highlight-stat {
    flex-direction: column;
    align-items: center;
    background: rgba(57, 211, 83, 0.05);
    border: 1px solid rgba(57, 211, 83, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 20px;
}

.card-stat-box.highlight-stat .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    margin-bottom: 5px;
}

.card-stat-box.highlight-stat .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-weight: 600;
    color: #334155;
}

.stat-value {
    font-weight: 700;
    color: #0f172a;
}

.stat-value.small-val {
    font-size: 0.95rem;
}

.stat-value.highlight-text {
    color: var(--primary);
    background: rgba(57, 211, 83, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
}

.featured-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(100deg, #49d68a, #3b82f6);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-cta-btn:hover {
    background-color: var(--primary);
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 211, 83, 0.3);
}

.featured-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.featured-cta-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .featured-service-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .featured-details {
        padding-right: 0;
    }
    .featured-summary-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .featured-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .featured-summary-card {
        padding: 30px 20px;
    }
}

/* Generic Section Eyebrow */
.section-eyebrow {
    color: #24c694;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 16px;
    border: 2px solid #4ade80;
    border-radius: 50px;
    background-color: transparent;
}

/* --- Quote Modal --- */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-modal-overlay.active .quote-modal {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.quote-modal-close:hover {
    color: #0f172a;
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.quote-modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.quote-modal-header p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.quote-modal-form .form-group {
    margin-bottom: 16px;
    text-align: left;
}

.quote-modal-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.quote-modal-form input,
.quote-modal-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s;
}

.quote-modal-form input:focus,
.quote-modal-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

@media (max-width: 480px) {
    .quote-modal {
        padding: 24px 20px;
    }
}

/* ===== Service Details Tabs Section ===== */
.service-details-tabs-section {
    font-family: 'Space Grotesk', sans-serif;
    color: #0f172a;
    background-color: #6766361a;
    background-image: url('../images/elements.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}
.service-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar */
.service-tabs-sidebar {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}
.sidebar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}
.service-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.service-tab-btn {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.service-tab-btn svg {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    transition: color 0.3s;
}
.service-tab-btn:hover {
    border-color: rgba(0,0,0,0.1);
    transform: translateX(4px);
}
.service-tab-btn.active {
    border-left: 4px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-tab-btn.active svg {
    color: var(--primary);
}

.help-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}
.help-box h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}
.help-box p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Content Area */
.service-tabs-content {
    flex: 2;
    min-width: 300px;
}
.service-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}
.service-tab-pane.active {
    display: block;
}
.pane-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(100deg, #3f8adb, #389d86 60% 80%, #1dc55a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
    margin-bottom: 30px;
    line-height: 1.2;
}
.pane-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.pane-text-col {
    flex: 1;
    min-width: 300px;
}
.pane-desc {
    font-size: 17px;
    font-weight: 200;
    color: black;
    line-height: 1.7;
    margin-bottom: 24px;
}
.pane-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pane-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}
.pane-features svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 10px;
    text-align: center;
    line-height: 24px;
    border-radius: 50px;
    color: #ffffff;
    background: #3396ff;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 4px;
    box-sizing: content-box;
}
.wa-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.wa-action-btn:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.wa-action-btn svg {
    width: 24px;
    height: 24px;
}

.pane-img-col {
    flex: 1;
    min-width: 280px;
}
.pane-img-col img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .service-tabs-sidebar {
        max-width: 100%;
    }
}

/* --- Floating WhatsApp Icon --- */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
}
.animate-spin-slow
{
    animation:spinSlow 12s linear infinite;
}
.charging{
    position: absolute;
    left: 10px;
    width: 230px;
    height: auto;
    /*opacity: 0.8;*/
    z-index: 10;
    pointer-events: none;
}
.tab-content{
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}
img.brandlogo {
    width: 100px;
}
