:root {
    --primary-green: #0a2540;
    /* Primary brand color */
    --dark-green: #06192b;
    /* Dark shade of primary */
    --light-green: #143a63;
    /* Light shade of primary */

    --black: #0f172a;
    /* Dark neutral */
    --white: hsl(0, 0%, 100%);
    /* White */

    --orange: #FF7A00;
    --light-orange: #ff9a3d;
    /* Secondary / CTA color */

    --token-6486a9ac-e9e8-4ced-becb-afb4c654ba35: #0a2540;
    /* Primary */
    --token-ee524d9d-de64-451e-a22a-dec6a11245ce: #f5f7fa;
    /* Light background */
    --token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b: #ff9a3d;
    /* Light orange */
    --token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155: #0f172a;
    /* Text dark */
    --token-964b34fa-91d7-45df-8e37-6955e9cb831a: #06192b;
    /* Deep navy */

       --btn-height: 56px;
    --btn-padding-x: 40px;
    --btn-font-size: 1rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    /* background-color: var(--black);
    color: var(--white); */
    min-height: 100vh;
    overflow-x: hidden;
}

.announcement-bar {
    background-color: var(--primary-green);
    padding: 12px 20px;
    text-align: center;
    width: 100%;
}

.announcement-bar p {
    font-weight: 700;
    color: var(--orange);
    margin: 0;
    font-size: 16px;
}

.header {
    backdrop-filter: blur(10px);
    background-color: var(--dark-green);
    border-radius: 50px;
    margin: 20px auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 20px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-button {
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(98, 216, 78, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(98, 216, 78, 0.4);
}

.icon-container {
    background-color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container svg {
    width: 12px;
    height: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.85) 0%, rgba(6, 25, 43, 0.9) 100%);
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    /* line-height: 1.1; */
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-heading span {
    color: var(--orange);
    position: relative;
}

.hero-heading span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    color: var(--white);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}


.trusted-by {
    width: 100%;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Scroll Container with Light Shadow */
.logo-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.logo-scroll {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 20px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 30px rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

/* Animation for logo scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-160px * 7 - 3rem * 7));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }

    .logo-item {
        width: 140px;
        height: 70px;
    }

    .logo-scroll {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .logo-item {
        width: 120px;
        height: 60px;
        padding: 10px;
    }

    .trusted-text {
        font-size: 0.9rem;
    }
}

/* Pause animation on hover */
.logo-scroll-container:hover .logo-scroll {
    animation-play-state: paused;
}

/* Mobile Styles */
@media (max-width: 810px) {
    .header {
        padding: 15px 20px;
        border-radius: 30px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-green);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 30px 30px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Content for demonstration */
.content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Services Section Styles */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

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

.award-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.993;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

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

.award-text {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    border-radius: 32px;
    z-index: -1;
    transform: perspective(1200px);
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

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

.card-content {
    margin-bottom: 30px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    opacity: 0.8;
}

.service-button {
    display: inline-block;
    background-color: var(--orange);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 0 2px 0 rgba(156, 217, 59, 0.65);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 142, 255, 0.4);
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-image {
        height: 150px;
    }
}

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

    .service-card {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .award-text {
        font-size: 14px;
    }
}

.feature-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-content {
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
    color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.09);
    margin-bottom: 30px;
}

.feature-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.25rem;
    color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.feature-list-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35);
    line-height: 1.4;
    margin: 0;
}

.feature-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0px 0px 2px 0px rgba(156, 217, 59, 0.65);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(111, 142, 255, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 40px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0px 1px 2px -10px rgb(3, 45, 66);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: rgba(3, 45, 66, 0.05);
    transform: translateY(-2px);
    color: var(--white);
}

.feature-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-container {
        flex-direction: column;
        gap: 40px;
    }

    .feature-content {
        order: 2;
    }

    .feature-image {
        order: 1;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-heading {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .feature-section {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .feature-heading {
        font-size: 1.5rem;
    }

    .feature-description {
        font-size: 1.125rem;
    }

    .feature-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
}

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

    .section-title {
        font-size: 1.5rem;
    }

    .feature-heading {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-list-text {
        font-size: 1rem;
    }
}

.dark-bg {
    background-color: var(--dark-green);
    color: var(--white);
}

.hero-section {
    padding: 100px 0;
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 216, 78, 0.1) 0%, rgba(0, 60, 57, 0) 70%);
    top: -50%;
    left: -50%;
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.case-study-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: var(--white);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-study-img {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 3rem;
}

.case-study-content {
    padding: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    color: var(--black);
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: "";
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    margin-right: 1rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.btn-primary-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--dark-green);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 216, 78, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-green);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

.founder-section {
    background-color: #f8f9fa;
}

.founder-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.image-item {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.8;
}

.btn-primary-custom {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--black);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px 0 rgba(156, 217, 59, 0.65);
}

