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

:root {
    --primary: #2d9e4a;
    --dark-bg: #1a1a1a;
    --dark-secondary: #2d3748;
    --light-bg: #f7f9fc;
    --text-dark: #1a202c;
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    --accent: #667eea;
    --color-primary: #4f46e5;
    --color-secondary: #8b5cf6;
    --color-accent: #10b981;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-400: #9ca3af;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    --box-shadow-md:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --box-shadow-lg:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --box-shadow-primary-md:
        0 4px 6px -1px rgba(45, 158, 74, 1), 0 2px 4px -2px rgba(45, 158, 74, 1);
    --box-shadow-primary-lg:
        0 10px 15px -3px rgba(45, 158, 74, 1),
        0 4px 6px -4px rgba(45, 158, 74, 1);
}

body {
    font-family:
        -apple-system, "Bricolage Grotesque", BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background: white;
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

header .top-nav {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.logo img {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    height: 60px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* --- Navigation Bar (L1) --- */
/* --- Navigation Bar (L1) --- */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--box-shadow-md);
    z-index: 40;
    padding: 12px;
    /* height: 4rem; */
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.025em;
    text-decoration: none;
}

/* Shared Link Style */
.nav-link {
    padding: 0.75rem 1rem;
    display: flex;
    font-weight: 500;
    color: var(--color-gray-700);
    transition:
        color 0.2s,
        background-color 0.2s;
    border-radius: 0.5rem;
    text-decoration: none;
    align-items: center;
    gap: 7px;
}

.nav-link:hover {
    color: var(--color-primary);
    background-color: var(--color-gray-100);
}

/* Icon Styling */
.svg-icon {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
}

.svg-icon-gray {
    color: var(--color-gray-500);
}

.svg-icon-primary {
    color: var(--color-primary);
}

.svg-icon-accent {
    color: var(--color-accent);
}

/* General Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    box-shadow: var(--box-shadow-md);
    color: #ffffff;
    background-color: var(--color-primary);
    transition: background-color 0.15s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: color-mix(in srgb, var(--color-primary) 90%, black);
}

.cta-action {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border: 1px solid transparent;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #ffffff;
    background-color: var(--color-secondary);
    transition: background-color 0.15s;
    text-decoration: none;
}

.cta-action:hover {
    background-color: color-mix(in srgb, var(--color-secondary) 90%, black);
}

.cta-small-primary {
    background-color: var(--color-primary);
}

.cta-small-primary:hover {
    background-color: color-mix(in srgb, var(--color-primary) 90%, black);
}

.l2-dropdown
    .l2-content-wrapper
    .l2-item:nth-child(3)
    .l3-dropdown
    h4:last-child() {
    border: 0;
    margin: 0;
    padding: 0;
}
video#banner-videos {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 11rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
/* =======================================================
  1. DESKTOP (LARGE SCREENS) - HOVER LOGIC
  ======================================================= */
@media (min-width: 1024px) {
    .actions-and-mobile {
        display: none !important;
    }

    .l1-menu-desktop > ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 0.5rem;
    }

    /* --- L1 Dropdown Logic --- */
    .l1-item {
        position: relative;
    }

    .l1-item:hover .l2-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .l1-item .chevron {
        transition: transform 0.2s;
    }

    .l1-item:hover .chevron {
        transform: rotate(180deg);
    }

    /* --- Level 2 Dropdown (L2) Container --- */
    .l2-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 50;
        min-width: 14rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        background-color: transparent;
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease-out;
        transform-origin: top;
    }

    .l2-content-wrapper {
        background-color: #ffffff;
        padding: 0 0.5rem;
        border-radius: 0.75rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        list-style-type: none;
    }

    /* --- L2 Dropdown Logic --- */
    .l2-item {
        position: relative;
    }

    .l2-item:hover .l3-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    /* --- Level 3 Dropdown (L3) Container --- */
    .l3-dropdown {
        position: absolute;
        top: -48px;
        /* Alignment fix for seamless hover */
        left: calc(100% - 1px);
        z-index: 60;
        width: 32rem;
        padding: 1.5rem;
        background-color: var(--color-gray-50);
        border-radius: 0.75rem;
        box-shadow: var(--box-shadow-lg);
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 0.2s ease-out,
            transform 0.2s ease-out;
        transform: translateX(10px);
        display: block !important;
        /* Ensure desktop shows it when hovered */
    }

    /* Hide mobile elements on desktop */
    .mobile-menu-btn,
    .mobile-menu-container {
        display: none !important;
    }

    /* L3 content flex for desktop */
    .l3-content-flex {
        flex-direction: row;
    }
}

