/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    /* Professional Light Theme - Clean & Neat */
    --bg-dark: #ffffff;
    --bg-card: #f8fafc;
    --bg-card-hover: #f1f5f9;

    --color-accent: #14b8a6;
    /* Brand Teal */
    --color-accent-hover: #0d9488;
    --color-primary: #14b8a6;
    --color-primary-hover: #0d9488;

    --color-gradient-start: #0f766e;
    /* Darker Teal */
    --color-gradient-mid: #14b8a6;
    /* Brand Teal */
    --color-gradient-end: #10b981;
    /* Brand Emerald */
    --gradient-primary: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --border-color: rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 210, 137, 0.15);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-accent);
}

.eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gradient-end) 0%, var(--color-gradient-start) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.25);
}

.text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    border: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 30px;
    top: 20px;
    width: 92%;
    max-width: 1100px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(255, 255, 255, 1);
}

.navbar.scrolled .logo-img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(87%) saturate(336%) hue-rotate(129deg) brightness(91%) contrast(92%);
    height: 45px; 
    width: auto;
    transform: scale(1.6);
    transform-origin: left center;
    margin-right: 180px; /* Accounts for the visual scale overflow */
    margin-left: -20px; /* Counteracts whitespace in the original image file */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scale(1.6);
    transform-origin: left center;
    margin-right: 180px; /* Push nav links further right to create a gap */
    margin-left: -20px; /* Align cleanly */
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #334155;
    text-shadow: none;
    font-weight: 600;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--color-accent);
    background: rgba(20, 184, 166, 0.1);
}

/* Ensure mobile menu icon is visible on white background */
.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--color-accent);
}

/* Update Button when Scrolled */
.navbar.scrolled .btn-primary {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.navbar.scrolled .btn-primary:hover {
    background: #0d9488;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: var(--color-primary);
    text-shadow: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.nav-link::after {
    display: none;
}

.btn-contact {
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 50px;
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-contact:hover::before {
    opacity: 1;
}

.btn-contact:hover {
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    border-color: transparent;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-base);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center right, #1e293b 0%, #0b0f19 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Banner Slider Modifiers */
.slide-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    z-index: 0;
}

.banner-1::before {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0) 70%);
}

.banner-1 {
    background-color: #0b0f19;
    overflow: hidden;
}

.banner-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner2.png');
    background-size: cover;
    background-position: center top;
    z-index: -1;
    animation: bannerBreathe 12s ease-in-out infinite alternate;
}

@keyframes bannerBreathe {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.banner-1 .hero-left {
    position: relative;
    z-index: 1;
    padding: 0;
}

.banner-1 .hero-title,
.banner-1 .hero-desc,
.banner-1 .eyebrow {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-1 .feature-item span {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.banner-1 .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.banner-1 .btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Banner 2 (Light Background) Styles */
.banner-2 {
    background-color: #ffffff;
    overflow: hidden;
}

.banner-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner2.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: bannerBreathe 12s ease-in-out infinite alternate;
}

.banner-2::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 70%);
}

.banner-2 .hero-left {
    position: relative;
    z-index: 1;
    padding: 0;
}

/* Layered Component Styles */
.slide-layered .hero-left {
    position: relative;
    z-index: 10;
}

.slide-layered .hero-title,
.slide-layered .hero-desc,
.slide-layered .eyebrow {
    color: #ffffff;
}

.slide-layered .hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.slide-layered .hero-image {
    max-height: 85vh;
    /* Prevent head cutoff */
    width: auto;
    object-fit: contain;
}

/* Holograms */
.holograms-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 8;
    padding-left: 20px;
}

.hologram-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
}

.hologram-item:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.holo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.4), inset 0 0 10px rgba(20, 184, 166, 0.2);
    background: rgba(20, 184, 166, 0.1);
}

.holo-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.2;
}