.btn-primary-custom:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 216, 78, 0.3);
}

/* How It Works Section */
.how-it-works {
    background-color: #f8f9fa;
}

.process-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.process-description {
    color: #444;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--dark-green);
    color: var(--white);
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.7;
}

.comparison-column {
    padding: 0 1rem;
}

.column-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.traditional .column-title {
    color: var(--white);
}

.optimite .column-title {
    color: var(--orange);
}

.traditional .comparison-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.optimite .comparison-item {
    background-color: hsla(0, 0%, 100%, 0.1);
    color: var(--orange);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

    .section-title,
    .comparison-title {
        font-size: 2rem;
    }

    .process-card {
        margin-bottom: 1.5rem;
    }

    .comparison-column {
        margin-bottom: 2rem;
    }
}

.faq-section {
    background-color: var(--white);
}

.faq-item {
    background-color: var(--light-gray);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--white);
    border-radius: 30px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--black);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--dark-green);
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
    opacity: 0.7;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--black);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: var(--white);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-title {
        font-size: 2rem;
    }

    .footer-subtitle {
        font-size: 1.1rem;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    .footer-image {
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-cta {
        padding: 60px 0;
    }

    .footer-title {
        font-size: 1.75rem;
    }
}

.service-section {
    background-color: var(--white);
    overflow: hidden;
}

.service-cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1000px;
}

