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

body {
    font-family: 'Rethink Sans';
    line-height: 1.6;
    color: #333;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
    padding: 0 35px;
}

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info span:first-child {
    color: #B9F8B1;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info span:nth-child(2) {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
}

.contact-info i {
    margin-right: 5px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* Our Journey Section */
/* Our Journey Section */
.journey-section {
    background-image: url('../images/background2.png'), linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    /* Optional: ensures good blending if image is not transparent */
    /* Fallback/Blend color */
    padding: 20px 0;
    color: white;
    position: relative;
    margin: 10px auto;
    overflow: hidden;
    /* Ensure rounded corners clip content */
}

.journey-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.journey-left-block {
    flex: 1.5;
}

.acco-tick-brand {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Rethink Sans';
    margin-bottom: 5px;
}

.brand-text-white {
    color: white;
}

.brand-plus {
    color: white;
}

.brand-text-teal {
    color: #1CB592;
}

.journey-badges {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
}

.badge-business {
    background-color: white;
    color: #006953;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 15px;
    text-transform: uppercase;
    font-family: 'Rethink Sans';
    letter-spacing: 0.5px;
}

.badge-consultants {
    background-color: #1CB592;
    color: #013026;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 15px;
    text-transform: uppercase;
    font-family: 'Rethink Sans';
    letter-spacing: 0.5px;
}

.journey-heading {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Rethink Sans';
}

.journey-subtext {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
    font-family: 'DM Sans';
}

.journey-right-block {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Changed from flex-end to center */
    justify-content: center;
}

.journey-logo-brand {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
}

.platform-badge-wrapper {
    text-align: center;
}

.badge-platform {
    background-color: white;
    color: #0B5546;
    font-size: 11px;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    font-family: 'Rethink Sans';
    letter-spacing: 1px;
    border-radius: 5px;
}

/* Responsive Journey */
@media (max-width: 992px) {
    .journey-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 60px;
    }

    .journey-right-block {
        align-items: flex-start;
        width: 100%;
    }

    .journey-logo-brand {
        margin-bottom: 20px;
        height: 50px;
    }

    .platform-badge-wrapper {
        text-align: left;
    }

    .journey-heading {
        font-size: 32px;
    }
}

/* Growth Scroll Expand Wrapper */
.growth-scroll-wrapper {
    height: auto;
    position: relative;
    overflow: visible;
}

/* Growth Section */
.growth-section {
    position: relative;
    height: auto;
    display: flex;
    align-items: flex-start;
    background-color: white;
    overflow: visible;
    padding: 40px 0;
}

.growth-section .container {
    width: 100%;
}

.growth-grid {
    display: grid;
    grid-template-columns: 40fr 60fr;
    /* 40% content, 60% image */
    gap: 60px;
    align-items: start;
}

.growth-right {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding-left: 15%;
}

.growth-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-left .section-heading {
    margin-bottom: 40px;
    font-size: 36px;
}

.growth-steps {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    gap: 30px;
}

/* Growth Step Base Styles */
.growth-step {
    display: flex;
    gap: 20px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Hidden state for steps 4+ (applied via JS) */
.growth-step.hidden-step {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
}

/* Revealed state */
.growth-step.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slideInLeft 0.7s ease-out;
}

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

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

/* Separator line at bottom of each step - only under text */
.growth-step:not(:last-child) .step-content {
    border-bottom: 0.8px solid #D9D9D9;
    padding-bottom: 20px;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Circle icons? Screenshot has outline icons. */
    /* border: 1px solid #1CB592; */
    color: #1CB592;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 24px; */
    background: #fff;
    z-index: 1;
    position: relative;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
}

/* .step-icon i removed as we are using images */
.step-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.step-content h3 {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #393737;
    margin-bottom: 8px;
}

.step-content p {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #888787;
    max-width: 500px;
}

.growth-image-wrapper,
.growth-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.growth-image-wrapper img,
.growth-img-wrapper img {
    max-width: 700px;
    height: auto;
    max-height: 700px;
    object-fit: contain;
}

.growth-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.growth-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.growth-logo-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-center-logo {
    width: 180px;
    height: auto;
}

/* Responsive Growth */
@media (max-width: 992px) {
    .growth-section {
        position: relative;
        /* Disable sticky */
        height: auto;
        /* Allow natural height */
        padding: 60px 0;
    }

    .growth-scroll-wrapper {
        height: auto;
        /* Remove extra scroll space */
    }

    .growth-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .growth-image-wrapper,
    .growth-img-wrapper {
        order: -1;
        margin-bottom: 30px;
    }

    .growth-image-wrapper img,
    .growth-img-wrapper img {
        max-width: 100%;
        max-height: 400px;
    }

    .growth-center-logo {
        width: 100px;
    }

    @media (max-width: 576px) {
        .growth-center-logo {
            width: 70px;
        }

        .growth-image-wrapper img,
        .growth-img-wrapper img {
            max-height: 250px;
        }
    }

    .growth-right {
        position: relative;
        top: auto;
    }

    .growth-left .section-heading {
        font-size: 28px;
        text-align: center;
    }

    /* Override steps to show them all */
    .growth-step {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .step-content h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .step-content p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .growth-section {
        padding: 40px 0;
    }

    .growth-grid {
        gap: 30px;
    }

    .growth-image-wrapper img,
    .growth-img-wrapper img {
        max-width: 100%;
        max-height: 300px;
    }

    .growth-left .section-heading {
        font-size: 24px;
    }

    .growth-step {
        gap: 15px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon img {
        width: 20px;
        height: 20px;
    }

    .step-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
    }

    .growth-step:not(:last-child) .step-content {
        padding-bottom: 15px;
    }
}


/* Header */
.main-header {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    box-shadow: 0px 0px 25px 0px #0000000F;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;
}

.logo img {
    height: 35px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #FDFFFE;
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0%;
    transition: color 0.3s;
}

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

.nav-item-dropdown {
    /* position: relative; removed to allow menu to align to header */
    height: 100%;
    display: flex;
    align-items: center;
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px 0;
    /* Vertical padding */
    border-top: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0;
}

/* Hover State */
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Arrow rotation */
.nav-item-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Grid Layout */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

/* Mega Card Styling */
.mega-card {
    background-color: #16A34A26;
    border: 1px solid #16A34A26;
    border-radius: 12px;
    padding: 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 12px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    height: 100%;
    /* color: white; removed for light bg */
}

.mega-card:hover {
    transform: translateY(-3px);
    background-color: #16A34A40;
    /* Slightly darker/more opaque on hover */
    /* color: white; removed */
}

.mega-icon {
    /* Removed font props */
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
}

.mega-icon img {
    width: 38px;
    /* Slightly larger than previous icon */
    height: 38px;
    object-fit: contain;
    display: block;
}

/* Specific icon adjustments if needed */
.mega-icon i {
    display: block;
}

.mega-text {
    display: contents;
}

.mega-brand {
    font-family: 'Rethink Sans';
    font-weight: 300;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #666;
    display: block;
    margin-bottom: 2px;
    vertical-align: middle;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

.mega-card h3 {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 4px;
    vertical-align: middle;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

.mega-card p {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #555;
    margin: 0;
    vertical-align: middle;
    grid-column: 1 / 3;
    grid-row: 3;
    margin-top: 6px;
}

.btn-login {
    background-color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-block;
    /* Ensure proper sizing */
}

.btn-login span {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: black;
    /* padding: 80px 0; */
    overflow: hidden;
    min-height: 600px;
}

.carousel-container {
    position: relative;
    min-height: 600px;
    z-index: 1;
}

.carousel-slide {
    display: none;
    /* padding: 100px 0; */
}

.carousel-slide.active {
    display: block;
}

/* First slide specific padding */
#slide-1 {
    padding: 60px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 450px;
}

.hero-text {
    flex: 1;
}

.badge-sub {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-text .badge-business {
    background-color: #1CB394;
    color: white;
}

.hero-text .badge-consultant {
    background-color: black;
    color: white;
}

.hero-text h1,
.hero-text h2 {
    font-family: 'Rethink Sans';
    font-weight: 600;
    font-style: normal;
    font-size: 50.8px;
    line-height: 55.71px;
    letter-spacing: -0.28px;
    vertical-align: middle;
    margin-bottom: 20px;
    color: #000724;
    ;
}

.hero-text p:nth-of-type(1) {
    font-family: 'DM Sans';
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #50505E;
    margin-bottom: 20px;
}

.hero-text p:nth-of-type(2) {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 15.4px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #50505E;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s;
    min-height: 56px;
    min-width: 163px;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
}

.hero-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Carousel Navigation */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #0B5546;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s ease;
    opacity: 0;
}

.hero-section:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Features Banner */
.features-banner {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 10px 0;
}

.banner-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.banner-item {
    font-size: 14px;
    color: white;
    font-weight: 300;
}

.banner-item-head {
    font-size: 28px;
    color: white;
    font-weight: 700;
}


/* Unified Platform Styles Removed */

/* Services Grid */
.services-grid-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
    transition: transform 0.3s;
    background: #fff;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    /* Fixed height for consistency */
    display: block;
    object-fit: cover;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    font-weight: 600;
    color: white;
    font-size: 1.05rem;
    text-align: left;
    /* Aligned left as per screenshot */
    padding-left: 20px;
}

.card-label.green {
    background-color: #1CB592;
}

.card-label.black {
    background-color: #000;
}

/* Business Needs Section */
.business-needs-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    /* Matching reference image */
    color: #fff;
}