.holo-text strong {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.hologram-item {
    animation: float 4s ease-in-out infinite;
}

.float-delay-1 {
    animation-delay: 0s;
}

.float-delay-2 {
    animation-delay: 1s;
}

.float-delay-3 {
    animation-delay: 2s;
}

.float-delay-4 {
    animation-delay: 3s;
}

/* Base states for slide contents (hidden) */
.hero-slide .hero-left>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide .hero-center {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide .hero-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Active states for slide contents (visible) */
.hero-slide.active .hero-left>* {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-left .eyebrow {
    transition-delay: 0.3s;
}

.hero-slide.active .hero-left .hero-title {
    transition-delay: 0.5s;
}

.hero-slide.active .hero-left .hero-desc {
    transition-delay: 0.7s;
}

.hero-slide.active .hero-left .hero-buttons {
    transition-delay: 0.9s;
}

.hero-slide.active .hero-left .hero-features-bottom {
    transition-delay: 1.1s;
}

.hero-slide.active .hero-center {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

.hero-slide.active .hero-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

/* Hero Slider Controls */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.hero-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.hero-btn.prev {
    left: 20px;
}

.hero-btn.next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr auto 0.8fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-desc {
    color: var(--text-main);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 4rem;
}

.hero-features-bottom {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon,
.feature-icon-small,
.service-icon,
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
}

.feature-icon img,
.feature-icon-small img,
.service-icon img,
.stat-icon img {
    width: 24px;
    height: 24px;
}

/* Hero Center - 3D Graphic */
.hero-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 137, 0.2) 0%, rgba(6, 11, 25, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

#hero-robot-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.dashboard-img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    margin-left: auto;
}

.side-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-base);
    min-width: 220px;
}

.side-feature:hover {
    border-color: var(--color-primary);
    background: #f8fafc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateX(-5px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background: #0f172a;
}

.services .section-title {
    color: #ffffff;
}

.services .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.services .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.12);
    border-color: rgba(20, 184, 166, 0.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(20, 184, 166, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.2);
}