.service-card {
    background-color: var(--light-gray);
    border: 0.5px solid #ccc;
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* 3D Hover Effect */
.service-card:hover {
    transform:
        translateY(-15px) rotateX(5deg) rotateY(0deg) scale(1.02);
    box-shadow:
        0 30px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(0, 0, 0, 0.2) inset;
}

/* Image jump animation */
.service-card:hover .service-image {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image {
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

/* Black transparent overlay on hover */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-image-placeholder {
    width: 80%;
    height: 80%;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-placeholder {
    transform: scale(1.08);
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image-placeholder img {
    transform: scale(1.15);
}

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: var(--light-gray);
    transition: all 0.4s ease;
}

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

/* Button animation */
.btn-service {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-service:hover::before {
    width: 300px;
    height: 300px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-cards-container {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .service-card {
        max-width: 45%;
        min-width: 300px;
    }

    .service-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .service-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
        min-width: unset;
        margin: 0 1rem;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    /* Reduce hover effects on mobile for performance */
    @media (hover: hover) and (pointer: fine) {
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .service-card:hover .service-image {
            transform: translateY(-10px) scale(1.03);
        }
    }
}

@media (max-width: 576px) {
    .service-card {
        border-radius: 24px;
        margin: 0 0.5rem;
    }

    .service-image {
        height: 180px;
    }

    .service-image-placeholder {
        width: 85%;
        height: 85%;
        border-radius: 16px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        transform: none !important;
    }

    .service-image {
        transform: none !important;
    }

    /* Add active state for touch devices */
    .service-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-image,
    .service-image-placeholder,
    .service-image-placeholder img,
    .service-content,
    .btn-service {
        transition: none !important;
        transform: none !important;
    }

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

/* Performance optimizations */
.service-card {
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.service-image {
    will-change: transform;
}

.service-image-placeholder img {
    will-change: transform;
}

.btn-service {
    /* background-color: var(--orange);
            border-color: var(--orange); */
    /* color: var(--black); */
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px 0 rgba(156, 217, 59, 0.65);
    display: inline-block;
    text-decoration: none;
}

.btn-service:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 216, 78, 0.3);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.card-hover {
    transition: all 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .service-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 200px;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

    .service-content {
        padding: 1.5rem;
    }
}

/* White Label Section Styles */
.bg-uplers-yellow {
    background-color: var(--light-green);
    /* Uplers yellow color */
}

.text-gradient-uplers {
    color: var(--orange);
}

.section-padding {
    padding: 4rem 0;
}

/* Sticky Image Container */
.sticky-image-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-placeholder img {
    transition: transform 0.5s ease;
}

.service-image-wrapper:hover .image-placeholder img {
    transform: scale(1.02);
}

/* Scrollable Content */
.scrollable-content-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Custom Scrollbar */
.scrollable-content-container::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.scrollable-content-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.scrollable-content-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Service Items */
.service-item {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.service-item:hover {
    border-left-color: #667eea;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.icon-img {
    width: 32px;
    height: 32px;
    transition: filter 0.3s ease;
}

.service-item:hover .icon-img {
    filter: brightness(0) invert(1);
}

.service-item-title {
    color: #1a202c;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-item-title {
    color: #667eea;
}

.service-item-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sticky-image-container {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .scrollable-content-container {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .service-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .service-item {
        padding: 1.5rem !important;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .icon-img {
        width: 26px;
        height: 26px;
    }

    .service-item-title {
        font-size: 1.1rem;
    }

    .service-item-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }

    .service-icon {
        align-self: flex-start;
    }

    .service-item {
        border-left: none;
        border-top: 4px solid transparent;
    }

    .service-item:hover {
        transform: translateY(-5px);
        border-left-color: transparent;
        border-top-color: #667eea;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .service-item,
    .service-image-wrapper,
    .service-icon,
    .icon-img,
    .fade-in-up {
        transition: none !important;
        animation: none !important;
    }
}

/* Partners Section */
* {
    box-sizing: border-box;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.text-gradient-uplers {
    color: var(--orange);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* responsive columns */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    /* keep cards from touching screen edges on small screens */
    align-items: start;
}


.partner-item {
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}


.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.partner-item:hover .partner-logo-wrapper::before {
    opacity: 1;
}

.partner-item:hover .partner-logo-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    /* object-fit: contain; */
    filter: grayscale(30%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Special Styling for Adobe */
.adobe-logo {
    max-height: 45px;
}

/* Special Styling for Certified Partner */
.certified-partner {
    background-color: #126ff6;
    padding: 1rem;
}

.certified-partner .partner-logo {
    filter: brightness(0) invert(1);
}

/* Partner Button */
.btn-partner {
    background: linear-gradient(135deg, #FFDD2F 0%, #FFE44D 100%);
    border: none;
    border-radius: 40px;
    padding: 0.875rem 2.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1B1B1B;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE44D 0%, #FFDD2F 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-partner:hover::before {
    left: 0;
}

.btn-partner:hover {
    color: #1B1B1B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 221, 47, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-partner:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (min-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .partner-logo-wrapper {
        height: 110px;
        padding: 1.75rem;
    }

    .partner-logo {
        max-width: 160px;
        max-height: 60px;
    }
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .partner-logo-wrapper {
        height: 120px;
    }

    .partner-logo {
        max-width: 180px;
        max-height: 70px;
    }

    .adobe-logo {
        max-height: 50px;
    }
}

@media (min-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2.5rem;
    }

    .section-padding {
        padding: 5rem 0;
    }
}

@media (min-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 3rem;
    }

    .partner-logo-wrapper {
        height: 140px;
        padding: 2rem;
    }

    .partner-logo {
        max-width: 200px;
        max-height: 80px;
    }

    .adobe-logo {
        max-height: 60px;
    }
}

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

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

.partner-item {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.05s);
    opacity: 0;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .partner-logo-wrapper {
        transform: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    }

    .partner-logo {
        filter: grayscale(0%) !important;
    }

    .btn-partner:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .partner-item,
    .partner-logo-wrapper,
    .partner-logo,
    .btn-partner,
    .btn-icon {
        transition: none !important;
        animation: none !important;
    }

    .partner-item {
        opacity: 1;
    }

    .btn-partner:hover {
        transform: none;
    }
}

/* Performance Optimizations */
.partner-logo-wrapper {
    will-change: transform, box-shadow;
}

.partner-logo {
    will-change: transform, filter;
}

.btn-partner {
    will-change: transform;
}

/* Accessibility */
.partner-item:focus-within .partner-logo-wrapper {
    outline: 3px solid #667eea;
    outline-offset: 3px;
}

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

/* Header Styles */
.about-header {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.about-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 100%);
    z-index: -2;
}

.about-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(98, 216, 78, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(194, 250, 105, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

.about-title-main {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: about-title-glow 3s ease-in-out infinite alternate;
}

@keyframes about-title-glow {
    from {
        text-shadow: 0 0 10px rgba(98, 216, 78, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(98, 216, 78, 0.8), 0 0 30px rgba(194, 250, 105, 0.6);
    }
}

.about-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: about-line-expand 2s ease-in-out infinite;
}

@keyframes about-line-expand {

    0%,
    100% {
        width: 100px;
    }

    50% {
        width: 150px;
    }
}

.about-cta-section {
    background: rgba(3, 45, 66, 0.7);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto 60px;
    max-width: 700px;
    border: 1px solid rgba(98, 216, 78, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: about-cta-float 1s ease-out 0.5s forwards;
}

@keyframes about-cta-float {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-cta-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.about-cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(98, 216, 78, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.about-cta-button:hover::before {
    left: 100%;
}

.about-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(98, 216, 78, 0.6);
}

/* Team Section */
.about-team-section {
    padding: 60px 0 100px;
}

.about-team-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
}

.about-team-title::before {
    content: '👥';
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.7;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Team Member Card */
.about-team-member-card {
    background: rgba(245, 255, 253, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(98, 216, 78, 0.1);
    transform: translateY(50px);
    opacity: 0;
}

.about-team-member-card.about-card-visible {
    transform: translateY(0);
    opacity: 1;
}

.about-team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-team-member-card:hover::before {
    transform: scaleX(1);
}

.about-team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 60, 57, 0.4);
    border-color: rgba(98, 216, 78, 0.3);
    background: rgba(245, 255, 253, 0.08);
}

.about-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(245, 255, 253, 0.1);
}

.about-member-avatar::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(transparent, var(--light-green), transparent);
    animation: about-avatar-rotate 3s linear infinite;
}

@keyframes about-avatar-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-member-initials {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-weight: 700;
}

.about-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.about-member-role {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-member-desc {
    color: rgba(245, 255, 253, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
}

.about-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.about-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(98, 216, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(98, 216, 78, 0.2);
}

.about-social-icon:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.about-footer {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 60, 57, 0.5);
    border-top: 1px solid rgba(98, 216, 78, 0.2);
    margin-top: 60px;
}

.about-footer-text {
    color: rgba(245, 255, 253, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-title-main {
        font-size: 2.8rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 60px 0 30px;
    }

    .about-title-main {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-cta-title {
        font-size: 1.8rem;
    }

    .about-team-title {
        font-size: 2rem;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 15px;
    }

    .about-title-main {
        font-size: 1.8rem;
    }

    .about-cta-section {
        padding: 20px;
    }

    .about-member-avatar {
        width: 100px;
        height: 100px;
    }

    .about-member-initials {
        width: 90px;
        height: 90px;
    }
}

.b2b-header-placeholder,
.b2b-footer-placeholder {
    height: 80px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
}

.b2b-footer-placeholder {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 0%, #001f2e 100%);
}

/* Custom Classes */
.b2b-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.b2b-section {
    padding: 100px 0;
    position: relative;
}

.b2b-section-alt {
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.b2b-section-dark {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 100%);
    color: var(--white);
}

.b2b-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-green);
    letter-spacing: -0.5px;
}

.b2b-section-dark .b2b-heading {
    color: var(--white);
}

.b2b-subheading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    margin-bottom: 20px;
    line-height: 1.3;
}

.b2b-section-dark .b2b-subheading {
    color: var(--light-green);
}

.b2b-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    max-width: 900px;
}

.b2b-section-dark .b2b-text {
    color: rgba(255, 255, 255, 0.85);
}

.b2b-cta {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    color: var(--dark-green);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(98, 216, 78, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.b2b-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--light-green), var(--primary-green));
    transition: all 0.5s ease;
    z-index: -1;
}

.b2b-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(98, 216, 78, 0.4);
}

.b2b-cta:hover:before {
    left: 0;
}

.b2b-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 60, 57, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 60, 57, 0.08);
    position: relative;
    overflow: hidden;
}

.b2b-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-green), var(--light-green));
    transition: width 0.3s ease;
}

.b2b-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 60, 57, 0.12);
}

