  /* ============================================================
           RESET & VARIABLES
           ============================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --blue: #6B9FD4;
            --teal: #4ABFBF;
            --sage: #8BBF6B;
            --dark: #111820;
            --dark2: #1A2430;
            --dark3: #202C3A;
            --light-bg: #F4F7F6;
            --white-bg: #FFFFFF;
            --text-muted: rgba(255, 255, 255, 0.65);
            --text-body: #4A5568;
            --accent: var(--teal);
            --grad: linear-gradient(135deg, #6B9FD4, #4ABFBF, #8BBF6B);
            --font: 'Outfit', sans-serif;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-xl: 32px;
            --spacing-2xl: 48px;
            --spacing-3xl: 64px;
            --spacing-4xl: 80px;
            --spacing-5xl: 100px;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--dark);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
        }
        .teal {
            color: var(--teal);
        }
        .blue {
            color: var(--blue);
        }
        .sage {
            color: var(--sage);
        }
        .grad-text {
            background: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hi {
            color: var(--teal);
        }
        /* Respect reduced motion preference across the whole site */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ============================================================
           HEADER
           ============================================================ */
        header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: #19181B;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition);
            height: 100px;
            border-bottom: #4abfbf 2px solid;
        }
        header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 0;
            max-width: 1325px;
            margin: 0 auto;
            height: 90px;
            gap: var(--spacing-md);
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .nav-brand-logo-svg {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }
        .nav-brand-text h2 {
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -0.3px;
            line-height: 1;
            color: #fff;
        }
        .nav-brand-text span {
            font-size: 10px;
            color: var(--teal);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            display: block;
            margin-top: -2px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .nav-links a {
            padding: 22px 11px;
            font-size: 13.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.72);
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: #FFC107;
            border-radius: 2px;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: #FFC107;
        }
        .nav-links a:hover::after {
            width: 60%;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
        }
        .nav-right i {
            font-size: 17px;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.65);
            transition: var(--transition);
        }
        .nav-right i:hover {
            color: var(--teal);
        }
        .nav-cta {
            background: #fff;
            color: #111;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 13px;
            transition: var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .nav-cta:hover {
            background: var(--teal);
            color: #fff;
            box-shadow: 0 4px 18px rgba(74, 191, 191, 0.35);
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: none;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: #fff;
            border-radius: 3px;
            transition: var(--transition);
        }
        .hamburger.open span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }
        .mobile-nav {
            display: none;
            padding: 12px var(--spacing-lg) 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(17, 24, 32, 0.95);
            backdrop-filter: blur(18px);
        }
        .mobile-nav.open {
            display: block;
        }
        .mobile-nav a {
            display: block;
            padding: 13px 0;
            font-size: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.78);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--teal);
        }

        /* ============================================================
           HERO SLIDER
           ============================================================ */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            height: 100vh;
            max-height: 1000px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: #0a1018;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            z-index: 1;
            padding: 80px 0;
            width: 100%;
            height: 100%;
        }
        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }
        .hero-slide-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transform: scale(1.05);
            transition: transform 6s ease;
            width: 100%;
            height: 100%;
        }
        .hero-slide.active .hero-slide-bg {
            transform: scale(1);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: rgba(0, 0, 0, 0.60);
            pointer-events: none;
        }
        .hero-canvas {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            width: 100%;
            height: 100%;
        }
        .hero-grid-lines {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(74, 191, 191, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(74, 191, 191, 0.035) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .hero-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(74, 191, 191, 0.1);
            border: 1px solid rgba(74, 191, 191, 0.25);
            padding: 7px 17px;
            border-radius: 100px;
            margin-bottom: var(--spacing-lg);
            font-size: 11.5px;
            font-weight: 700;
            color: var(--teal);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .hero-badge i {
            font-size: 9px;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 0.4;
            }
            50% {
                opacity: 1;
            }
        }
        .hero-content h1 {
            font-size: clamp(38px, 5vw, 64px);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 20px;
            color: #fff;
        }
        .hero-content h1 .line2 {
            display: block;
        }
        .hero-content .hero-sub {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 38px;
            max-width: 540px;
        }
        .hero-sub strong {
            color: var(--teal);
            font-weight: 700;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-hero {
            background: var(--grad);
            color: #fff;
            padding: 16px 34px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 24px rgba(74, 191, 191, 0.25);
            display: inline-block;
            letter-spacing: 0.3px;
            text-align: center;
        }
        .btn-primary-hero:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 40px rgba(74, 191, 191, 0.45);
        }
        .btn-secondary-hero {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            padding: 16px 34px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
            display: inline-block;
            letter-spacing: 0.3px;
            text-align: center;
            cursor: pointer;
        }
        .btn-secondary-hero:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--teal);
            color: var(--teal);
            transform: translateY(-3px) scale(1.02);
        }
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-visual .trinity-anim-wrap {
            position: relative;
            width: 380px;
            height: 380px;
            max-width: 100%;
        }
        .hero-visual .trinity-anim-wrap svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 20px 60px rgba(74, 191, 191, 0.25));
            animation: floatSVG 6s ease-in-out infinite;
        }

        .trinity-anim-wrap,
.trinity-anim-wrap *{
    animation: none !important;
    transform: none !important;
}