/* =======================================================
           2. MOBILE (SMALL SCREENS) - CLICK/TOUCH LOGIC
           ======================================================= */
@media (max-width: 1023px) {
    .hero {
        padding: 2rem 2rem;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 3vw, 3rem);
    }
    video#banner-videos {
        top: 50px;
    }
    .actions-and-mobile {
        display: block !important;
    }

    .l1-menu-desktop,
    .cta-button-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 0.375rem;
        color: var(--color-gray-700);
        transition:
            color 0.15s,
            background-color 0.15s;
        border: 1px solid transparent;
    }

    .mobile-menu-btn:hover {
        background-color: var(--color-gray-100);
    }

    /* Full Screen Mobile Menu Overlay */
    .mobile-menu-container {
        position: fixed;
        top: 4rem;
        /* Below the navbar */
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        z-index: 30;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
    }

    .mobile-menu-container.open {
        transform: translateX(0);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-list {
        list-style: none;
        padding: 1rem 0;
        margin: 0;
    }

    .mobile-nav-list > li {
        border-bottom: 1px solid var(--color-gray-100);
    }

    /* L1 Links */
    .mobile-nav-list .nav-link {
        padding: 1rem 1rem;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
    }

    /* L2 and L3 Dropdowns must be static and collapse/expand vertically */
    .l2-dropdown,
    .l3-dropdown {
        position: static !important;
        width: auto !important;
        max-height: 0;
        /* Hidden by default */
        overflow: hidden;
        padding: 0;
        border: none;
        box-shadow: none;
        transition: max-height 0.3s ease-in-out;
        background-color: transparent !important;
        opacity: 1 !important;
        /* No opacity transition on mobile */
        transform: none !important;
        pointer-events: auto !important;
    }

    .l2-dropdown.open,
    .l3-dropdown.open {
        max-height: 1000px;
        /* Increased value to accommodate L3 content + CTA block */
        padding: 0.5rem 0;
    }

    /* L2 Menu Styling within L1 */
    .l2-content-wrapper {
        background-color: var(--color-gray-50);
        padding: 0.5rem 0.5rem 0 0.5rem;
        border-radius: 0;
        box-shadow: none;
    }

    .l2-content-wrapper .nav-link {
        padding-left: 1.5rem;
    }

    /* L3 Menu Styling within L2 */
    .l3-content-flex {
        flex-direction: column;
        /* Stack L3 content vertically */
        gap: 1rem;
        padding: 1rem;
        background-color: #ffffff;
        border-radius: 0.5rem;
        margin: 0 0.5rem 0.5rem 0.5rem;
        box-shadow: var(--box-shadow-md);
    }

    .l3-dropdown h4 {
        padding-bottom: 0.5rem;
        margin-top: 0;
    }

    .l3-content-flex > div:first-child,
    .l3-content-flex > div:last-child {
        width: 100% !important;
    }

    .l3-content-flex > div:last-child {
        padding: 1rem;
    }

    /* Rotate arrow icon for dropdown state */
    .dropdown-toggle-icon.rotated {
        transform: rotate(90deg);
    }

    /* Mobile CTA button at the bottom */
    .mobile-cta-wrapper {
        padding: 1rem;
        text-align: center;
        border-top: 1px solid var(--color-gray-100);
    }

    .mobile-cta-wrapper .cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

/* Global L3 Content Styles (used by both desktop and mobile, adapted by media queries) */
.l3-dropdown h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-gray-200);
    padding-bottom: 0rem;
}

.l3-content-flex {
    display: flex;
    gap: 1rem;
}

.l3-content-flex > div:first-child {
    width: 66.666%;
}