.b2b-card:hover:before {
    width: 8px;
}

.b2b-badge {
    display: inline-block;
    background-color: rgba(194, 250, 105, 0.2);
    color: var(--dark-green);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(194, 250, 105, 0.4);
    letter-spacing: 0.5px;
}

/* Hero Section */
.b2b-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fffc 0%, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce) 100%);
    position: relative;
    overflow: hidden;
}

.b2b-hero:before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    opacity: 0.08;
    z-index: 0;
}

.b2b-hero:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    opacity: 0.05;
    z-index: 0;
}

.b2b-hero-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
}

.b2b-hero-heading {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--dark-green);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

.b2b-hero-subheading {
    font-size: 1.8rem;
    color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    margin-bottom: 40px;
    max-width: 800px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.4;
}

.b2b-hero-text {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 40px;
    max-width: 850px;
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.7;
}

.b2b-hero-highlight {
    background-color: rgba(194, 250, 105, 0.2);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.b2b-hero-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
    line-height: 1.6;
}

.b2b-hero-cta {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Who We Help Section */
.b2b-clients {
    padding: 100px 0;
}

.b2b-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.b2b-client-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 60, 57, 0.1);
}

.b2b-client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 60, 57, 0.12);
}

.b2b-client-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.b2b-client-card h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.b2b-client-list {
    list-style-type: none;
    margin-bottom: 25px;
}

.b2b-client-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.b2b-client-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.b2b-client-use-case {
    padding: 20px;
    background-color: rgba(194, 250, 105, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.b2b-client-use-case h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* What Makes Us Different */
.b2b-different {
    padding: 100px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.b2b-different-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .b2b-different-content {
        grid-template-columns: 1fr;
    }
}

.b2b-different-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.b2b-different-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.b2b-different-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-green);
}