.white-text {
    color: #fff !important;
    opacity: 0.9;
}

.needs-header {
    margin-bottom: 40px;
}

.needs-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.needs-toggle {
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
}

.needs-btn {
    background: transparent;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #1CB394;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.needs-btn.active {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: #fff;
}

.needs-main-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Rethink Sans';
    font-weight: 600;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.needs-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    display: flex;
    flex-direction: column;
}

.needs-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.needs-card-body {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.needs-card-body h3 {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #393737;
    margin-bottom: 15px;
}

.needs-card-body ul {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.needs-card-body ul li {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #888787;
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.needs-card-body ul li img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    object-fit: contain;
}

.needs-card-body ul li i {
    color: #1CB592;
    margin-top: 3px;
    font-weight: 900;
}

.btn-discover {
    display: inline-block;
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    border-radius: 25px;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
    max-width: 50%;
}

.btn-discover:hover {
    background: #0B5546;
}

/* Responsive Needs Grid */
@media (max-width: 992px) {
    .needs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.industry-section {
    padding: 80px 0;
    background-color: #ffff;
}

.section-sub-heading {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 18px;
    line-height: 21.6px;
    letter-spacing: 0;
    /* text-align: center; */
    vertical-align: middle;
    color: #393737;
    margin-bottom: 15px;
    /* Let parent handle spacing or use specifically */
    display: inline-block;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #F9F9F9;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
}

.section-badge .section-sub-heading {
    margin-bottom: 0;
}

.badge-dot {
    height: 6px;
    width: 6px;
    background: linear-gradient(303.93deg, #44C26F 15.13%, #1CB394 84.24%);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.industry-heading {
    font-size: 32px;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #333;
    line-height: 1.4;
    font-family: 'Rethink Sans';
    font-weight: 600;
}

.industry-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1250px;
    margin: 0 auto;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #c2edda;
    /* Light green border */
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #fff;
    cursor: default;
    transition: all 0.3s ease;
}

.industry-pill i {
    color: #1CB592;
    /* Icon color */
    font-size: 1.1em;
}

/* Ensure subsequent sections have background to cover sticky content */
.trusted-section,
.cta-section,
.faq-section,
.main-footer {
    position: relative;
    z-index: 20;
    /* Higher than sticky section */
    background-color: #fff;
    /* or their respective colors if different */
}

.trusted-section {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    /* ... existing props ... */
    padding: 20px 0;
}

.faq-section {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    /* ... existing props ... */
}

.faq-section .section-heading {
    font-family: 'Rethink Sans';
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    color: #FFFFFF;
    vertical-align: middle;
}



.main-footer {
    background-color: #1a1a1a;
    /* ... existing props ... */
}

.industry-pill:hover {
    background-color: #f0fdf4;
    border-color: #1CB592;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 181, 146, 0.15);
}

/* =========================================
   NEW ECOSYSTEM SECTION (REBUILD)
   ========================================= */

.new-eco-wrapper {
    position: relative;
    overflow: visible;
}

.new-eco-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.new-eco-section .container {
    width: 100%;
    /* Ensure full width usage */
}

.new-eco-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    /* Strict 60/40 Split */
    gap: 40px;
    align-items: start;
    position: relative;
}

/* --- Left Column (Sticky Images) --- */
.new-eco-left {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.new-eco-left .section-heading {
    font-family: 'Rethink Sans';
    font-weight: 500;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.new-eco-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.new-eco-img-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.new-eco-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.new-eco-row-top img,
.new-eco-row-bottom img {
    width: 100%;
    height: 50%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}


/* --- Right Column (Scrolling Features) --- */
.new-eco-right {
    display: flex;
    flex-direction: column;
}

.new-eco-header-right {
    margin-bottom: 40px;
    /* align with sticky top */
}

.new-eco-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 100px;
    /* Extra space at bottom */
    min-height: 1000px;
    /* Ensure scroll space */
}

/* --- Feature Items & Reveal Animation --- */
.new-eco-item {
    display: flex;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.new-eco-item.hidden {
    opacity: 0;
    transform: translateY(30px);
}

.new-eco-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .new-eco-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 60px;
    }

    .new-eco-left {
        position: relative;
        /* Disable sticky */
        top: auto;
        padding-right: 0;
    }

    .new-eco-img-container {
        max-height: none;
    }

    .new-eco-list {
        min-height: auto;
        padding-bottom: 0;
    }

    .new-eco-item.hidden {
        opacity: 1 !important;
        transform: none !important;
    }
}

.main-footer {
    background-color: #011F1C;
    /* Dark Deep Green */
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.footer-block h3 {
    margin-bottom: 20px;
    font-family: 'DM Sans';
    font-weight: 700;
    font-style: bold;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.brand-desc {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 20px;
    color: #99A8AB;
    opacity: 1;
}

.footer-socials {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #1CB592;
    transform: translateY(-3px);
}

.small-label {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.highlight-number {
    font-size: 20px;
    font-weight: 700;
    color: #1CB592;
    margin-bottom: 20px;
}

.email-link {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-top: 10px;
}


/* --- Image Reveal Animation (Rebuild) --- */
.new-eco-img-grid img {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.new-eco-img-grid img.revealed {
    opacity: 1;
    transform: scale(1);
}

.new-eco-img-grid img.hidden-img {
    opacity: 1;
    /* Force visible */
    transform: scale(1);
}

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.footer-block ul li a:hover {
    color: #1CB592;
    padding-left: 5px;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

.highlight-contact {
    color: #B9F8B1 !important;
}

.copyright-brand {
    color: #B9F8B1;
}

.legal-links a:hover {
    color: white;
}

.separator {
    color: #666;
}

/* Trusted By Section */
.trusted-section {
    padding: 10px 0;
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: white;
    overflow: hidden;
}

.trusted-heading {
    font-size: 32px;
    font-family: 'Rethink Sans';
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    /* Space between logos */
    animation: scroll 70s linear infinite;
}

.marquee-track img {
    height: 40px;
    /* Adjust based on logo aspect ratios */
    width: auto;
    filter: brightness(0) invert(1);
    /* Make logos white */
    opacity: 0.9;
    transition: opacity 0.3s;
}

.marquee-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
        /* Scroll 1/3rd (one set) */
    }
}

/* Responsive Logo size */
@media (max-width: 768px) {
    .marquee-track img {
        height: 30px;
    }

    .marquee-track {
        gap: 50px;
    }
}

/* CTA Section */
.cta-section {
    padding: 30px 0;
    background-color: #f9f9f9;
    /* White or light grey outer bg */
}

.cta-section .container {
    max-width: 1300px !important;
    /* Increase width override */
}

.cta-card {
    background-color: #00252C;
    /* Very dark teal/black */
    border-radius: 20px;
    padding: 10px 5px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-image: url('../images/ctashape.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    /* Or auto, depending on image size */
}

.cta-card h2 {
    font-size: 36px;
    font-family: 'Rethink Sans';
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0%;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 16px;
    font-family: 'DM Sans';
    font-weight: 300;
    line-height: 26px;
    color: #aaa;
    margin-bottom: 40px;
    letter-spacing: 0%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-phone {
    font-family: 'DM Sans';
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: white;
    background: linear-gradient(303.93deg, #44C26F 15.13%, #1CB394 84.24%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-email {
    background-color: white;
    color: #333;
}

.btn-email i {
    color: #1CB394;
}

.btn-cta i {
    font-size: 18px;
}

/* Adjust background shape responsiveness if needed */

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-card {
        padding: 40px 20px;
        background-size: cover;
        /* Cover on mobile maybe? */
    }

    .cta-card h2 {
        font-size: 28px;
    }
}

/* FAQ Section */
.faq-section {
    display: flex;
    background-color: #0B5546;
    /* Matching the green theme */
    color: white;
}

.faq-container {
    display: flex;
    width: 100%;
    /* max-width: 1440px; */
    /* Full width split usually */
    margin: 0 auto;
}

.faq-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #0d6d5a;
    /* Slightly different shade or gradient if needed, picking a solid based on screenshot */
    background: linear-gradient(180deg, #0B5546 0%, #0F9A7D 100%);
}

.faq-left .section-sub-heading {
    opacity: 0.8;
    color: white;
}

.faq-left .section-heading {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #91D089;
    border-radius: 50px;
    /* Pill shape for items */
    padding: 20px 30px;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #91D089;
    border-radius: 20px;
    /* Rounded rect when open? Or keep pill. checking screenshot, looks slightly less round when open maybe, or just fills space */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-family: 'Rethink Sans';
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
    padding-right: 20px;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    background: white;
    color: #0B5546;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Estimate */
    margin-top: 15px;
    opacity: 1;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-right {
    flex: 1;
    position: relative;
}

.faq-image-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.faq-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    /* Or fixed width */
    background-color: #011f1ced;
    /* Dark teal with opacity */
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    max-width: 400px;
}

.faq-overlay p {
    margin-bottom: 10px;
    font-size: 15px;
    font-family: 'DM Sans';
    font-weight: 300;
}

.faq-overlay a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-family: 'DM Sans';

}

/* Responsive FAQ */
@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-right {
        height: 400px;
        /* Fixed height for image on mobile */
    }

    .faq-left {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .hero-content {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Unified Section Redesign (Scrolling Background) */
.unified-section-redesign {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #0B5546;
    /* Dark Green Background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    /* Ensure enough height */
}


.unified-scroll-background {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg);
    /* Slight angle */
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Space between rows */
    opacity: 0.15;
    /* Low opacity for background effect */
    pointer-events: none;
}

.scroll-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.scroll-track {
    display: flex;
    gap: 40px;
    /* Space between images */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* =========================================
   About Us Redesign
   ========================================= */

/* Timeline Banner */
.about-timeline {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 30px 0;
    color: white;
}

.timeline-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-year {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

.timeline-desc {
    font-family: 'Inter';
    font-size: 13px;
    line-height: 1.3;
    max-width: 150px;
    opacity: 0.9;
}

/* About Story Section (Redesign) */
.about-story-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Swap Order: Text first (Left), Image second (Right) */
.about-story-left {
    flex: 1;
    order: 1;
}

.about-story-right {
    flex: 1;
    order: 2;
    display: flex;
    justify-content: flex-end;
}

.about-story-img-single {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    /* height: auto; */
    object-fit: cover;
}

.about-story-section .badgr-about-us {
    background-color: #F9F9F9;
    padding: 8px 16px;
    border-radius: 30px;
    width: fit-content;
}

.about-heading {
    font-family: 'DM Sans';
    font-weight: 600;
    font-style: normal;
    font-size: 47.1px;
    line-height: 57.6px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #03171D;
    margin-bottom: 25px;
}

.about-heading span {
    text-decoration: none;
    color: #0B5546;
}

.about-lead {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #59676C;
    margin-bottom: 40px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-info-card {
    background-color: #F8F9FA;
    padding: 25px;
    border-radius: 12px;
}

.about-info-card p {
    font-family: 'Inter';
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.about-contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-contact-green {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-contact-green:hover {
    background-color: #084035;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.support-details span {
    display: block;
    font-size: 12px;
    color: #666;
}

.support-details strong {
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.btn-redesign-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-redesign-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .unified-heading-redesign {
        font-size: 32px;
    }

    /* Reduce floating images visibility/size on mobile to avoid clutter */
    .float-img {
        opacity: 0.15;
        max-width: 150px;
    }

    .unified-buttons-redesign {
        flex-direction: column;
        align-items: center;
    }

    .btn-redesign-solid,
    .btn-redesign-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* =========================================
   About Hero Section
   ========================================= */
.about-hero-section {
    padding: 30px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-hero-left {
    flex: 1;
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* New Two-Column Layout */
.about-image-grid-two-col {
    display: flex;
    gap: 20px;
    position: relative;
}

.about-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    flex: 1;
}

.about-left-col .img-top-left {
    padding-top: 0;
}

.about-left-col .img-bottom-left {
    padding-left: 0;
}

.about-right-col {
    flex: 1;
    display: flex;
}

.hero-grid-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.img-top-left {
    padding-top: 40px;
    /* Stagger effect */
}

.img-top-right {
    position: relative;
}

.img-bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.img-bottom-right {
    display: flex;
    align-items: flex-start;
}

.hero-grid-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-grid-img-bottom {
    height: 180px;
}

/* Floating Trusted Card */
.about-image-grid-two-col .floating-trusted-card {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    min-width: 220px;
    /* Position just below the first image (height of img is ~220px, so 200px gives good overlap) */
    left: 50%;
    transform: translateX(-50%);
    animation: floatCardSpecific 4s ease-in-out infinite;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
}

@keyframes floatCardSpecific {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

.about-image-grid-two-col .trusted-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    max-height: 50px;
}

.about-image-grid-two-col .trusted-icon img {
    height: 40px;
    /* Adjust based on actual image aspect ratio, assuming row of avatars */
    width: auto;
}

@keyframes floatCardSpecific {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* Original rule kept for other potential usages, or can be cleaned up */
.floating-trusted-card {
    position: absolute;
    left: -100px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    /* No animation on the fallback/original to avoid conflict if mixed, or usage elsewhere */
}

@keyframes floatCard {

    /* Kept for legacy or other elements */
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes floatCardCentered {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 10px));
    }
}

.trusted-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Optional: if icon is circular or just needs sizing */
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Obsolete avatar styles removed/replaced */

.floating-trusted-card p {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    margin: 0;
}

/* Experience Stat - now in grid cell */
.exp-number {
    display: block;
    font-size: 120px;
    font-weight: 700;
    color: #1CB592;
    line-height: 0.9;
}

.plus-sign {
    color: #1CB592;
    font-size: 80px;
}

.exp-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-top: 10px;
}


/* Right Text Content */
.about-hero-right {
    flex: 1;
}

.about-hero-right h1 {
    font-family: 'DM Sans';
    font-size: 45.08px;
    font-weight: 700;
    font-style: normal;
    line-height: 56.8px;
    color: #1E3238;
    margin-bottom: 30px;
    letter-spacing: -0.9px;
    vertical-align: middle;
}

.about-hero-right .lead-text {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #16222D;
    margin-bottom: 30px;
}

.about-hero-right .desc-text-link {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 15.4px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #16222D;
    margin-bottom: 40px;
}

.about-hero-right .desc-text-link a {
    color: #16222D;
    text-decoration: none;
    font-weight: 300;
    /* Reset link styles to match para */
}

.signature-text {
    font-weight: 700;
    color: #1CB592;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-hero-left {
        width: 100%;
    }

    .floating-trusted-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }

    @keyframes floatCard {

        0%,
        100% {
            transform: translate(-50%, 0);
        }

        50% {
            transform: translate(-50%, -10px);
        }
    }

    .img-col-1,
    .img-col-2 {
        width: 45%;
    }

    .about-hero-right h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .floating-trusted-card {
        min-width: unset;
        width: 90%;
        left: 50%;
    }

    .experience-stat {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }
}

/* Vision Section */
.about-vision-section {
    background-color: #006953;
    /* Dark Green */
    color: white;
    padding: 80px 0;
}

/* Vision section - hide badge dot, white text, no background */
.about-vision-section .badge-dot {
    display: none;
}

.about-vision-section .section-badge {
    background: transparent;
    padding: 0;
}

.about-vision-section .section-sub-heading {
    color: #FFFFFF;
    background: transparent;
}

.vision-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vision-text-col {
    flex: 1;
}

.vision-img-col {
    flex: 1;
    text-align: right;
}

.vision-img {
    max-width: 100%;
    border-radius: 12px;
}

.vision-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.vision-heading {
    font-family: 'DM Sans';
    font-size: 28px;
    font-weight: 600;
    font-style: normal;
    line-height: 35 px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.vision-desc {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #FFFFFF;
    opacity: 1;
    /* Override opacity if needed or keep consistent with specific color */
    max-width: 600px;
}

/* Vision Feature Grid */
.vision-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.vision-feature-item {
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.vision-feature-item:last-child {
    border-right: none;
}

.v-feature-icon {
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.v-feature-text {
    font-family: 'DM Sans';
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.3px;
    vertical-align: middle;
    color: #FFFFFF;
}

/* Evolution Section */
.about-evolution-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.evolution-grid-top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: auto;
    height: auto;
    pointer-events: none;
}

.evolution-grid-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: auto;
    height: auto;
    pointer-events: none;
}

.evolution-content,
.evolution-stats {
    position: relative;
    z-index: 2;
}

.evolution-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.evolution-left {
    flex: 1;
}

.evo-heading {
    font-family: 'Rethink Sans';
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 57.6px;
    letter-spacing: -2.4px;
    vertical-align: middle;
    color: #000000;
    margin-bottom: 20px;
}

.evo-desc {
    font-family: 'DM Sans';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.32px;
    vertical-align: middle;
    color: #535862;
    margin-bottom: 30px;
}

.evo-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.evo-icon-circle {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1CB394;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.evo-card p {
    font-family: 'DM Sans';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.32px;
    vertical-align: middle;
    color: #535862;
    margin: 0;
}

.evo-card strong {
    color: #000;
}

.evolution-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.evo-grid-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.evo-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.evo-img-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.evo-img-wrapper.fade-top::after {
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.evo-img-wrapper.fade-bottom::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Stats Row */
.evolution-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.stat-item h3 {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 57.6px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #181D27;
    margin-bottom: 5px;
}

.stat-item p {
    font-family: 'Inter';
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 21.6px;
    letter-spacing: -0.32px;
    vertical-align: middle;
    color: #535862;
    margin: 0;
}

/* Bottom Banner */
/* Mid Stripe Banner */
.about-stripe-banner {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 20px 0;
    color: white;
}

.about-stripe-banner .container {
    max-width: 95%;
}

.banner-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.banner-item h3 {
    font-family: 'Rethink Sans';
    font-size: 28px;
    font-weight: 700;
    /* ExtraBold */
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: white;
    margin-right: 15px;
    display: inline-block;
}

.banner-item span {
    font-family: 'DM Sans';
    font-size: 15px;
    font-weight: 400;
    /* Medium */
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #F9F4F0;
    opacity: 1;
}

/* ---------------------------------
   Products Showcase Section
   --------------------------------- */
/* Product Features Banner */
.product-features-banner {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 30px 0;
    overflow: hidden;

    margin-top: 75px;
}

.features-marquee {
    width: 100%;
    overflow: hidden;
}

.features-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollFeatures 30s linear infinite;
    width: max-content;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: -0.26px;
    vertical-align: middle;
    color: #F7F7F7;
    white-space: nowrap;
}

.feature-item i {
    font-size: 20px;
    color: #F7F7F7;
}

.feature-item i.fa-asterisk {
    color: #F7F7F7;
    font-size: 14px;
    opacity: 1;
}

@keyframes scrollFeatures {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .feature-item {
        font-size: 14px;
        gap: 8px;
    }

    .feature-item i {
        font-size: 16px;
    }

    .features-track {
        gap: 50px;
    }

    .product-features-banner {
        padding: 20px 0;
    }
}


.feature-connector {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0, #0F9A7D);
    border-radius: 2px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0F9A7D 0%, #0B5546 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(15, 154, 125, 0.3);
}

/* Center Circle */
.product-center-circle {
    flex-shrink: 0;
}

.circle-outer {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 154, 125, 0.15) 0%, rgba(11, 85, 70, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(15, 154, 125, 0.08),
        0 0 0 16px rgba(15, 154, 125, 0.04);
}

.circle-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0F9A7D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(15, 154, 125, 0.2);
}

.product-center-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.product-brand-text {
    font-family: 'DM Sans';
    font-size: 11px;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.5px;
}

.product-name-text {
    font-family: 'Rethink Sans';
    font-size: 22px;
    font-weight: 700;
    color: #0B5546;
}

/* Responsive for Product HTML Display */
@media (max-width: 768px) {
    .product-html-display {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .product-features-left,
    .product-features-right {
        width: 100%;
    }

    .feature-pill-row {
        justify-content: center !important;
    }

    .circle-outer {
        width: 150px;
        height: 150px;
    }

    .circle-inner {
        width: 120px;
        height: 120px;
    }

    .product-name-text {
        font-size: 18px;
    }

    .feature-pill {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .products-showcase-section {
        overflow: hidden;
        /* Ensure overflow is hidden generally */
    }

    .products-img-col {
        justify-content: center;
        /* Re-center on mobile */
        width: 100%;
        overflow: hidden;
        /* Clip on container level */
    }

    .showcase-card-frame {
        border-radius: 24px;
        padding: 2px;
        width: 100%;
        /* Reset to screen width */
        max-width: 100%;
        margin-right: -20px;
        /* Slight overhang on mobile */
    }

    .showcase-card-inner {
        border-radius: 22px;
        padding: 30px;
    }

    .showcase-card-frame::before {
        border-radius: 24px;
    }
}


.products-badge {
    display: inline-block;
    background-color: white;
    color: #0B5546;
    font-family: 'Rethink Sans';
    font-size: 11px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-heading {
    font-family: 'Rethink Sans';
    font-weight: 700;
    /* ExtraBold */
    font-size: 50px;
    line-height: 58px;
    letter-spacing: 0%;
    color: white;
    margin-bottom: 25px;
}

.products-desc {
    font-family: 'DM Sans';
    font-weight: 300;
    /* Regular */
    font-size: 16px;
    line-height: 28px;
    color: #E0E0E0;
    /* Slightly off-white for description */
    margin-bottom: 30px;
    max-width: 90%;
}

.products-features-row {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.prod-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prod-check-icon {
    height: 24px;
    width: 24px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B5546;
    font-size: 12px;
}

.prod-feature-item span:last-child {
    font-family: 'Rethink Sans';
    font-weight: 600;
    font-size: 15px;
}

.btn-products-view {
    display: inline-block;
    background-color: white;
    color: #0B5546;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: 'Rethink Sans';
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
    margin-bottom: 30px;
}

.btn-products-view:hover {
    transform: translateY(-2px);
}

.products-nav-arrows {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.nav-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: #0B5546;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
}

.nav-arrow-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* ---------------------------------
   New Sections: Team, Company, Acmaey
   --------------------------------- */

/* Common Spacing */
.section-spacing {
    padding: 80px 0;
}

/* Our Team Section */
.about-team-section {
    background-color: #fff;
    overflow: hidden;
}

.about-team-section .badge-dot {
    background: linear-gradient(303.93deg, #44C26F 15.13%, #1CB394 84.24%);
}

.about-team-section .evo-heading {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-style: normal;
    font-size: 41px;
    line-height: 48px;
    letter-spacing: -2.1px;
    vertical-align: middle;
    color: #0F172A;
}

.about-team-section .evo-desc {
    font-family: 'Inter';
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #696969;
}

.team-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-img-col {
    flex: 1;
}

.team-text-col {
    flex: 1;
}

.large-feature-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.team-card-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.team-feature-card {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #1CB394;
    /* Brand Green */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text-box h4 {
    font-family: 'Rethink Sans';
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.3;
}

/* About Company Section */
.about-company-section {
    background-color: #fff;
}

.company-checklist {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.company-checklist li {
    font-family: 'Inter';
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-checklist li i {
    color: #1CB394;
    font-size: 14px;
}


/* Acmaey Details Section */
.acmaey-details-section {
    padding: 60px 0 100px;
    /* Bottom padding for banner spacing */
    background-color: #fff;
}

.acmaey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.acmaey-map-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #032d33;
    /* Dark map bg */
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
}

.acmaey-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    opacity: 0.8;
}

.map-pin {
    position: absolute;
    color: #ff5722;
    font-size: 24px;
}

.pin-kerala {
    bottom: 140px;
    left: 31%;
}

.pin-kerala-2 {
    bottom: 90px;
    left: 34%;
}

.acmaey-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Green Info Card */
.acmaey-green-card {
    background-color: #006953;
    color: white;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Globe Pattern Overlay */
.globe-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background-image: url('../images/about/globe.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
}

.acmaey-green-card h3 {
    font-family: 'Rethink Sans';
    font-size: 26px;
    font-weight: 600;
    font-style: normal;
    line-height: 48px;
    letter-spacing: -1px;
    vertical-align: middle;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.acmaey-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.acmaey-details-list p {
    font-family: 'DM Sans';
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0;
    vertical-align: middle;
    margin: 0;
    opacity: 0.9;
}

/* Address Card */
.acmaey-address-card {
    background-color: #E8F5E9;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-content h4 {
    font-family: 'Rethink Sans';
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 48px;
    letter-spacing: -1px;
    vertical-align: middle;
    color: black;
    margin-bottom: 10px;
}

.address-content {
    width: 100%;
}

.address-content p {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #706F6B;
    margin: 0;
    max-width: 100%;
}

.address-badge {
    background-color: #0077FF;
    /* Blue badge */
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 16px;
    display: none;
    /* Hide per user request */
}

/* Startup Logos */
.startup-logos {
    background-color: #E8F5E9;
    /* Light green background to match address card or change to gray per design */
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.startup-logo-img {
    height: 90px;
    object-fit: contain;
    max-width: 320px;
}

.startup-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.startup-text-orange {
    color: #FF6B00;
    font-weight: 700;
    font-size: 24px;
    font-family: 'Rethink Sans';
    letter-spacing: -0.5px;
}

/* Responsive */
@media (max-width: 991px) {

    .team-content,
    .acmaey-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .team-card-row {
        flex-direction: column;
    }

    .acmaey-address-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ---------------------------------
   Products Showcase Diagram
   --------------------------------- */

.products-showcase-card {
    background-color: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 650px;
    position: relative;
    /* ensure it stays above if needed */
}

.showcase-card-heading {
    color: #444;
    font-family: 'DM Sans';
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.showcase-diagram-container {
    position: relative;
    width: 100%;
    height: 350px;
    /* Adjust based on layout needs */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Big Orbit Circle */
.diagram-orbit-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid #1CB59240;
    /* Light green border */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* Create the arc effect? No, full circle is fine as base */
}

/* Center Node */
.diagram-center-node {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 4px solid #1CB59220;
    border-radius: 26px;
    z-index: -1;
    /* Pulse anim if desired */
}

.center-content-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.center-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.center-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-small {
    font-size: 11px;
    color: #0B5546;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Rethink Sans';
}

.brand-large {
    font-size: 22px;
    color: #0B5546;
    font-weight: 700;
    font-family: 'Rethink Sans';
}

/* Nodes */
.orbit-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: transform 0.3s;
    white-space: nowrap;
}

.orbit-node:hover {
    transform: scale(1.05);
}

/* =========================================
   About Page Responsiveness
   ========================================= */

@media (max-width: 992px) {

    /* Story Section */
    .about-story-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-story-right {
        order: -1;
        /* Image on top for mobile/tablet */
    }

    .about-story-img-single {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }

    /* Banner Item Font Fix */
    .banner-item h3 {
        font-size: 22px;
        margin-right: 10px;
    }

    .banner-item span {
        font-size: 14px;
    }

    /* Vision Section */
    .vision-row-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .vision-text-col,
    .vision-img-col {
        width: 100%;
        text-align: center;
    }

    .vision-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-feature-item {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .vision-feature-item:nth-child(2n) {
        border-right: none;
    }

    .vision-feature-item:last-child {
        grid-column: span 2;
        /* Center last item if odd */
        border-bottom: none;
        border-right: none;
    }

    /* Evolution Section */
    .evolution-content {
        flex-direction: column;
        gap: 40px;
    }

    .evolution-right {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .evolution-stats {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-top: 50px;
    }

    .stat-item {
        width: 45%;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Team & Company Section */
    /* .team-content rule already exists in previous media query block, ensuring it covers this */

    .team-text-col {
        order: -1;
        /* Text first on mobile usually? Or image? Let's check design. */
        /* If image is left on desktop (team section), usually image becomes top on mobile. */
        /* Current HTML: Image col then Text col. So default flex-col puts Image top. Good. */
    }

    .team-img-col,
    .team-text-col {
        width: 100%;
    }

    .large-feature-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }

    /* Acmaey Details */
    .acmaey-grid {
        grid-template-columns: 1fr;
    }

    .acmaey-map-col {
        min-height: 300px;
    }
}

@media (max-width: 768px) {

    /* Timeline */
    .timeline-content {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .timeline-item {
        margin-bottom: 20px;
    }

    /* Stripe Banner */
    .banner-content {
        flex-direction: column;
        gap: 30px;
    }

    /* Evolution Grid Images - Hide on mobile if too busy */
    .evolution-grid-top,
    .evolution-grid-bottom {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

@media (max-width: 576px) {

    /* Vision Grid 1 col */
    .vision-features-grid {
        grid-template-columns: 1fr;
    }

    .vision-feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .vision-feature-item:last-child {
        grid-column: auto;
        border-bottom: none;
    }

    /* Stats 1 col */
    .stat-item {
        width: 100%;
    }

    /* Startup Logos */
    .startup-logos {
        flex-direction: column;
        gap: 20px;
    }

    .acmaey-green-card {
        padding: 30px 20px;
    }

    .acmaey-address-card {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hero & Top Bar Mobile Fixes */
    .hero-text h1,
    .hero-text h2 {
        font-size: 30px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .social-icons {
        margin-left: 0;
    }
}

/* Tablet adjustments for Hero */
@media (max-width: 992px) {

    .hero-text h1,
    .hero-text h2 {
        font-size: 38px;
        line-height: 1.25;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
}

.node-text {
    font-family: 'DM Sans';
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.node-check {
    width: 22px;
    height: 22px;
    background-color: #1CB592;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Positioning - Assuming 6 nodes around a circle approx 350-400px diameter */
/* Center is 0,0 */

.position-left-top {
    left: 0;
    top: 50px;
}

.position-left-mid {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.position-left-mid:hover {
    transform: translateY(-50%) scale(1.05);
}

.position-left-bottom {
    left: 0;
    bottom: 50px;
}

.position-right-top {
    right: 0;
    top: 50px;
}

.position-right-mid {
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.position-right-mid:hover {
    transform: translateY(-50%) scale(1.05);
}

.position-right-bottom {
    right: 0;
    bottom: 50px;
}

/* Connecting Curved Lines */
/* Utilizing pseudo-elements on the diagram container or circle to draw curves */

/* Simple straight lines for now or use border radius tricks */
/* Let's try to add lines connecting the nodes to the center circle */

.orbit-node::before {
    content: '';
    position: absolute;
    background-color: #1CB59240;
    /* faint green line */
    height: 1px;
    width: 60px;
    z-index: -1;
}

/* Left side lines go right */
.position-left-top::before {
    right: -40px;
    top: 50%;
    width: 40px;
    transform: rotate(25deg);
    transform-origin: left center;
}

.position-left-mid::before {
    right: -40px;
    top: 50%;
    width: 50px;
}

.position-left-bottom::before {
    right: -40px;
    top: 50%;
    width: 40px;
    transform: rotate(-25deg);
    transform-origin: left center;
}

/* Right side lines go left */
.position-right-top::before {
    left: -40px;
    top: 50%;
    width: 40px;
    transform: rotate(-25deg);
    transform-origin: right center;
}

.position-right-mid::before {
    left: -50px;
    top: 50%;
    width: 50px;
}

.position-right-bottom::before {
    left: -40px;
    top: 50%;
    width: 40px;
    transform: rotate(25deg);
    transform-origin: right center;
}

/* Cleanup Orbit Circle */
.diagram-orbit-circle {
    /* Adjust size to pass through connections roughly */
    width: 380px;
    height: 380px;
    border: 1px solid #c2f2e5;
    /* Very faint teal */
}

/* Center Pulse Customization */
.center-pulse-ring {
    border-color: #B2F2E4;
}

/* Responsive */
@media (max-width: 992px) {
    .products-showcase-content {
        flex-direction: column;
    }

    .products-img-col {
        justify-content: center;
        width: 100%;
    }

    .products-showcase-card {
        padding: 40px 20px;
    }

    .showcase-diagram-container {
        transform: scale(0.85);
        /* Scale down diagram */
    }
}

@media (max-width: 500px) {
    .showcase-diagram-container {
        transform: scale(0.65);
        height: 280px;
    }

    .orbit-node {
        padding: 6px 12px;
    }

    .node-text {
        font-size: 11px;
    }
}

/* =========================================
   Final Mobile Overrides (Strict)
   ========================================= */
@media (max-width: 576px) {

    .hero-text h1,
    .hero-text h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        padding: 5px 0;
    }

    .banner-content {
        gap: 20px;
    }
}

/* Mobile Container Fix */
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Ensure all sections respect container */
    section {
        overflow-x: hidden;
    }

    /* Fix any full-width elements */
    .hero-content,
    .journey-content,
    .growth-grid,
    .ecosystem-grid {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Additional Mobile Width Fixes */
@media (max-width: 576px) {

    /* Force all images to respect container */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure hero section doesn't overflow */
    .hero-section,
    .carousel-container,
    .carousel-slide {
        width: 100%;
        overflow-x: hidden;
    }

    /* Fix header and navigation */
    .main-header,
    .header-content {
        width: 100%;
        overflow-x: hidden;
    }

    /* Ensure all major sections respect width */
    .journey-section,
    .growth-section,
    .ecosystem-section,
    .business-needs-section,
    .industry-section,
    .products-showcase-section,
    .trusted-section,
    .cta-section,
    .faq-section {
        width: 100%;
        overflow-x: hidden;
    }

    /* Fix any grid layouts */
    .needs-grid,
    .industry-pills-container {
        width: 100%;
        box-sizing: border-box;
    }
}

/* =========================================
   Mobile Menu Styles
   ========================================= */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        padding: 80px 0 20px;
    }

    .main-nav.mobile-menu-active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        color: #333;
    }

    .mobile-menu-toggle {
        display: block !important;
        z-index: 10000;
    }

    .mobile-menu-toggle.active i {
        transform: rotate(90deg);
    }

    /* Hide mega menu on mobile */
    .mega-menu {
        display: none !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay */
    .main-nav.mobile-menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Additional Mobile Menu Debug Fix */
@media (max-width: 992px) {

    /* Ensure desktop nav is hidden on mobile */
    .main-nav ul {
        display: flex !important;
    }
}

/* =========================================
   Redesigned Hero Section
   ========================================= */
:root {
    --brand-green: #29b696;
    --line-color: #cdece6;
    --text-dark: #0a1128;
    --text-light: #64748b;
    --circle-size: 80px;
    --font-main: 18px;
    --line-y: 50%;
}

.hero-redesigned {
    position: relative;
    background: linear-gradient(180deg, #F0FFF6 0%, rgba(240, 255, 246, 0) 100%);
    padding: 20px 0 20px;
    overflow: hidden;
    text-align: center;
}


/* Ensure the tails aren't clipped by the SVG container */
.svg-canvas {
    overflow: visible !important;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-grid-overlay img {
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
}


.hero-content-redesigned {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
.hero-gradient-text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -0.32px;
    text-align: center;
    background: linear-gradient(303.93deg, rgba(26, 179, 148, 0.71) 53.67%, #1AB394 75.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.hero-solid-text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -0.32px;
    text-align: center;
    color: #364E49;
    margin-top: 0;
    margin-bottom: 0px;
}

/* Map Component Styles (Ported from prod.html) */
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -25px;
}

/* --- Smooth SVG Logo --- */
.header-logo-container {
    position: relative;
    width: 144px;
    /* Desktop Size */
    height: 168px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.header-logo-svg {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    /* Allow stroke to overflow if needed, but viewBox handles it */
}

.header-logo-icon {
    position: relative;
    width: 42%;
    top: 25px;
    /* Relative to container ~60px */
    height: auto;
    object-fit: contain;
    z-index: 11;
}

/* --- SVG Connector System --- */
.svg-canvas {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 250px;
    pointer-events: none;
    z-index: 1;
}

/* --- Nodes Row --- */
.product-row {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 125px;
    z-index: 5;
}

.node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 14%;
}

.circle {
    width: var(--circle-size);
    height: var(--circle-size);
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px 0px #BBBBBB80;
    border: 1px solid #EBF5E7;
    position: relative;
    z-index: 2;
}

.node.practice {
    margin-top: -80px;
}

.node.practice .circle {
    /* border removed */
    background: #fff;
    z-index: 6;
}

/* Typography */
.brand-label {
    font-family: 'Rethink Sans';
    font-weight: 400;
    font-size: 13.07px;
    line-height: 12px;
    color: #0F172A;
    letter-spacing: 0;
    text-align: center;
    margin: 0;
    padding-top: 10px;
}

.product-name {
    font-family: 'Rethink Sans';
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    color: #0F172A;
    letter-spacing: 0;
    text-align: center;
    margin: 2px 0 0 0;
}



.icon-box {
    width: 45%;
    height: 25%;
    object-fit: contain;
}

.tax-tag {
    color: var(--brand-green);
    font-weight: 900;
    font-size: 10px;
    display: block;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {

    .hero-gradient-text,
    .hero-solid-text {
        font-size: 48px;
        line-height: 60px;
    }

    :root {
        --circle-size: 55px;
        --font-main: 14px;
        --line-y: 81%;
    }

    .product-row {
        margin-top: 115px;
    }

    .node.practice {
        margin-top: -85px;
    }

    .header-logo-container {
        width: 121px;
        /* Tablet Size */
        height: 141px;
    }

    .svg-canvas {
        top: 115px;
        height: 215px;
    }
}

@media (max-width: 768px) {

    .hero-gradient-text,
    .hero-solid-text {
        font-size: 32px;
        line-height: 42px;
    }
}

@media (max-width: 600px) {
    :root {
        --circle-size: 23px;
        --font-main: 10px;
        --line-y: 84%;
    }

    .product-row {
        margin-top: 113px;
        width: 100%;
    }

    .node.practice {
        margin-top: -70px;
    }

    .header-logo-container {
        width: 92px;
        /* Mobile Size */
        height: 107px;
    }

    .svg-canvas {
        top: 86px;
        height: 185px;
    }

    .tax-tag {
        font-size: 6px;
    }

    /* Mobile Hover Effect for Nodes */
    .node .brand-label,
    .node .product-name {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .node:hover .brand-label,
    .node:hover .product-name,
    .node:active .brand-label,
    .node:active .product-name {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* --- NEW ECOSYSTEM SECTION (from ecos.html) --- */
.eco-novo-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    gap: 60px;
    align-items: flex-start;
}



.eco-novo-sticky-left {
    position: sticky;
    top: 50px;
    height: fit-content;
    width: 60%;
    /* Adjusted based on header height */
    align-self: flex-start;
}

.eco-novo-label {
    font-size: 13px;
    color: #707070;
    margin-bottom: 8px;
    display: block;
    font-family: 'Rethink Sans';
    /* Match site font */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eco-novo-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Rethink Sans';
    color: #222;
}

.eco-novo-image-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 95%;
}

.eco-novo-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* =========================================
   Business Solutions Carousel Section
   ========================================= */
.business-solutions-section {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 80px 0;
    overflow: hidden;
}

.solutions-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow-x: hidden;
    /* Allow scroll but hide bar if we want, or just hidden */
    overflow-y: hidden;
}

.solutions-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    /* Ensure track takes full needed width */
    padding-left: 5vw;
    /* Optional: add some starting padding if desired, or keep 0 */
}

.solution-card {
    /* 4 cards visible: (100vw - 3 gaps of 30px) / 4 */
    width: calc((100vw - 90px) / 4);
    flex: 0 0 auto;
    box-sizing: border-box;
    height: 305px;
    background-color: #1B3F30;
    border-radius: 16px;
    padding: 30px;
    /* Reduced padding slightly for smaller cards */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* Tablet Landscape: 3 Cards */
@media (max-width: 1200px) {
    .solution-card {
        width: calc((100vw - 60px) / 3);
    }
}

/* Tablet Portrait: 2 Cards */
@media (max-width: 800px) {
    .solution-card {
        width: calc((100vw - 30px) / 2);
    }
}

/* Mobile: 1 Card */
@media (max-width: 500px) {
    .solution-card {
        width: calc(100vw - 40px);
        /* Small margin on sides */
        margin-left: 20px;
        /* Center with margin */
        padding: 24px;
        min-width: auto;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #272928;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.solution-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.solution-card p {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.btn-get-started {
    background-color: white;
    color: #0B5546;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0B5546;
    font-size: 1.2rem;
}

.control-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .solution-card {
        min-width: 280px;
        padding: 24px;
    }
}

.eco-novo-image-grid img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.eco-novo-top-row img {
    height: 160px;
}

.eco-novo-hero-img {
    height: 220px;
}

/* RIGHT SECTION */
.eco-novo-scroll-right {
    flex: 0 0 40%;
}

.eco-novo-section-header {
    font-size: 20px;
    margin-bottom: 40px;
    font-family: 'Rethink Sans';
    font-weight: 600;
    color: #222;
}

.eco-novo-card {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    min-height: 110px;

    /* Scroll Reveal Animation Initial State */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.eco-novo-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.eco-novo-card:last-child {
    border-bottom: none;
}

.eco-novo-icon-box {
    width: 30px;
    flex-shrink: 0;
}

.eco-novo-icon-box img {
    width: 100%;
    height: auto;
}

.eco-novo-card-body h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-family: 'Rethink Sans';
    font-weight: 600;
    color: #222;
}

.eco-novo-card-body p {
    margin: 0;
    color: #707070;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'DM Sans';
}

@media (max-width: 1024px) {
    .eco-novo-wrapper {
        flex-direction: column;
        padding: 40px 20px;
    }

    .eco-novo-sticky-left,
    .eco-novo-scroll-right {
        flex: 0 0 100%;
    }

    .eco-novo-sticky-left {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

/* Typography Updates for Business Solutions */
.business-solutions-section .section-heading {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
}

.business-solutions-section .section-sub-heading {
    font-family: 'Rethink Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: 21.6px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
}

.solution-card h3 {
    font-family: 'Rethink Sans';
    font-weight: 500;
    font-size: 16.94px;
    line-height: 20.33px;
    letter-spacing: 0%;
    color: #ffffff;
    margin-bottom: 10px;
}

.solution-card p {
    font-family: 'Rethink Sans';
    font-weight: 400;
    font-size: 13px;
    line-height: 18.5px;
    letter-spacing: 0%;
    color: #A8A8A8;
}

.solution-card .btn-get-started {
    font-family: 'Rethink Sans';
    font-weight: 700;
    font-size: 10.16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #10402C;
    background-color: #FFFFFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}
.pulse-path {
    stroke-dasharray: 10 90;
    /* Shorter pulse for thin lines */
    stroke-dashoffset: 100;
    opacity: 0;
    animation: flowData 4s linear infinite;
    /* Subtle glow for thin lines */
    filter: drop-shadow(0 0 1.5px rgba(26, 179, 148, 0.6));
}

.inward-path {
    animation-delay: 0s;
}

.upward-path {
    animation-delay: 2.2s;
}

@keyframes flowData {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* --- Simplified Hub Resonance (Geometric Only) --- */

/* Inner Core: Subtle "thump" upon impact */
.header-logo-svg path:nth-child(3) {
    animation: coreSimple 4s ease-out infinite;
    animation-delay: 3.8s;
    transform-origin: center;
}

/* Middle Layer: Ripples outward */
.header-logo-svg path:nth-child(2) {
    animation: layerSimple 4s ease-out infinite;
    animation-delay: 3.85s;
    transform-origin: center;
}

/* Outer Layer: Final soft ripple */
.header-logo-svg path:nth-child(1) {
    animation: layerSimple 4s ease-out infinite;
    animation-delay: 3.9s;
    transform-origin: center;
}

/* --- Smooth Geometric Keyframes --- */

@keyframes coreSimple {
    0% { transform: scale(1); }
    10% { transform: scale(1.06); } /* Quick expansion */
    25% { transform: scale(1); }      /* Smooth settle */
    100% { transform: scale(1); }
}

@keyframes layerSimple {
    0% { transform: scale(1); }
    10% { transform: scale(1.04); } /* Slightly smaller ripple than core */
    30% { transform: scale(1); }    /* Slower settle for the outer layers */
    100% { transform: scale(1); }
}

/* Keep the central icon movement minimal */
.header-logo-icon {
    animation: iconSimple 4s ease-out infinite;
    animation-delay: 3.82s;
}

@keyframes iconSimple {
    0% { transform: scale(1); }
    10% { transform: scale(1.08); }
    25% { transform: scale(1); }
    100% { transform: scale(1); }
}

.pulse-path, .svg-canvas path {
    /* Tells the browser to prioritize geometric accuracy over speed */
    shape-rendering: geometricPrecision;
}