.l3-content-flex > div:last-child {
    width: 33.333%;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid var(--color-gray-100);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Shared L3 text styles */
.l3-content-flex p {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.l3-content-flex ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l3-content-flex ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.l3-content-flex ul li svg {
    color: var(--color-accent);
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.l3-content-flex ul li span {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* Demonstration Content Styling */
/* main {
    padding-top: 3rem;
    padding-bottom: 3rem;
} */

.demo-card {
    text-align: center;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--box-shadow-lg);
}

.demo-card h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.demo-card p {
    color: var(--color-gray-600);
}

.placeholder-content {
    margin-top: 2rem;
    height: 24rem;
    background-color: var(--color-gray-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
}

/* navbar ends */

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #238e3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 158, 74, 0.3);
}

/* Hero Section */

.hero-content h1 {
    /* font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem; */
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-button {
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: fit-content;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-button:hover {
    background: #238e3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(45, 158, 74, 0.3);
}

.hero-image img.cube {
    position: relative;
    height: 600px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(34px 47px 88px #fa9);
}

.hero .image-top {
    position: absolute;
    left: 37%;
    top: 37px;
    z-index: 0;
        opacity: 0.3;

}

.hero .image-below {
    position: absolute;
    z-index: -1;
    bottom: -143px;
        opacity: 0.3;

}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Decorative wireframe */
.wireframe {
    position: absolute;
    left: -50px;
    top: 50px;
    width: 200px;
    opacity: 0.1;
    animation: fadeInLeft 1s ease-out 0.6s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 0.1;
        transform: translateX(0);
    }
}

/* Journey Section */
.journey {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
    z-index: 999999;
    position: relative;
}

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

.journey-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.journey-image {
    position: relative;
    /* animation: fadeInLeft 0.8s ease-out 0.2s both; */
}

.journey-image img {
    width: 100%;
    border-radius: 8px;
}

.journey-image::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    bottom: -30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.journey-content {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.mission,
.vision {
    margin-bottom: 2rem;
}

.mission h3,
.vision h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.mission p,
.vision p {
    color: #ccc;
    line-height: 1.8;
}

/* Principles Section */
.principles {
    padding: 4rem 2rem;
    background: white;
    position: relative;
}

.principles img.principles-bg-gradient {
    position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
}

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    /* Removing the font size so that the global.css h1, h2, h3 styles can take over */
    /* font-size: 2rem; */
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease-out;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle-card {
    background: linear-gradient(135deg, #f0f9f5 0%, #e8f5f0 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out both;
    border: 2px solid transparent;
}

.principle-card:nth-child(1) {
    animation-delay: 0.1s;
}

.principle-card:nth-child(2) {
    animation-delay: 0.2s;
}

.principle-card:nth-child(3) {
    animation-delay: 0.3s;
}

.principle-card:nth-child(4) {
    animation-delay: 0.4s;
}

.principle-card:nth-child(5) {
    animation-delay: 0.5s;
}

.principle-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

.principle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(45, 158, 74, 0.2);
    border-color: var(--primary);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: rotate(-10deg) scale(1.1);
}

.principle-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.principle-description {
    font-size: 0.85rem;
    color: #666;
}

/* Achievements Section */
.achievements {
    background: #185d6b;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out;
}

/* --- ACHIEVEMENTS SECTION --- */
.achievements {
    padding: 80px 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    position: relative;
}

.achievements-container {
    max-width: 1100px;
    margin: 0 auto;
}

.achievements-title {
    color: #fff;
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Decorative line under title */
.achievements-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin: 10px auto 0;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

/* Green plus sign suffix */
.stat-number::after {
    content: "+";
    color: #fff;
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.8rem;
    }

    .achievements-title {
        font-size: 1.8rem;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    animation: fadeInUp 0.8s ease-out both;
}

.stat:nth-child(1) {
    animation-delay: 0.2s;
}

.stat:nth-child(2) {
    animation-delay: 0.4s;
}

.stat:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    font-size: 0.95rem;
    color: #bbb;
}

/* Clients Section */
.clients {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

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

.clients-title {
    /* Refer to the global.css for the font size */
    /* font-size: 1.5rem; */
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
}

/* .client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
} */

.client-logo {
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.client-logo:hover {
    color: var(--primary);
    transform: scale(1.15);
}

/* Offerings Section */
.offerings {
    /* background: linear-gradient(135deg, #f5f7ff 0%, #f0e5ff 100%); */
    padding: 4rem 2rem;
}

.offerings-container {
    max-width: 1200px;
    margin: 0 auto;
}

.offerings-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out;
}

.offerings-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: #f0f2fe;
    padding: 2rem;
}

.offerings-grid::before {
    content: "";
    position: absolute;
    height: 89%;
    width: 1px;
    z-index: 9999;
    background: black;
    left: 33%;
    top: 6%;
}

.offerings-grid::after {
    content: "";
    position: absolute;
    height: 89%;
    width: 1px;
    z-index: 9999;
    background: black;
    right: 33%;
    top: 6%;
}

.offering-card {
    padding: 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: slideInUp 0.6s ease-out both;
}

.offering-card:nth-child(1) {
    animation-delay: 0.1s;
}

.offering-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offering-card:nth-child(3) {
    animation-delay: 0.3s;
}

.offering-card:nth-child(4) {
    animation-delay: 0.4s;
}

.offering-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.offering-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border-left-color: #ffb700;
}

.offering-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.offering-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: green;
    padding: 12px;
    border-radius: 36px;
    color: white;
}

.view-all:hover {
    gap: 0.8rem;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.view-all:hover .arrow {
    animation: arrowFloat 0.6s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 2rem;
}

.footer.logo {
    width: fit-content;
    border-radius: 12px;
    margin-bottom: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    display: flex;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

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

.social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(45, 158, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
#mission-video {
    /* height: 400px; */
    max-width: 100%;
}
@media (max-width: 1623px) {
    .hero {
        padding: 12rem 2rem;
    }
    video#banner-videos {
        top: 85px;
    }
}
@media (max-width: 1023px) {
    .l1-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .l1-menu-desktop {
        display: none;
    }

    .l1-menu-mobile {
        display: block;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        /* display: none; */
    }

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

    .hero h1 {
        font-size: 1.8rem;
    }

    .journey-container {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero .image-top {
        left: 0%;
    }

    .hero .image-below {
        bottom: unset;
        left: 70%;
    }

    .hero-image img.cube {
        height: 300px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 13px;
    }

    .principle-card {
        padding: 1rem;
    }

    .offerings-grid::before {
        content: unset;
    }

    .offerings-grid::after {
        content: unset;
    }

    .offering-card {
        padding: 0rem;
        border-radius: 2px;
        cursor: pointer;
        border-bottom: 1px solid grey;
        transition: all 0.4s ease;
        animation: slideInUp 0.6s ease-out both;
    }

    .offerings-grid .offering-card:nth-child(6) {
        border: unset;
    }

    .client-logo img {
        filter: unset;
    }

    .offerings {
        padding: 4rem 0rem;
    }
    .principles img.principles-bg-gradient {
        height: 100%;
    }
}

@media (max-width: 578px) {
    nav {
        display: unset;
    }
    .hero h1 {
        font-size: 1.1rem;
    }
    .hero-content p {
        margin-bottom: 1rem;
        font-size: 0.8rem;
    }
    .hero-button {
      padding: 0.6rem 1rem;
      font-size: 0.7rem;
    }
    .solutions.hero.banner .bottom-image img {
        width: 100%;
    }

    .navbar {
        position: static;
        display: flex;
    }

    canvas {
        top: 17%;
        right: -8%;
        height: 620px !important;
        width: 334px !important;
        object-fit: contain;
        overflow: hidden;
    }

    .hero .image-top {
        z-index: -1;
    }

    .principles {
        padding: 4rem 0rem;
    }

    .hero .image-below {
        display: none;
    }
    .hero {
        padding: 2rem 2rem 20rem;
    }
    video#banner-videos {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: -1;
        top: unset;
    }
    .client-logo img {
        height: 4rem;
    }
    .clients-section.page .client-logos .client-logo img {
        height: 5rem;
    }
    .hero .image-top {
        left: -15%;
    }
    @supports (-webkit-hyphens:none) {
        video#banner-videos {
           bottom : unset;
           top : unset;
           display: flex;
           justify-content: initial;
           align-items: unset;
           height : 100%;
        }
    }
}