.b2b-different-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(98, 216, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.b2b-different-item h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Framework Section */
.b2b-framework {
    padding: 100px 0;
}

.b2b-framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    counter-reset: step-counter;
}

.b2b-framework-step {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 60, 57, 0.08);
    counter-increment: step-counter;
}

.b2b-framework-step:before {
    content: counter(step-counter);
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(98, 216, 78, 0.3);
}

.b2b-framework-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 60, 57, 0.12);
}

.b2b-framework-step h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
    font-size: 1.5rem;
    margin-top: 10px;
}

.b2b-framework-list {
    list-style-type: none;
    margin-bottom: 20px;
}

.b2b-framework-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.b2b-framework-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.b2b-framework-outcome {
    padding: 15px;
    background-color: rgba(194, 250, 105, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    margin-top: 20px;
    font-weight: 600;
    color: var(--dark-green);
}

/* What You Can Expect */
.b2b-expect {
    padding: 100px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.b2b-expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.b2b-expect-item {
    padding: 35px 30px;
    background-color: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 60, 57, 0.08);
}

.b2b-expect-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.b2b-expect-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.b2b-expect-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Problems We Solve */
.b2b-problems {
    padding: 100px 0;
}

.b2b-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.b2b-problem-item {
    padding: 35px 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 60, 57, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.b2b-problem-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.b2b-problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.b2b-problem-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ff6b6b;
    font-size: 1.5rem;
}

.b2b-problem-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Why Choose Us */
.b2b-choose {
    padding: 100px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.b2b-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.b2b-choose-item {
    padding: 35px 25px;
    background-color: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 60, 57, 0.08);
}

.b2b-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.b2b-choose-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(98, 216, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.b2b-choose-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* How Engagement Works */
.b2b-engagement {
    padding: 100px 0;
}

.b2b-engagement-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.b2b-engagement-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    z-index: 0;
}

@media (max-width: 992px) {
    .b2b-engagement-steps:before {
        display: none;
    }
}

.b2b-engagement-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.b2b-engagement-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-green), var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 60, 57, 0.15);
}

.b2b-engagement-step h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* CTA Section */
.b2b-cta-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.b2b-cta-section:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    opacity: 0.1;
}

.b2b-cta-section:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    opacity: 0.05;
}

.b2b-cta-section .b2b-heading {
    color: var(--white);
    margin-bottom: 30px;
}

.b2b-cta-section .b2b-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 50px;
}

.b2b-cta-section .b2b-cta {
    background: linear-gradient(90deg, var(--light-green), var(--primary-green));
    color: var(--dark-green);
    font-size: 1.2rem;
    padding: 20px 50px;
    box-shadow: 0 15px 40px rgba(194, 250, 105, 0.3);
}

.b2b-cta-section .b2b-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(194, 250, 105, 0.4);
}

/* Image Placeholders */
.b2b-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e9f7e8, #c2fa69);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px dashed var(--primary-green);
    overflow: hidden;
}

.b2b-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--dark-green);
    opacity: 0.7;
}

.b2b-large-image {
    height: 400px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.b2b-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.b2b-pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

    .b2b-heading,
    .b2b-hero-heading {
        font-size: 2.8rem;
    }

    .b2b-subheading {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .b2b-section {
        padding: 80px 0;
    }

    .b2b-heading,
    .b2b-hero-heading {
        font-size: 2.5rem;
    }

    .b2b-hero {
        padding: 120px 0 80px;
    }

    .b2b-hero-heading {
        font-size: 3rem;
    }

    .b2b-clients-grid,
    .b2b-framework-steps,
    .b2b-expect-grid,
    .b2b-problems-grid,
    .b2b-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {

    .b2b-heading,
    .b2b-hero-heading {
        font-size: 2.2rem;
    }

    .b2b-subheading {
        font-size: 1.4rem;
    }

    .b2b-hero-heading {
        font-size: 2.5rem;
    }

    .b2b-hero-subheading {
        font-size: 1.5rem;
    }

    .b2b-text {
        font-size: 1.1rem;
    }

    .b2b-section {
        padding: 70px 0;
    }

    .b2b-cta {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .b2b-clients-grid,
    .b2b-framework-steps,
    .b2b-expect-grid,
    .b2b-problems-grid,
    .b2b-choose-grid {
        grid-template-columns: 1fr;
    }

    .b2b-engagement-step {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {

    .b2b-heading,
    .b2b-hero-heading {
        font-size: 1.9rem;
    }

    .b2b-hero-subheading {
        font-size: 1.3rem;
    }

    .b2b-card,
    .b2b-client-card,
    .b2b-framework-step {
        padding: 30px 20px;
    }

    .b2b-cta {
        width: 100%;
        text-align: center;
    }
}

.header-placeholder,
.footer-placeholder {
    height: 80px;
    background-color: var(--dark-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-placeholder {
    margin-top: 80px;
    background-color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
}

/* Custom Classes */
.d2c-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.d2c-section {
    padding: 80px 0;
    position: relative;
}

.d2c-section-alt {
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.d2c-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.d2c-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    margin-bottom: 15px;
}

.d2c-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    max-width: 800px;
}

.d2c-cta {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--black);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(98, 216, 78, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.d2c-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(98, 216, 78, 0.3);
    background-color: var(--light-green);
}

.d2c-cta:active {
    transform: translateY(-2px);
}

.d2c-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 60, 57, 0.1);
    position: relative;
    overflow: hidden;
}

.d2c-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 60, 57, 0.1);
}

.d2c-badge {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Hero Section */
.d2c-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce) 100%);
    position: relative;
    overflow: hidden;
}