.service-icon img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.3));
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.learn-more {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more:hover {
    color: var(--color-primary-hover);
    gap: 12px;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products {
    background: #f0fdfa;
    /* Soft Premium Teal */
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.products-header {
    margin-bottom: 40px;
}

.products-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.products-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding-bottom: 20px;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(25% - 18px);
    /* 4 cards per row */
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(20, 184, 166, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.12);
}

.product-img-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0.02) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.product-img {
    max-height: 140px;
    object-fit: contain;
    /* Placeholder style */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><rect width="100%" height="100%" fill="%23122040"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23fff" font-family="sans-serif">Product</text></svg>') center/contain no-repeat;
    min-width: 150px;
    min-height: 100px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.12);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--text-white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.carousel-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.carousel-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.stat-icon {
    width: 64px;
    height: 64px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-banner {
    background: linear-gradient(90deg, var(--bg-card) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 80px 0 20px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 20px 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: var(--color-primary);
}

.social-links img {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact li img {
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.separator {
    margin: 0 10px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-features-bottom {
        justify-content: center;
    }

    .hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .side-feature {
        flex-direction: row;
    }

    .products-carousel {
        padding-bottom: 30px;
    }

    .product-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .nav-links.nav-active {
        display: flex;
    }

    .nav-links .btn-contact {
        display: inline-flex;
        margin-top: 15px;
        width: max-content;
    }

    .btn-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.1rem;
        word-wrap: break-word;
    }

    .hero-features-bottom {
        grid-template-columns: 1fr;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .navbar.scrolled {
        padding: 8px 15px !important;
        width: 96% !important;
    }

    .navbar.scrolled .logo-img, .logo-img {
        margin-right: 90px !important; /* Prevent overlap with hamburger menu */
        margin-left: -20px !important; /* Pull left slightly to counteract padding without bleeding out */
        height: 50px !important; /* Increased mobile height */
        transform: scale(1.8) !important; /* Increased scale */
        transform-origin: left center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-bottom-features {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding: 15px 10px;
        gap: 8px;
    }

    .feature-col {
        flex: 1 1 30%;
        font-size: 0.7rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   Redesigned Hero Section (Green Theme & New Layout)
   ========================================================================== */
.hero.redesigned-hero {
    background-color: #011010;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero.redesigned-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(1, 16, 16, 0.95) 0%, rgba(1, 16, 16, 0.85) 42%, rgba(1, 16, 16, 0) 58%);
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero.redesigned-hero .hero-container {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* Offset for navbar */
}

.hero.redesigned-hero .hero-left {
    padding-right: 20px;
}

.hero.redesigned-hero .eyebrow {
    color: var(--color-accent);
}

.hero.redesigned-hero .hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero.redesigned-hero .hero-desc-wrapper {
    margin-bottom: 30px;
}

.hero.redesigned-hero .hero-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
}

.hero.redesigned-hero .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero.redesigned-hero .btn-outline.outline-accent {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero.redesigned-hero .btn-outline.outline-accent:hover {
    background: var(--color-accent);
    color: #fff;
}

.hero-bottom-features {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    width: 72px;
}

.feature-icon-circle {
    width: 45px;
    height: 45px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    transition: var(--transition-base);
}

.feature-icon-circle:hover {
    transform: translateY(-3px);
}

.hero.redesigned-hero .hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-robot-container {
    position: relative;
    z-index: 2;
}

.hero-robot-img {
    max-height: 80vh;
    width: auto;
    object-fit: contain;
}

.hero-floating-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
}

.floating-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    min-width: 180px;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

/* Simulate connecting lines */

.floating-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(20, 184, 166, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .hero.redesigned-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero.redesigned-hero .hero-left {
        padding-right: 0;
    }

    .hero.redesigned-hero .hero-desc-wrapper {
        border-left: none;
        padding-left: 0;
    }

    .hero-bottom-features {
        justify-content: center;
    }

    .hero-floating-cards {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
        transform: none;
    }


}

/* ==========================================================================
   Responsive Grid & Flex Classes (Replacing Inline Styles)
   ========================================================================== */

/* 1. About / Stats Section */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-stats-inner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* 2. Journey Timeline */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: left;
    position: relative;
}

/* 3. Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 4. Products */
.products-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.products-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.products-grid::-webkit-scrollbar {
    display: none;
}
.products-grid > div {
    flex: 0 0 calc((100% - 80px) / 5);
    scroll-snap-align: start;
}

/* 5. AI & Robotics */
.ai-robotics-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.ai-robot-left, .ai-robot-right {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
}
.ai-features-grid {
    flex: 0 0 45%;
    max-width: 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
}

/* 6. How We Work */
.process-dashed-line {
    position: absolute;
    top: 20px;
    left: 5%;
    width: 90%;
    height: 2px;
    border-top: 2px dashed rgba(20,184,166,0.3);
    z-index: 1;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* 7. Testimonials & Insights */
.testimonials-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 8. Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid > div {
        flex: 0 0 calc((100% - 40px) / 3);
    }
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .ai-robotics-flex {
        flex-direction: column;
        gap: 40px;
    }
    .ai-robot-left, .ai-robot-right {
        display: none;
    }
    .ai-features-grid {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        padding: 0 !important; /* Remove the 20px desktop padding so pills can span wider */
    }
    .testimonials-insights-grid {
        grid-template-columns: 1fr;
    }
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid > div {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .process-dashed-line {
        display: none;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom-flex {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    .solutions-stats-grid {
        grid-template-columns: 1fr;
    }
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }
    .floating-actions .whatsapp-btn, 
    .floating-actions .call-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .services-grid, .journey-grid, .insights-grid, .ai-features-grid, .process-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .products-grid > div {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.solutions-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.float-call {
    background-color: var(--color-accent);
}

.float-wa {
    background-color: #25D366; /* Official WhatsApp Green */
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* About Hero */
.about-hero {
    background-color: #020617;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ah-stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.ah-stat-box:hover {
    transform: translateY(-5px);
    background: rgba(20,184,166,0.05);
    border-color: rgba(20,184,166,0.2);
}
.ah-stat-box img {
    margin-bottom: 15px;
    opacity: 0.8;
}
.ah-stat-box h3 {
    font-size: 2rem;
    color: #fff;
    margin: 0 0 5px;
}
.ah-stat-box p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}
.about-hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(20,184,166,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.8;
}
.about-hero-glass-card {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: rgba(2,6,23,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(20,184,166,0.3);
    border-bottom: none;
    border-right: none;
    padding: 25px 35px;
    border-top-left-radius: 20px;
}
.about-hero-glass-card h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}
.about-hero-glass-card p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Vertical Timeline */
.about-journey {
    background-color: #ffffff;
}
.vertical-timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0;
}
.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(20,184,166,0.3);
}
.vt-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}
.vt-item:last-child {
    margin-bottom: 0;
}
.vt-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
}
.vt-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}
.vt-icon {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #fff, 0 5px 15px rgba(20,184,166,0.2);
    z-index: 2;
}
.vt-item:nth-child(odd) .vt-icon {
    right: -20px;
    left: auto;
}
.vt-item:nth-child(even) .vt-icon {
    left: -20px;
    right: auto;
}
.vt-content {
    background: #f8fafc;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
}
.vt-item:nth-child(odd) .vt-content {
    border-right: 4px solid var(--color-accent);
    text-align: right;
}
.vt-item:nth-child(even) .vt-content {
    border-left: 4px solid var(--color-accent);
    text-align: left;
}

@media (max-width: 768px) {
    .vertical-timeline::before {
        left: 20px;
        transform: none;
    }
    .vt-item {
        width: 100%;
    }
    .vt-item:nth-child(odd), .vt-item:nth-child(even) {
        left: 0;
        padding-left: 50px;
        padding-right: 0;
    }
    .vt-item:nth-child(odd) .vt-icon, .vt-item:nth-child(even) .vt-icon {
        left: 0;
        right: auto;
    }
    .vt-item:nth-child(odd) .vt-content, .vt-item:nth-child(even) .vt-content {
        border-left: 4px solid var(--color-accent);
        border-right: none;
        text-align: left;
    }
}

.vt-content h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.vt-content h5 {
    color: #1e293b;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.vt-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* About Mission */
.about-mission {
    background-color: #f8fafc;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.am-left {
    padding-top: 40px;
}
.am-title {
    font-size: 2.2rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.am-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
.am-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.am-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #334155;
    font-weight: 500;
}
.am-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: -40px;
    z-index: 2;
}
.am-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.am-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(20,184,166,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(20,184,166,0.4);
    transition: transform 0.3s ease;
}
.am-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.am-quote {
    background: #fff;
    padding: 50px 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}
.am-quote p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.am-quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.1;
}

/* About Values */
.about-values {
    background-color: #ffffff;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.vc-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-card h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.value-card p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Stats Bottom Band */
.about-stats-band {
    background-color: #020617;
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.asb-left h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.3;
}
.asb-right {
    display: flex;
    gap: 40px;
}
.asb-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}
.asb-icon {
    width: 45px;
    height: 45px;
    background: rgba(20,184,166,0.1);
    border: 1px solid rgba(20,184,166,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.asb-stat h4 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 2px;
}
.asb-stat p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Overrides for About Page */
@media (max-width: 1024px) {
    .about-hero-container, .about-mission-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-stats-band {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .asb-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .ht-nodes {
        flex-direction: column;
        gap: 40px;
    }
    .ht-line {
        display: none;
    }
    .ht-node {
        width: 100%;
    }
    .ht-dot {
        display: none;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-hero-stats {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}