.hero-visual{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.trinity-anim-wrap{
    position: relative;
    bottom: 0;
    transform: none !important;
}
.trinity-anim-wrap svg{
    display:block;
    margin-top:auto;
}
        @keyframes floatSVG {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-16px);
            }
        }
        .hero-stat-card {
            position: absolute;
            bottom: 10px;
            left: -100px;
            background: rgba(26, 36, 48, 0.95);
            border: 1px solid rgba(74, 191, 191, 0.2);
            padding: 18px 22px;
            border-radius: 16px;
            backdrop-filter: blur(12px);
            animation: floatUpDown 4s ease-in-out infinite;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
            z-index: 2;
        }
        .hero-stat-card .stat-val {
            font-size: 28px;
            font-weight: 900;
            color: var(--teal);
            line-height: 1;
        }
        .hero-stat-card .stat-lab {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }
        .hero-stat-card2 {
            position: absolute;
            top: 10px;
            right: -130px;
            background: rgba(26, 36, 48, 0.95);
            border: 1px solid rgba(139, 191, 107, 0.2);
            padding: 18px 22px;
            border-radius: 16px;
            backdrop-filter: blur(12px);
            animation: floatUpDown 5s ease-in-out infinite 1s;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
            z-index: 2;
        }
        .hero-stat-card2 .stat-val {
            font-size: 28px;
            font-weight: 900;
            color: var(--sage);
            line-height: 1;
        }
        .hero-stat-card2 .stat-lab {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }
        @keyframes floatUpDown {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 38px;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            z-index: 20;
            transition: var(--transition);
            background: none;
            border: none;
            padding: 10px;
            line-height: 1;
        }
        .slider-arrow:hover {
            color: var(--teal);
        }
        .slider-arrow.left {
            left: 20px;
        }
        .slider-arrow.right {
            right: 20px;
        }

        .hero-slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }
        .hero-slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }
        .hero-slider-dot.active {
            width: 40px;
            border-radius: 20px;
            background: var(--teal);
            border-color: var(--teal);
        }
        .hero-slider-dot:hover {
            background: rgba(255, 255, 255, 0.45);
        }

        .floating-info-card {
            position: absolute;
            bottom: 0;
            right: 40px;
            background: var(--dark2);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 22px 26px;
            display: flex;
            align-items: center;
            gap: 18px;
            width: 460px;
            max-width: 90vw;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            z-index: 10;
            box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
            margin-bottom: 10px;
        }
        .fic-icon {
            width: 72px;
            height: 72px;
            border-radius: 12px;
            background: rgba(74, 191, 191, 0.1);
            border: 1px solid rgba(74, 191, 191, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--teal);
            flex-shrink: 0;
        }
        .fic-text p {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }
        .fic-text a {
            color: var(--teal);
            font-weight: 700;
            font-size: 13px;
            display: inline-block;
            margin-top: 6px;
            transition: var(--transition);
        }
        .fic-text a:hover {
            color: #fff;
        }

        /* ============================================================
           SECTION REVEAL — always visible by default,
           animation triggers when scrolled into view.
           ============================================================ */
        .reveal-from-below {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-from-below.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-left.animate-in {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        }
        .reveal-right.animate-in {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-scale.animate-in {
            opacity: 1;
            transform: scale(1);
        }
        .stagger-children>* {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .stagger-children.animate-in>*:nth-child(1) {
            transition-delay: 0.05s;
        }
        .stagger-children.animate-in>*:nth-child(2) {
            transition-delay: 0.12s;
        }
        .stagger-children.animate-in>*:nth-child(3) {
            transition-delay: 0.19s;
        }
        .stagger-children.animate-in>*:nth-child(4) {
            transition-delay: 0.26s;
        }
        .stagger-children.animate-in>*:nth-child(5) {
            transition-delay: 0.33s;
        }
        .stagger-children.animate-in>*:nth-child(6) {
            transition-delay: 0.40s;
        }
        .stagger-children.animate-in>* {
            opacity: 1;
            transform: translateY(0);
        }
        .stagger-grid>* {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .stagger-grid.animate-in>*:nth-child(1) {
            transition-delay: 0.04s;
        }
        .stagger-grid.animate-in>*:nth-child(2) {
            transition-delay: 0.08s;
        }
        .stagger-grid.animate-in>*:nth-child(3) {
            transition-delay: 0.12s;
        }
        .stagger-grid.animate-in>*:nth-child(4) {
            transition-delay: 0.16s;
        }
        .stagger-grid.animate-in>*:nth-child(5) {
            transition-delay: 0.20s;
        }
        .stagger-grid.animate-in>*:nth-child(6) {
            transition-delay: 0.24s;
        }
        .stagger-grid.animate-in>*:nth-child(7) {
            transition-delay: 0.28s;
        }
        .stagger-grid.animate-in>*:nth-child(8) {
            transition-delay: 0.32s;
        }
        .stagger-grid.animate-in>* {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================
           SECTION BADGE & TITLE
           ============================================================ */
        .section-badge {
            display: inline-block;
            color: #1c6969;
            font-size: 13.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(30px, 3.5vw, 46px);
            font-weight: 800;
            line-height: 1.15;
            color: #111;
            margin-top: 8px;
            margin-bottom: 16px;
        }
        .section-title.light {
            color: #fff;
        }

        /* ============================================================
           ABOUT / WHAT IS MAXMOBIL
           ============================================================ */
        .about-section {
            padding: var(--spacing-5xl) 0;
            background: #fff;
        }
        .about-inner {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            align-items: center;
        }
        .about-left {
            flex: 1.2;
            min-width: 300px;
        }
        .about-right {
            flex: 1;
            min-width: 280px;
        }
        .about-images {
            display: flex;
            gap: var(--spacing-md);
            margin-top: var(--spacing-xl);
        }
        .about-img-box {
            flex: 1;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
            cursor: pointer;
        }

        .about-img-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
        }
        .about-img-placeholder {
            width: 100%;
            height: 260px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            transition: transform 0.6s ease;
            position: relative;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }
        .about-img-box:hover .about-img-placeholder {
            transform: scale(1.04);
        }
        .counter-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            background: var(--grad);
            color: #fff;
            padding: 16px 20px;
            border-radius: var(--radius-md) 0 0 0;
            text-align: center;
            min-width: 105px;
        }
        .counter-badge .cb-num {
            font-size: 26px;
            font-weight: 900;
            line-height: 1;
        }
        .counter-badge .cb-lab {
            font-size: 11px;
            font-weight: 600;
            opacity: 0.9;
            margin-top: 2px;
        }
        .play-box {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex: 1;
            transition: var(--transition);
            cursor: pointer;
        }
        .play-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
        }
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--teal);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
            animation: pulse-btn 2.5s infinite;
            transition: var(--transition);
            z-index: 2;
            cursor: pointer;
        }
        .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.12);
        }
        @keyframes pulse-btn {
            0% {
                box-shadow: 0 0 0 0 rgba(74, 191, 191, 0.5);
            }
            70% {
                box-shadow: 0 0 0 22px rgba(74, 191, 191, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(74, 191, 191, 0);
            }
        }
        .about-right p {
            font-size: 15.5px;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: var(--spacing-md);
        }
        .check-list {
            margin: var(--spacing-lg) 0;
        }
        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            color: #1A2430;
            margin-bottom: 14px;
            transition: var(--transition);
        }
        .check-list li:hover {
            transform: translateX(6px);
        }
        .check-list li i {
            color: var(--teal);
            font-size: 18px;
            margin-top: 1px;
            flex-shrink: 0;
        }
        .about-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 28px;
        }
        .btn-dark {
            background: #111;
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
            display: inline-block;
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .btn-dark:hover {
            background: var(--teal);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 191, 191, 0.3);
        }
        .btn-outline-teal {
            border: 2px solid var(--teal);
            color: #111;
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
            display: inline-block;
            letter-spacing: 0.3px;
            cursor: pointer;
            background: transparent;
        }
        .btn-outline-teal:hover {
            background: var(--teal);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 191, 191, 0.25);
        }

        /* ============================================================
           MEANING
           ============================================================ */
        .meaning-section {
            padding: var(--spacing-4xl) 0;
            background: var(--teal);
    --grad: linear-gradient(135deg, #6B9FD4, #4ABFBF, #8BBF6B);;
        }
        .meaning-box {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 50px 48px;
            box-shadow: var(--shadow-card);
            border: 1px solid #EEF0F4;
            max-width: 900px;
            margin: 0 auto;
            transition: var(--transition);
        }
        .meaning-box:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }
        .meaning-box h3 {
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 800;
            color: #111;
            margin-bottom: 16px;
        }
        .meaning-box p {
            font-size: 15.5px;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 14px;
        }
        .meaning-box p:last-child {
            margin-bottom: 0;
        }
        .meaning-box strong {
            color: #111;
        }

        /* ============================================================
           TRINITY PLATFORM
           ============================================================ */
        .trinity-section {
            padding: var(--spacing-5xl) 0;
            background: var(--dark);
        }
        .trinity-section .top-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .trinity-intro {
            text-align: center;
            max-width: 1152px;
            margin: 0 auto 70px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.85;
        }
        .trinity-intro strong {
            color: #fff;
        }
        .trinity-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 90px;
        }
        .trinity-row.reverse {
            flex-direction: row-reverse;
        }
        .trinity-row .tr-content {
            flex: 1;
        }
        .trinity-row .tr-visual {
            flex: 1;
            position: relative;
            min-height: 280px;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .trinity-row .tr-visual .vis-frame {
            position: absolute;
            inset: 14px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: calc(var(--radius-lg) - 4px);
            pointer-events: none;
            animation: floatUpDown 6s ease-in-out infinite;
        }
        .trinity-row:nth-child(odd) .tr-visual .vis-frame {
            animation-delay: 1s;
        }
        .tr-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }
        .trinity-row .tr-content h2 {
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 800;
            color: #fff;
            margin-bottom: var(--spacing-md);
            line-height: 1.2;
        }
        .trinity-row .tr-content p {
            color: var(--text-muted);
            font-size: 15.5px;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        .trinity-row .tr-content ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .trinity-row .tr-content ul li:hover {
            transform: translateX(6px);
        }
        .trinity-row .tr-content ul li i {
            color: var(--teal);
            flex-shrink: 0;
        }
        .btn-teal {
            display: inline-block;
            margin-top: 14px;
            padding: 14px 34px;
            background: var(--teal);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            border-radius: 10px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .btn-teal:hover {
            background: #fff;
            color: #111;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 191, 191, 0.3);
        }
        .btn-blue {
            display: inline-block;
            margin-top: 14px;
            padding: 14px 34px;
            background: var(--blue);
            color: #fff;
            font-weight: 700;
            border-radius: 10px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .btn-blue:hover {
            background: #fff;
            color: #111;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(107, 159, 212, 0.3);
        }
        .btn-sage {
            display: inline-block;
            margin-top: 14px;
            padding: 14px 34px;
            background: var(--sage);
            color: #fff;
            font-weight: 700;
            border-radius: 10px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .btn-sage:hover {
            background: #fff;
            color: #111;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 191, 107, 0.3);
        }
        .quote-box {
            background: var(--dark3);
            border-left: 4px solid var(--teal);
            padding: 22px 26px;
            border-radius: 12px;
            position: relative;
            margin-top: 20px;
            transition: var(--transition);
        }
        .quote-box:hover {
            border-left-color: #fff;
        }
        .quote-box i {
            position: absolute;
            right: 20px;
            top: 14px;
            font-size: 30px;
            opacity: 0.2;
        }
        .quote-box p {
            color: rgba(255, 255, 255, 0.78);
            font-style: italic;
            font-size: 14.5px;
            line-height: 1.7;
            margin: 0;
        }
        .integration-box {
            background: #1a3658;
            border: 1px solid rgba(74, 191, 191, 0.2);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            text-align: center;
            max-width: 900px;
            margin: 58px auto;

        }
        .integration-box h3 {
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
        }
        .integration-box p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: var(--spacing-lg);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .integration-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .integration-tag {
            background: rgba(74, 191, 191, 0.1);
            border: 1px solid rgba(74, 191, 191, 0.25);
            color: var(--teal);
            padding: 10px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
            transition: var(--transition);
            cursor: pointer;
        }
        .integration-tag:hover {
            background: rgba(74, 191, 191, 0.2);
            border-color: var(--teal);
            transform: translateY(-2px) scale(1.04);
        }

        /* ============================================================
           PRODUCTS / SOLUTIONS
           ============================================================ */
        .solutions-section {
            padding: var(--spacing-5xl) 0;
            background: var(--light-bg);
        }
        .solutions-section .top-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--spacing-lg);
        }
        .sol-card {
            background: #fff;
            border: 1px solid #EEF0F4;
            border-radius: 18px;
            padding: 32px 26px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
          .sol-card:hover {
            background: #9ee781be;
            border: 1px solid #EEF0F4;
            
        }
        .sol-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--grad);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        .sol-card:hover::before {
            transform: scaleX(1);
        }
        .sol-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
            border-color: var(--teal);
        }
        .sol-card i {
            font-size: 40px;
            margin-bottom: var(--spacing-md);
            display: block;
            transition: var(--transition);
        }
        .sol-card:hover i {
            transform: scale(1.12) rotate(-4deg);
        }
        .sol-card.water i {
            color: var(--blue);
        }
        .sol-card.energy i {
            color: var(--sage);
        }
        .sol-card.sanit i {
            color: var(--teal);
        }
        .sol-card h4 {
            font-size: 18px;
            font-weight: 800;
            color: #111;
            margin-bottom: 10px;
        }
        .sol-card p {
            color: #666;
            font-size: 14.5px;
            line-height: 1.65;
            margin-bottom: 18px;
        }
        .sol-link {
            display: inline-block;
            padding: 8px 22px;
            border: 2px solid var(--teal);
            color: var(--teal);
            border-radius: 100px;
            font-weight: 700;
            font-size: 13px;
            transition: var(--transition);
            cursor: pointer;
        }
        .sol-link:hover {
            background: var(--teal);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 191, 191, 0.25);
        }
        .talk-cta {
            text-align: center;
            margin-top: var(--spacing-2xl);
        }

        /* ============================================================
           STATS BANNER — animated
           ============================================================ */
        .stats-banner {
            position: relative;
            background: #6b9fd4;
            background-size: 220% 220%;
            animation: statsGradientShift 12s ease-in-out infinite;
            padding: 70px 0;
            text-align: center;
            color: #fff;
            overflow: hidden;
            isolation: isolate;
        }
        @keyframes statsGradientShift {
            0% {
                background-position: 0% 40%;
            }
            50% {
                background-position: 100% 60%;
            }
            100% {
                background-position: 0% 40%;
            }
        }
        /* diagonal light sweep */
        .stats-banner::before {
            content: '';
            position: absolute;
            inset: -50% -20%;
            z-index: 0;
            background: linear-gradient(115deg,
                    transparent 0%,
                    transparent 42%,
                    rgba(255, 255, 255, 0.16) 50%,
                    transparent 58%,
                    transparent 100%);
            background-size: 260% 260%;
            animation: statsSheen 7s linear infinite;
            pointer-events: none;
        }
        @keyframes statsSheen {
            0% {
                background-position: 0% 0%;
            }
            100% {
                background-position: -140% -140%;
            }
        }
        /* soft floating orbs for depth */
        .stats-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.14) 0, transparent 9%),
                radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.10) 0, transparent 7%),
                radial-gradient(circle at 30% 85%, rgba(255, 255, 255, 0.10) 0, transparent 8%),
                radial-gradient(circle at 92% 78%, rgba(255, 255, 255, 0.12) 0, transparent 6%);
            animation: statsOrbsDrift 10s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes statsOrbsDrift {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(-1.5%, 2%) scale(1.05);
            }
        }
        .stats-banner .container {
            position: relative;
            z-index: 1;
        }
        .stats-banner h2 {
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 800;
            margin-bottom: 10px;
        }
        .stats-banner p {
            font-size: 16px;
            opacity: 0.9;
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .stat-item:hover {
            transform: translateY(-6px);
        }
        .stat-item .s-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 12px;
            animation: statIconFloat 3.4s ease-in-out infinite;
        }
        .stat-item:nth-child(1) .s-icon {
            animation-delay: 0s;
        }
        .stat-item:nth-child(2) .s-icon {
            animation-delay: 0.3s;
        }
        .stat-item:nth-child(3) .s-icon {
            animation-delay: 0.6s;
        }
        .stat-item:nth-child(4) .s-icon {
            animation-delay: 0.9s;
        }
        @keyframes statIconFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-7px);
            }
        }
        .stat-item .s-num {
            font-size: 30px;
            font-weight: 900;
            line-height: 1;
        }
        .stat-item .s-lab {
            font-size: 15px;
            opacity: 0.9;
            margin-top: 4px;
        }

        /* ============================================================
           WAAS
           ============================================================ */
        .waas-section {
            padding: var(--spacing-5xl) 0;
            
        }
        .waas-inner {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .waas-content {
            flex: 1;
            min-width: 280px;
        }
        .waas-content h2 {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 800;
            color: #fff;
            margin: 12px 0 var(--spacing-md);
            line-height: 1.2;
        }
        .waas-content p {
            color: #fff;
            font-size: 15.5px;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
            margin: var(--spacing-lg) 0;
        }
        .compare-col {
            
            border-radius: var(--radius-md);
            padding: 22px;
            transition: var(--transition);
            border: #fff 2px solid;
        }
        .compare-col:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .compare-col.highlight {
            background: var(--dark);
            color: #fff;
        }
        .compare-col h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }
        .compare-col.highlight h4 {
            color: var(--teal);
        }
        .compare-col li {
            font-size: 13.5px;
            line-height: 2;
            color: rgb(255 255 255 / 70%);
            transition: var(--transition);
        }
        .compare-col.highlight li {
            color: rgba(255, 255, 255, 0.7);
        }
        .compare-col.highlight li::before {
            content: "✓ ";
            color: var(--teal);
            font-weight: 700;
        }
        .compare-col li::before {
            content: "× ";
            color: #aaa;
        }
        .waas-visual {
            flex: 1;
            min-width: 280px;
        }
        .service-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .svc-card {
            
            border: 2px solid #EEF0F4;
            border-radius: var(--radius-md);
            padding: 22px 18px;
            transition: var(--transition);
            cursor: pointer;
        }
        .svc-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--teal);
        }
        .svc-card i {
            font-size: 28px;
            color: var(--teal);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .svc-card:hover i {
            transform: scale(1.12) rotate(-4deg);
        }
        .svc-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 6px;
        }
        .svc-card p {
            font-size: 13px;
            color: rgb(255 255 255 / 70%);
            line-height: 1.6;
        }
        .target-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
        }
        .tag {
            background: rgba(74, 191, 191, 0.1);
            border: 1px solid rgba(74, 191, 191, 0.25);
            color: var(--teal);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            transition: var(--transition);
            cursor: pointer;
        }
        .tag:hover {
            background: rgba(74, 191, 191, 0.2);
            transform: translateY(-2px);
        }

        /* ==========================
           Image Container (WaaS)
        ========================== */
        .waas-visual-img-right {
            width: 100%;
            max-width: 550px;
            margin: 60px auto;
            border: 1px solid #111;
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .waas-visual-img-right img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            transition: transform .4s ease;
        }
        .waas-visual-img-right:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 1199px) {
            .waas-visual-img-right {
                max-width: 480px;
            }
        }
        @media (max-width: 991px) {
            .waas-visual-img-right {
                max-width: 100%;
                margin: 40px auto 0;
            }
            .waas-visual-img-right img {
                border-radius: 18px;
            }
        }
        @media (max-width: 767px) {
            .waas-visual-img-right {
                border-radius: 15px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
            }
            .waas-visual-img-right img {
                border-radius: 15px;
            }
        }
        @media (max-width: 480px) {
            .waas-visual-img-right {
                border-radius: 12px;
            }
            .waas-visual-img-right img {
                border-radius: 12px;
            }
        }

        /* ============================================================
           AI WATER BRAIN — animated
           ============================================================ */
        .ai-section {
            position: relative;
            padding: var(--spacing-5xl) 0;
            background: var(--dark);
            overflow: hidden;
        }
        /* animated moving tech grid background, echoes the hero */
        .ai-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(74, 191, 191, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(74, 191, 191, 0.05) 1px, transparent 1px);
            background-size: 46px 46px;
            animation: aiGridDrift 18s linear infinite;
            pointer-events: none;
        }
        @keyframes aiGridDrift {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 46px 92px;
            }
        }
        /* ambient glow that breathes behind the dashboard */
        .ai-section::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 8%;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 191, 191, 0.16) 0%, transparent 70%);
            filter: blur(10px);
            animation: aiGlowBreathe 6s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes aiGlowBreathe {
            0%,
            100% {
                opacity: 0.55;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.12);
            }
        }
        .ai-inner {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            align-items: center;
        }
        .ai-content {
            flex: 1;
            min-width: 280px;
        }
        .ai-content h2 {
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 800;
            color: #fff;
            margin: 12px 0 var(--spacing-md);
            line-height: 1.2;
        }
        .ai-content p {
            color: var(--text-muted);
            font-size: 15.5px;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        .ai-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: var(--spacing-lg) 0;
        }
        .ai-feat {
            background: var(--dark2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 18px 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: var(--transition);
            cursor: pointer;
        }
        .ai-feat:hover {
            border-color: var(--teal);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }
        .ai-feat i {
            color: var(--teal);
            font-size: 20px;
            margin-top: 2px;
            flex-shrink: 0;
            transition: var(--transition);
            display: inline-block;
            animation: aiFeatFloat 3.6s ease-in-out infinite;
        }
        .ai-feat:nth-child(1) i {
            animation-delay: 0s;
        }
        .ai-feat:nth-child(2) i {
            animation-delay: 0.4s;
        }
        .ai-feat:nth-child(3) i {
            animation-delay: 0.8s;
        }
        .ai-feat:nth-child(4) i {
            animation-delay: 1.2s;
        }
        @keyframes aiFeatFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-4px);
            }
        }
        .ai-feat:hover i {
            transform: scale(1.15) rotate(-6deg);
            animation-play-state: paused;
        }
        .ai-feat h5 {
            font-size: 13.5px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 3px;
        }
        .ai-feat p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
            line-height: 1.5;
        }
        .ai-visual {
            flex: 1;
            min-width: 280px;
        }
        .ai-dashboard {
            position: relative;
            background: var(--dark2);
            border: 1px solid rgba(74, 191, 191, 0.15);
            border-radius: var(--radius-lg);
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        .ai-dashboard:hover {
            border-color: rgba(74, 191, 191, 0.35);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }
        /* animated scan-line sweeping down the dashboard for a "live" feel */
        .ai-dashboard::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 90px;
            top: -90px;
            background: linear-gradient(180deg, transparent 0%, rgba(74, 191, 191, 0.10) 50%, transparent 100%);
            animation: aiScanLine 4.5s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes aiScanLine {
            0% {
                top: -90px;
            }
            100% {
                top: 100%;
            }
        }
        .ai-dash-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: var(--spacing-lg);
        }
        .ai-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .ai-dot.r {
            background: #ff5f56;
        }
        .ai-dot.y {
            background: #febc2e;
        }
        .ai-dot.g {
            background: #28c840;
            animation: aiDotBlink 2s ease-in-out infinite;
        }
        @keyframes aiDotBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.35;
            }
        }
        .ai-dash-title {
            font-size: 13px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            margin-left: auto;
        }
        .dash-metrics>.dash-metric {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .dash-metrics.animate-in>.dash-metric:nth-child(1) {
            transition-delay: 0.05s;
        }
        .dash-metrics.animate-in>.dash-metric:nth-child(2) {
            transition-delay: 0.15s;
        }
        .dash-metrics.animate-in>.dash-metric:nth-child(3) {
            transition-delay: 0.25s;
        }
        .dash-metrics.animate-in>.dash-metric:nth-child(4) {
            transition-delay: 0.35s;
        }
        .dash-metrics.animate-in>.dash-metric:nth-child(5) {
            transition-delay: 0.45s;
        }
        .dash-metrics.animate-in>.dash-metric {
            opacity: 1;
            transform: translateY(0);
        }
        .dash-metric {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        .dash-metric:hover {
            background: rgba(255, 255, 255, 0.02);
            padding-left: 8px;
            padding-right: 8px;
            border-radius: 6px;
        }
        .dm-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        .dm-val {
            font-size: 14px;
            font-weight: 700;
        }
        .dm-val.good {
            color: var(--sage);
        }
        .dm-val.teal {
            color: var(--teal);
        }
        .dm-val.blue {
            color: var(--blue);
        }
        .dash-bar-row {
            margin-top: 18px;
        }
        .dash-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 6px;
        }
        .dash-bar-track {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            height: 8px;
            overflow: hidden;
        }
        .dash-bar-fill {
            height: 100%;
            border-radius: 100px;
            transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
            position: relative;
            overflow: hidden;
        }
        .dash-bar-fill::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            width: 40%;
            animation: barShine 2.6s ease-in-out infinite;
        }
        @keyframes barShine {
            0% {
                transform: translateX(-120%);
            }
            100% {
                transform: translateX(340%);
            }
        }
        .dash-bar-fill.t {
            background: linear-gradient(90deg, var(--teal), var(--blue));
            width: 87%;
        }
        .dash-bar-fill.s {
            background: linear-gradient(90deg, var(--sage), var(--teal));
            width: 94%;
        }
        .dash-bar-fill.b {
            background: linear-gradient(90deg, var(--blue), var(--teal));
            width: 99%;
        }
        .ai-pulse {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--teal);
            box-shadow: 0 0 0 0 rgba(74, 191, 191, 0.4);
            animation: aiPulse 2s infinite;
            z-index: 2;
        }
        @keyframes aiPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(74, 191, 191, 0.6);
            }
            70% {
                box-shadow: 0 0 0 14px rgba(74, 191, 191, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(74, 191, 191, 0);
            }
        }

        /* ============================================================
           ESG / SDG
           ============================================================ */
        .sdg-section {
            padding: var(--spacing-4xl) 0;
            background: #fff;
        }
        .sdg-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .sdg-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--light-bg);
            border-radius: 12px;
            padding: 14px 20px;
            border: 1px solid #EEF0F4;
            transition: var(--transition);
            cursor: pointer;
        }
        .sdg-pill:hover {
            border-color: var(--teal);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .sdg-num {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--grad);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 900;
            color: #fff;
            flex-shrink: 0;
        }
        .sdg-text h5 {
            font-size: 13.5px;
            font-weight: 700;
            color: #111;
            margin: 0;
        }
        .sdg-text p {
            font-size: 11.5px;
            color: #888;
            margin: 0;
        }

        /* ============================================================
           RESOURCES
           ============================================================ */
        .resources-section {
            padding: var(--spacing-5xl) 0;
            background: #6b9fd4;
        }
        .resources-content {
            max-width: 780px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.9;
            color: var(--text-body);
        }
        .resources-content p {
            margin-bottom: 20px;
        }
        .resources-content strong {
            color: #111;
        }

        /* ============================================================
           PARTNERS
           ============================================================ */
        .partners-section {
            padding: 50px 0;
            background: #fff;
            border-top: 1px solid #EEF0F4;
            border-bottom: 1px solid #EEF0F4;
        }
        .partners-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px 50px;
        }
        .partner-item {
            font-size: 18px;
            font-weight: 700;
            color: #1A2430;
            opacity: 0.5;
            letter-spacing: 0.5px;
            transition: var(--transition);
            cursor: pointer;
        }
        .partner-item:hover {
            opacity: 1;
            color: var(--teal);
            transform: translateY(-3px) scale(1.04);
        }

        /* ============================================================
           CONTACT
           ============================================================ */
        .contact-section {
            padding: var(--spacing-5xl) 0;
            background: var(--dark2);
        }
        .contact-inner {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }
        .contact-form-col {
            flex: 2;
            min-width: 280px;
        }
        .contact-form-col h2 {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .contact-form-col .sub {
            color: var(--text-muted);
            font-size: 15px;
            margin-bottom: 28px;
        }
        .form-row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-md);
        }
        .form-row-1 {
            margin-bottom: var(--spacing-md);
        }
        .f-label {
            font-size: 13px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 6px;
        }
        .f-input {
            width: 100%;
            padding: 13px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-family: var(--font);
            font-size: 14px;
            transition: var(--transition);
        }
        .f-input:focus {
            outline: none;
            border-color: var(--teal);
            background: rgba(74, 191, 191, 0.06);
            box-shadow: 0 0 0 3px rgba(74, 191, 191, 0.08);
            transform: scale(1.01);
        }
        .f-input option {
            background: var(--dark2);
            color: #fff;
        }
        .f-check {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
            transition: var(--transition);
        }
        .f-check:hover {
            transform: translateX(4px);
        }
        .f-check label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            cursor: pointer;
        }
        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--grad);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 8px;
            font-family: var(--font);
            letter-spacing: 0.3px;
        }
        .btn-submit:hover {
            opacity: 0.9;
            transform: translateY(-2px) scale(1.01);
            box-shadow: 0 8px 32px rgba(74, 191, 191, 0.35);
        }
        .contact-info-col {
            flex: 1;
            min-width: 240px;
        }
        .cic-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 18px;
            padding: 28px;
            height: 100%;
            transition: var(--transition);
        }
        .cic-box:hover {
            border-color: rgba(74, 191, 191, 0.2);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
        }
        .cic-box h4 {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }
        .cic-box ul li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: var(--transition);
        }
        .cic-box ul li:hover {
            color: var(--teal);
            transform: translateX(6px);
        }
        .cic-contact {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .cic-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        .cic-contact p:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .cic-contact p i {
            color: var(--teal);
            width: 20px;
            flex-shrink: 0;
        }

        /* ============================================================
           FOOTER
           ============================================================ */
        footer {
            background: #17171A;
            padding: 60px 0 28px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-md);
        }
        .footer-col p,
        .footer-col a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.9;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--teal);
            transform: translateX(4px);
            display: inline-block;
        }
        .f-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            transition: var(--transition);
        }
        .f-contact-item:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .f-contact-item i {
            color: var(--teal);
            width: 18px;
            font-size: 13px;
            flex-shrink: 0;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .fb-name {
            font-size: 18px;
            font-weight: 900;
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }
        .footer-bottom .fl {
            display: flex;
            gap: var(--spacing-md);
        }
        .footer-bottom .fl a {
            color: rgba(255, 255, 255, 0.35);
            transition: var(--transition);
        }
        .footer-bottom .fl a:hover {
            color: var(--teal);
        }
        .social-icons {
            display: flex;
            gap: 14px;
        }
        .social-icons a {
            color: rgba(255, 255, 255, 0.35);
            font-size: 16px;
            transition: var(--transition);
        }
        .social-icons a:hover {
            color: var(--teal);
            transform: translateY(-3px) scale(1.15);
        }

        /* ============================================================
           BACK TO TOP
           ============================================================ */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--grad);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(74, 191, 191, 0.35);
        }
        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .back-to-top:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 8px 32px rgba(74, 191, 191, 0.5);
        }

        /* ============================================================
           NAV BRAND LOGO
           ============================================================ */
        .nav-brand-text {
            display: flex;
            align-items: center;
        }
        .nav-brand-text img {
            padding-top: 10px;
            width: 95px;
            display: flex;
            object-fit: contain;
        }

        /* ============================================================
           RESPONSIVE
           ============================================================ */
        @media(max-width:992px) {
            .nav-links,
            .nav-right .fa-search,
            .nav-right .fa-globe {
                display: none;
            }
            .nav-right {
                gap: 12px;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav.open {
                display: block;
            }
            .hero-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .hero-content .hero-sub {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-btns {
                justify-content: center;
            }
            .trinity-row,
            .trinity-row.reverse {
                flex-direction: column;
                gap: 36px;
                margin-bottom: 56px;
            }
            .floating-info-card {
                display: none;
            }
            .hero-stat-card {
                left: 0;
                bottom: 20px;
            }
            .hero-stat-card2 {
                right: 0;
                top: 20px;
            }
            .about-images {
                flex-direction: column;
            }
            .ai-inner,
            .waas-inner,
            .about-inner {
                flex-direction: column;
            }
            .contact-inner {
                flex-direction: column;
            }
            .form-row-2 {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .hero-visual .trinity-anim-wrap {
                width: 280px;
                height: 280px;
            }
            .hero-stat-card,
            .hero-stat-card2 {
                position: static;
                margin: 8px 0;
                display: inline-block;
            }
            .hero-visual {
                flex-direction: column;
                gap: 12px;
                display: none;
            }
            .meaning-box {
                padding: 30px 24px;
            }
            .sdg-grid {
                gap: 10px;
            }
            .sdg-pill {
                padding: 10px 14px;
            }
            .slider-arrow {
                display: none;
            }
            .hero {
                height: auto;
                min-height: 100vh;
            }
            .hero-slide {
                padding: 80px 0 60px;
                position: relative;
                min-height: 100vh;
            }
            .hero-slide:not(.active) {
                display: none;
            }
            .hero-slide.active {
                display: flex;
                opacity: 1;
                visibility: visible;
                position: relative;
            }
            .hero-slider-controls {
                bottom: 20px;
            }
        }
        @media(max-width:768px) {
            .hero {
                min-height: auto;
                height: auto;
            }
            .hero-slide {
                min-height: 90vh;
                padding: 80px 0 60px;
            }
            .hero-visual .trinity-anim-wrap {
                width: 220px;
                height: 220px;
                display: none;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .compare-grid {
                grid-template-columns: 1fr;
            }
            .ai-features {
                grid-template-columns: 1fr;
            }
            .service-grid-2x2 {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .solutions-grid {
                grid-template-columns: 1fr 1fr;
            }
            .about-btns {
                justify-content: center;
            }
            .meaning-box h3 {
                font-size: 20px;
            }
            .trinity-row .tr-visual .vis-card {
                min-height: 200px;
                padding: 24px;
            }
            .hero-slider-controls {
                gap: 8px;
                bottom: 16px;
            }
            .hero-slider-dot {
                width: 10px;
                height: 10px;
            }
            .hero-slider-dot.active {
                width: 28px;
            }

            
            .nav-brand-text img {
                width: 72px;
                display: flex;
                object-fit: contain;
                padding: 5px



            }

        }
        @media(max-width:480px) {
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .section-title {
                font-size: 26px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stat-item .s-num {
                font-size: 32px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-stat-card .stat-val,
            .hero-stat-card2 .stat-val {
                font-size: 22px;
            }
            .meaning-box {
                padding: 20px 16px;
            }
            .sdg-pill {
                width: 100%;
                justify-content: flex-start;
            }
            .sdg-grid {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-slider-controls {
                gap: 6px;
                bottom: 12px;
            }
            .hero-slider-dot {
                width: 8px;
                height: 8px;
            }
            .hero-slider-dot.active {
                width: 22px;
            }
        }
        .why-trinity {

            justify-items: center;
        }

        .new-sdg{
            display: flex;
            flex-direction: column;
            margin: 30px;
            background-color: #f4f7f6;
            border-radius: 5px;
            padding: 20px;
        }

        .nav-brand-texts img {
                width: 95px;
                display: flex;
                object-fit: contain;
                text-align: center;
                border-radius: 14px
            }

            .product-card img{
                height: 150px;
                width: 300px;
                display: flex;
                padding: 10px;
                margin-top: 5px;
                margin-bottom: 10px;
            }
              .product-card img:hover{
                height: 150px;
                width: 300px;
                display: flex;
                padding: 10px;
                border: #4ABFBF 2px solid;
                margin-top: 5px;
                margin-bottom: 10px;
            }
            .trinity-span{
                display: flex;
                flex-direction: column;

            }

            .resource-article{
    margin-top:70px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-left:5px solid #345959;
    padding:40px;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.article-label{
    display:inline-block;
    background:#345959;
    color:#fff;
    padding:6px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.article-title{
    font-size:32px;
    line-height:1.35;
    color:#111;
    margin-bottom:15px;
}

.article-meta{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
    color:#777;
    font-size:14px;
    margin-bottom:30px;
}

.resource-article p{
    color:#444;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

@media(max-width:768px){

    .resource-article{
        padding:25px;
    }

    .article-title{
        font-size:24px;
    }

    .resource-article p{
        font-size:16px;
    }

}

        /* ============================================================
           TEAM SECTION — REDESIGNED
        ============================================================ */
        .team-section {
            padding: var(--spacing-5xl) 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        .team-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74,191,191,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .team-section .container {
            position: relative;
            z-index: 1;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }
        .team-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: 30px 24px 24px;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(4px);
            position: relative;
            overflow: hidden;
        }
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--grad);
            opacity: 0;
            transition: var(--transition);
        }
        .team-card:hover::before {
            opacity: 1;
        }
        .team-card:hover {
            transform: translateY(-8px);
            border-color: rgba(74, 191, 191, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.06);
        }
        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 18px;
            border: 3px solid rgba(74, 191, 191, 0.2);
            padding: 4px;
            transition: var(--transition);
            overflow: hidden;
        }
        .team-card:hover .team-avatar {
            border-color: var(--teal);
            transform: scale(1.05);
        }
        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            background: var(--dark2);
        }
        .team-name {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: -0.2px;
        }
        .team-role {
            font-size: 13px;
            font-weight: 600;
            color: var(--teal);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }
        .team-bio {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 18px;
        }
        .team-social {
            display: flex;
            justify-content: center;
            gap: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 18px;
        }
        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
            transition: var(--transition);
        }
        .team-social a:hover {
            background: var(--teal);
            border-color: var(--teal);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(74, 191, 191, 0.3);
        }

        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .team-avatar {
                width: 100px;
                height: 100px;
            }
        }

              .containerx {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ── Partners Section ── */
        .partners-section {
            padding: 80px 0 100px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
        }

        /* ── Section header ── */
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header .label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #4ABFBF;
            background: rgba(0, 102, 179, 0.10);
            padding: 4px 20px;
            border-radius: 100px;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #0b1a2b;
        }

        .section-header h2 span {
            color: #4ABFBF;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #4a5b6e;
            max-width: 560px;
            margin: 8px auto 0;
        }

        /* ── Partners logos ── */
        .partners-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px 18px;
            padding: 24px 28px;
            background: #ffffff;
            border-radius: 80px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 64px;
            transition: box-shadow 0.3s ease;
        }

        .partners-logos:hover {
            box-shadow: 0 8px 40px #4ABFBF;
        }

        .partner-item {
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e3347;
            background: #f8fafc;
            padding: 6px 20px;
            border-radius: 100px;
            border: 1px solid #111;
            transition: all 0.25s ease;
            cursor: default;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .partner-item:hover {
            background: #4ABFBF;
            color: #ffffff;
            border-color: #4ABFBF;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 102, 179, 0.20);
        }

        /* ── Mission / Vision / Impact grid ── */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 8px;
        }

        .card {
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 20, 40, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px #4ABFBF;
        }

        .card-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #e9edf4;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .card-image img {
            transform: scale(1.03);
        }

        .card-body {
            padding: 28px 28px 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-tag {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #0066b3;
            background: rgba(0, 102, 179, 0.08);
            padding: 2px 14px;
            border-radius: 100px;
            align-self: flex-start;
            margin-bottom: 10px;
        }

        .card-body h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0b1a2b;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .card-body p {
            font-size: 0.92rem;
            color: #2a4057;
            line-height: 1.7;
            flex: 1;
        }

        .card-body .highlight-stat {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0066b3;
        }

        .card-body .highlight-stat span {
            font-weight: 400;
            color: #4a5b6e;
        }

        /* ── Mission card accent ── */
        .card-mission .card-tag {
            background: rgba(0, 102, 179, 0.10);
            color: #0066b3;
        }

        .card-mission .card-body h3 {
            color: #004d8a;
        }

        /* ── Vision card accent ── */
        .card-vision .card-tag {
            background: rgba(0, 160, 120, 0.10);
            color: #008060;
        }

        .card-vision .card-body h3 {
            color: #006b54;
        }

        .card-vision .card-body .highlight-stat {
            color: #008060;
        }

        /* ── Impact card accent ── */
        .card-impact .card-tag {
            background: rgba(200, 80, 30, 0.10);
            color: #b8531a;
        }

        .card-impact .card-body h3 {
            color: #9e4516;
        }

        .card-impact .card-body .highlight-stat {
            color: #b8531a;
        }

        /* ── Reveal animation ── */
        .reveal-from-below {
            opacity: 0;
            transform: translateY(40px);
            animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .reveal-from-below:nth-child(2) {
            animation-delay: 0.10s;
        }
        .reveal-from-below:nth-child(3) {
            animation-delay: 0.20s;
        }
        .reveal-from-below:nth-child(4) {
            animation-delay: 0.30s;
        }
        .reveal-from-below:nth-child(5) {
            animation-delay: 0.40s;
        }

        @keyframes revealUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── Responsive ── */
        @media (max-width: 992px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 56px 0 72px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .partners-logos {
                border-radius: 28px;
                padding: 18px 16px;
                gap: 8px 12px;
                margin-bottom: 48px;
            }

            .partner-item {
                font-size: 0.75rem;
                padding: 4px 14px;
                white-space: nowrap;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .card-image {
                aspect-ratio: 16 / 9;
            }

            .card-body {
                padding: 22px 22px 26px;
            }

            .card-body h3 {
                font-size: 1.15rem;
            }

            .card-body p {
                font-size: 0.88rem;
            }
        }

        @media (max-width: 480px) {
            .partners-logos {
                border-radius: 20px;
                gap: 6px 10px;
                padding: 14px 12px;
            }

            .partner-item {
                font-size: 0.7rem;
                padding: 3px 10px;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .card-body {
                padding: 18px 18px 22px;
            }
        }