.d2c-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    opacity: 0.1;
    z-index: 0;
}

.d2c-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.d2c-hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-green);
    animation: fadeInUp 1s ease-out;
}

.d2c-hero-subheading {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 35px;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.d2c-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.d2c-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-green);
}

.d2c-hero-feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.d2c-hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Trust Section */
.d2c-trust {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(0, 60, 57, 0.1);
    border-bottom: 1px solid rgba(0, 60, 57, 0.1);
}

.d2c-trust-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.d2c-trust-logo {
    width: 150px;
    height: 60px;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-green);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.d2c-trust-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Who We Work With */
.d2c-clients {
    padding: 80px 0;
}

.d2c-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.d2c-client-item {
    padding: 25px;
    border-left: 5px solid var(--primary-green);
    background-color: var(--white);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.d2c-client-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.d2c-client-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.d2c-client-item ul {
    list-style-type: none;
    margin-left: 20px;
}

.d2c-client-item li {
    margin-bottom: 10px;
    position: relative;
}

.d2c-client-item li:before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Why Most D2C Email Marketing Fails */
.d2c-fails {
    padding: 80px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.d2c-fails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.d2c-fail-item {
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid transparent;
}

.d2c-fail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-green);
}

.d2c-fail-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.d2c-fail-item i {
    color: #ff6b6b;
}

/* Our Approach */
.d2c-approach {
    padding: 80px 0;
}

.d2c-approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .d2c-approach-content {
        grid-template-columns: 1fr;
    }
}

.d2c-approach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.d2c-approach-item {
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.d2c-approach-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.d2c-approach-item h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

/* Email Flows */
.d2c-flows {
    padding: 80px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.d2c-flows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.d2c-flow-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.d2c-flow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.d2c-flow-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.d2c-flow-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.d2c-flow-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Campaign Management */
.d2c-campaigns {
    padding: 80px 0;
}

.d2c-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Process Section */
.d2c-process {
    padding: 80px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.d2c-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.d2c-process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-green);
    z-index: 0;
}

@media (max-width: 768px) {
    .d2c-process-steps:before {
        display: none;
    }
}

.d2c-process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.d2c-step-number {
    width: 80px;
    height: 80px;
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
    box-shadow: 0 0 0 3px var(--primary-green);
}

.d2c-process-step h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

/* Platforms */
.d2c-platforms {
    padding: 80px 0;
}

.d2c-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.d2c-platform-item {
    padding: 25px 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 60, 57, 0.1);
}

.d2c-platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.d2c-platform-item h4 {
    color: var(--dark-green);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Results Section */
.d2c-results {
    padding: 80px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.d2c-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.d2c-result-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.d2c-result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.d2c-result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.d2c-result-item h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

/* Pricing */
.d2c-pricing {
    padding: 80px 0;
}

.d2c-pricing-card {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid var(--light-green);
    position: relative;
    overflow: hidden;
}

.d2c-pricing-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.d2c-pricing-features {
    text-align: left;
    margin: 30px 0;
}

.d2c-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.d2c-pricing-feature i {
    color: var(--primary-green);
}

/* FAQs */
.d2c-faqs {
    padding: 80px 0;
    background-color: var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce);
}

.d2c-faqs-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.d2c-faq-item {
    margin-bottom: 20px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.d2c-faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.d2c-faq-question:hover {
    background-color: rgba(98, 216, 78, 0.05);
}

.d2c-faq-question i {
    transition: transform 0.3s ease;
}

.d2c-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.d2c-faq-item.active .d2c-faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.d2c-faq-item.active .d2c-faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.d2c-final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.d2c-final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    opacity: 0.1;
}

.d2c-final-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    opacity: 0.1;
}

.d2c-final-cta .d2c-heading {
    color: var(--white);
    margin-bottom: 20px;
}

.d2c-final-cta .d2c-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
}

.d2c-final-cta .d2c-cta {
    background-color: var(--light-green);
    color: var(--dark-green);
    font-size: 1.2rem;
    padding: 18px 45px;
}

.d2c-final-cta .d2c-cta:hover {
    background-color: var(--white);
    color: var(--dark-green);
}

/* Image Placeholders */
.d2c-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e9f7e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px dashed var(--primary-green);
}

.d2c-large-image {
    height: 350px;
    background: linear-gradient(135deg, #e9f7e8, #c2fa69);
}

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

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.d2c-float {
    animation: float 3s ease-in-out infinite;
}

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

    .d2c-heading,
    .d2c-hero-heading {
        font-size: 2.2rem;
    }

    .d2c-subheading {
        font-size: 1.3rem;
    }

    .d2c-section {
        padding: 60px 0;
    }

    .d2c-hero {
        padding: 70px 0;
    }

    .d2c-process-step {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.contact-header {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.contact-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a) 100%);
    z-index: -2;
}

.contact-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(98, 216, 78, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(194, 250, 105, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.5;
}

.contact-title-main {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: contact-title-glow 3s ease-in-out infinite alternate;
}

@keyframes contact-title-glow {
    from {
        text-shadow: 0 0 10px rgba(98, 216, 78, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(98, 216, 78, 0.8), 0 0 30px rgba(194, 250, 105, 0.6);
    }
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Main Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0 80px;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 30px;
    background: rgba(3, 45, 66, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(98, 216, 78, 0.2);
    backdrop-filter: blur(10px);
    transform: translateX(-50px);
    opacity: 0;
    animation: contact-info-slide 1s ease-out 0.3s forwards;
}

@keyframes contact-info-slide {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contact-info-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-green);
    transform: translateX(10px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(98, 216, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 1.2rem;
    border: 1px solid rgba(98, 216, 78, 0.2);
}

.contact-info-content h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info-content p {
    color: rgba(245, 255, 253, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info-link {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.contact-info-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Map Section */
.contact-map-section {
    margin-top: 40px;
}

.contact-map-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-map-container {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(98, 216, 78, 0.3);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green), var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-map-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(98, 216, 78, 0.05) 20px,
            rgba(98, 216, 78, 0.05) 40px);
    animation: contact-map-grid 20s linear infinite;
}

@keyframes contact-map-grid {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}

.contact-map-placeholder i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    z-index: 1;
    animation: contact-map-pin 2s ease-in-out infinite;
}

@keyframes contact-map-pin {

    0%,
    100% {
        transform: translateY(0);
    }

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

.contact-map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    z-index: 1;
}

.contact-map-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
    z-index: 1;
    text-align: center;
    max-width: 80%;
}

/* Form Section */
.contact-form-section {
    padding: 30px;
    background: rgba(3, 45, 66, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(98, 216, 78, 0.2);
    backdrop-filter: blur(10px);
    transform: translateX(50px);
    opacity: 0;
    animation: contact-form-slide 1s ease-out 0.6s forwards;
}

@keyframes contact-form-slide {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contact-form-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-group {
    position: relative;
}

.contact-form-input {
    width: 100%;
    padding: 15px 0 10px;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 255, 253, 0.3);
    outline: none;
    transition: all 0.3s ease;
}

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

.contact-form-input:focus+.contact-form-label,
.contact-form-input:not(:placeholder-shown)+.contact-form-label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-green);
}

.contact-form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: rgba(245, 255, 253, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Radio Group */
.contact-radio-group {
    margin: 15px 0;
}

.contact-radio-title {
    color: rgba(245, 255, 253, 0.8);
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-radio-options {
    display: flex;
    gap: 20px;
}

.contact-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: rgba(245, 255, 253, 0.8);
    transition: color 0.3s ease;
}

.contact-radio-input {
    display: none;
}

.contact-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(245, 255, 253, 0.4);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-radio-input:checked+.contact-radio-custom {
    border-color: var(--primary-green);
}

.contact-radio-input:checked+.contact-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
}

.contact-radio-label:hover {
    color: var(--white);
}

.contact-radio-label:hover .contact-radio-custom {
    border-color: var(--light-green);
}

/* Select Dropdown */
.contact-select-group {
    position: relative;
    margin-top: 10px;
}

.contact-select {
    width: 100%;
    padding: 15px 0 10px;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 255, 253, 0.3);
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-select:focus {
    border-bottom-color: var(--primary-green);
}

.contact-select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(245, 255, 253, 0.6);
    pointer-events: none;
    transition: color 0.3s ease;
}

.contact-select:focus+.contact-select-arrow {
    color: var(--primary-green);
}

/* Textarea */
.contact-form-textarea {
    width: 100%;
    padding: 15px 0 10px;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 255, 253, 0.3);
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.contact-form-textarea:focus+.contact-form-label,
.contact-form-textarea:not(:placeholder-shown)+.contact-form-label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-green);
}

/* Submit Button */
.contact-form-submit {
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    color: var(--token-964b34fa-91d7-45df-8e37-6955e9cb831a);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(98, 216, 78, 0.3);
}

.contact-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.contact-form-submit:hover::before {
    left: 100%;
}

.contact-form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(98, 216, 78, 0.5);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.contact-footer {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 60, 57, 0.5);
    border-top: 1px solid rgba(98, 216, 78, 0.2);
    margin-top: 40px;
}

.contact-footer-text {
    color: rgba(245, 255, 253, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .contact-title-main {
        font-size: 2.8rem;
    }

    .contact-subtitle {
        font-size: 1.3rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 30px;
    }

    .contact-title-main {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .contact-content {
        padding: 20px 0 50px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 25px;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .contact-radio-options {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }

    .contact-title-main {
        font-size: 1.8rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-form-input,
    .contact-select,
    .contact-form-textarea {
        font-size: 0.95rem;
    }

    .contact-form-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.soft-heading {
    opacity: 0;
    transform: translateX(-10px);
    animation: softReveal 0.6s ease-out forwards;
}

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

.soft-heading::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin-top: 6px;
    background: #ff8c1a;
    /* soft orange */
    opacity: 0;
    animation: lineFade 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes lineFade {
    to {
        opacity: 1;
    }
}


/* =====================================================
   BASE BUTTON STYLES (PRIMARY & OUTLINE)
   ===================================================== */
.btn-primary,
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: var(--btn-height);
    padding-inline: var(--btn-padding-x);
    min-width: 220px;

    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;

    border-radius: 999px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    border: 2px solid transparent;

    box-shadow:
        0 8px 24px rgba(255, 122, 0, 0.35),
        0 4px 12px rgba(10, 37, 64, 0.25);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

/* Hover Effects */
.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    box-shadow:
        0 16px 40px rgba(255, 122, 0, 0.45),
        0 8px 20px rgba(10, 37, 64, 0.35);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--black);
}
 
.animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: var(--btn-height);
    padding-inline: var(--btn-padding-x);

    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);

    border-radius: 999px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;

    box-shadow:
        0 8px 24px rgba(255, 122, 0, 0.35),
        0 4px 12px rgba(10, 37, 64, 0.25);
}

/* Hover lift */
.animated-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 40px rgba(255, 122, 0, 0.45),
        0 8px 20px rgba(10, 37, 64, 0.35);
}
 
.animated-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-green);
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.animated-button:hover::before {
    opacity: 0.1;
}
 
.animated-button span {
    position: absolute;
    display: block;
    background: linear-gradient(to right, transparent, var(--primary-green));
}

/* Top */
.animated-button span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    animation: slideTop 2s linear infinite;
}

/* Right */
.animated-button span:nth-child(2) {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: rgba(10, 37, 64, 0.35);
    animation: slideRight 2s linear -1s infinite;
}

/* Bottom */
.animated-button span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    animation: slideBottom 2s linear infinite;
}

/* Left */
.animated-button span:nth-child(4) {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, transparent, var(--primary-green));
    animation: slideLeft 2s linear -1s infinite;
}
 
@keyframes slideTop {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes slideRight {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

@keyframes slideBottom {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideLeft {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
 
@media (max-width: 768px) {
    :root {
        --btn-height: 52px;
        --btn-padding-x: 32px;
        --btn-font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-outline,
    .animated-button {
        width: 100%;
        justify-content: center;
    }
}

/* Heading with moving orange light */
.brand-sweep-heading {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    text-align: center;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    text-align: center;
    /* Text color fallback */
    color: var(--primary-green);

    /* Gradient light sweep */
    background: linear-gradient(120deg,
            var(--primary-green) 40%,
            var(--orange) 50%,
            var(--primary-green) 60%);

    background-size: 200% auto;
    background-position: 0% center;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: orangeSweep 6s linear infinite;
}

/* Brand mask animation */
@keyframes brandMaskMove {
    0% {
        background-position: -150% 50%;
    }

    100% {
        background-position: 150% 50%;
    }
}

/* Reusable masked heading */
.brand-mask-heading {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    line-height: 1.15;

    /* Fallback color */
    color: var(--primary-green);

    /* Brand gradient mask */
    background-image: linear-gradient(120deg,
            var(--primary-green) 35%,
            var(--orange) 50%,
            var(--light-green) 65%);

    background-size: 300% 100%;
    background-position: 0% 50%;

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: brandMaskMove 8s linear infinite;
}

/* Optional: slower animation for large headings */
h1.brand-mask-heading {
    animation-duration: 12s;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .brand-mask-heading {
        animation-duration: 14s;
    }
}