/* SunHive Landing Page Styles */

body {
    font-family: 'Mulish', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Seamless Section Blending */
section {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Hero Section Exception - Needs top margin for fixed nav */
.hero-section {
    margin-top: 120px !important;
}

/* Global Grid System */
.grid-container {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 20px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(12, 1fr);
        gap: 16px;
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    .grid-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        padding: 0 16px;
    }
}

/* Grid Lines Overlay */
.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.grid-lines-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100vh;
    position: relative;
}

.grid-line {
    border-left: 1px solid rgba(140, 163, 64, 0.3);
    border-right: 1px solid rgba(140, 163, 64, 0.3);
    height: 100%;
    position: relative;
}

.grid-line:first-child {
    border-left: 1px solid rgba(140, 163, 64, 0.5);
}

.grid-line:last-child {
    border-right: 1px solid rgba(140, 163, 64, 0.5);
}

/* Horizontal grid lines */
.grid-lines-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 119px,
        rgba(140, 163, 64, 0.2) 120px,
        rgba(140, 163, 64, 0.2) 121px
    );
    pointer-events: none;
}

@media (max-width: 1024px) {
    .grid-lines-container {
        grid-template-columns: repeat(12, 1fr);
        gap: 16px;
        padding: 0 24px;
    }

    .grid-lines-container::before {
        background-image: repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 99px,
            rgba(140, 163, 64, 0.2) 100px,
            rgba(140, 163, 64, 0.2) 101px
        );
    }
}

@media (max-width: 640px) {
    .grid-lines-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .grid-lines-container::before {
        background-image: repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 79px,
            rgba(140, 163, 64, 0.2) 80px,
            rgba(140, 163, 64, 0.2) 81px
        );
    }
}

/* Grid lines always visible - no toggle needed */

/* Background Gradient System */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: #13120F;
}

.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

/* Green Gradient Orbs */
.gradient-orb-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(140, 163, 64, 0.15) 0%, rgba(140, 163, 64, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(40px);
    animation: float-slow 8s ease-in-out infinite;
}

.gradient-orb-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 163, 64, 0.2) 0%, rgba(140, 163, 64, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: -150px;
    filter: blur(30px);
    animation: float-slow 10s ease-in-out infinite reverse;
}

.gradient-orb-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 163, 64, 0.25) 0%, rgba(140, 163, 64, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    right: 20%;
    filter: blur(25px);
    animation: float-slow 12s ease-in-out infinite;
}

.gradient-orb-4 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(140, 163, 64, 0.18) 0%, rgba(140, 163, 64, 0.06) 45%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: 30%;
    filter: blur(35px);
    animation: float-slow 9s ease-in-out infinite reverse;
}

.gradient-orb-5 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(140, 163, 64, 0.22) 0%, rgba(140, 163, 64, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    filter: blur(30px);
    animation: float-slow 11s ease-in-out infinite;
}

/* Animation for floating orbs */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(-25px);
    }
}

/* Grid helpers */
.col-span-full { grid-column: 1 / -1; }
.col-span-6 { grid-column: span 6; }
.col-span-8 { grid-column: span 8; }
.col-span-12 { grid-column: span 12; }
.col-span-16 { grid-column: span 16; }
.col-span-18 { grid-column: span 18; }
.col-span-20 { grid-column: span 20; }

@media (max-width: 1024px) {
    .col-span-6 { grid-column: span 4; }
    .col-span-8 { grid-column: span 6; }
    .col-span-12 { grid-column: span 8; }
    .col-span-16 { grid-column: span 10; }
    .col-span-18 { grid-column: span 12; }
    .col-span-20 { grid-column: span 12; }
}

@media (max-width: 640px) {
    .col-span-6 { grid-column: span 3; }
    .col-span-8 { grid-column: span 4; }
    .col-span-12 { grid-column: span 6; }
    .col-span-16 { grid-column: span 6; }
    .col-span-18 { grid-column: span 6; }
    .col-span-20 { grid-column: span 6; }
}

/* Navigation Content Blur - Applied only to navigation elements, not the container */
.nav-content-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Reduce blur effects on mobile for better performance */
@media (max-width: 768px) {
    .nav-content-blur {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Smooth dropdown animations */
.dropdown-transition {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar for mobile menu if needed */
#mobileMenu {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#mobileMenu::-webkit-scrollbar {
    display: none;
}

/* Enhanced mobile menu animations */
#mobileMenu {
    transform-origin: top;
}

/* Responsive navigation adjustments */
@media (max-width: 1024px) {
    nav {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

/* Logo responsive sizing */
@media (max-width: 480px) {
    nav .text-2xl {
        font-size: 1.5rem;
    }

    nav .w-10.h-10 {
        width: 2rem;
        height: 2rem;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 443px;
    margin-top: 120px; /* Clear space after fixed nav */
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* Hero Grid Lines */
.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* Vertical Grid Lines */
.hero-vertical-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
}

.hero-vertical-line-1 { left: 120px; }
.hero-vertical-line-2 { left: 240px; }
.hero-vertical-line-3 { left: 360px; }
.hero-vertical-line-4 { left: 480px; opacity: 0.3; }
.hero-vertical-line-5 { left: 600px; opacity: 0.3; }
.hero-vertical-line-6 { left: 720px; opacity: 0.3; }
.hero-vertical-line-7 { left: 840px; opacity: 0.3; }
.hero-vertical-line-8 { left: 960px; opacity: 0.3; }
.hero-vertical-line-9 { left: 1080px; }
.hero-vertical-line-10 { left: 1200px; }
.hero-vertical-line-11 { left: 1320px; }

/* Horizontal Grid Lines */
.hero-horizontal-line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    left: 0;
    right: 0;
}

.hero-horizontal-line-1 { top: 120px; }
.hero-horizontal-line-2 { top: 240px; }
.hero-horizontal-line-3 { top: 360px; }

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1031px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Title */
.hero-title {
    position: relative;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    max-width: 1001px;
}

/* Decorative Border Around Title */
.hero-title-decoration {
    position: absolute;
    width: 237px;
    height: 90px;
    padding: 12px 16px;
    left: 60%;
    top: 80%;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    z-index: -1;
}

/* Decorative Stars */
.hero-star {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--brand-green-accent, #8CA340);
    border-radius: 2px;
    transform: rotate(45deg);

}

.hero-star-1 {
    left: 609px;
    top: 156px;
    z-index: 1000;
}

.hero-star-2 {
    left: 845px;
    top: 156px;
    z-index: 1000
}

.hero-star-3 {
    left: 609px;
    top: 240px;
    z-index: 1000
}

.hero-star-4 {
    left: 845px;
    top: 240px;
    z-index: 1000
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
    max-width: 569px;
}

/* Hero CTA Button */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13.5px 24px;
    background: var(--brand-yellow, #FCB117);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: #FFFFFF;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta:hover {
    background: var(--brand-yellow-dark, #E6AA28);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 177, 23, 0.3);
}

/* CTA Icon */
.hero-cta-icon {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-cta-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--brand-yellow-dark, #E6AA28);
    border-bottom: 1.5px solid var(--brand-yellow-dark, #E6AA28);
    transform: rotate(-45deg);
}

/* Decorative Blur Dots */
.hero-blur-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
    border-radius: 50%;
}

.hero-blur-dot-1 {
    left: 235px;
    top: 355px;
}

.hero-blur-dot-2 {
    left: 1195px;
    top: 235px;
}

.hero-blur-dot-3 {
    left: 1315px;
    top: 355px;
}

.hero-blur-dot-4 {
    left: 115px;
    top: 234px;
}

/* Responsive Hero Styles */
@media (max-width: 1440px) {
    .hero-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1200px) {
    .hero-grid-lines {
        display: none;
    }

    .hero-star {
        display: none;
    }

    .hero-blur-dot {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-section {
        margin-top: 100px; /* Adjusted for tablet nav height */
    }
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        font-size: 16px;
        padding: 12px 20px;
    }

    .hero-section {
        margin-top: 90px; /* Adjusted for mobile nav height */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        min-height: 350px;
        margin-top: 80px; /* Adjusted for smaller mobile nav */
    }

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

/* Showcase Section Styles */
.showcase-section {
    position: relative;
    width: 100%;
    padding: 26px 0 40px 0;
    overflow: hidden;
}

/* Showcase Container */
.showcase-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Blur Orbs */
.showcase-orb-green {
    position: absolute;
    width: 420px;
    height: 420px;
    background: #8CA148;
    border-radius: 50%;
    filter: blur(80px);
    top: 40px;
    left: 40px;
    z-index: 1;
}

.showcase-orb-blue {
    position: absolute;
    width: 420px;
    height: 420px;
    background: #3F56B1;
    border-radius: 50%;
    filter: blur(80px);
    top: 40px;
    right: 40px;
    z-index: 1;
}

/* Main Glass Container */
.showcase-glass-container {
    position: relative;
    width: 100%;
    min-height: 876px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    overflow: hidden;
    z-index: 2;
}

/* Gradient Overlay at Bottom */
.showcase-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 382px;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(16, 16, 20, 0) 0%, #101014 100%);
    z-index: 3;
}

/* Decorative Lines */
.showcase-line-left {
    position: absolute;
    width: 1px;
    height: 252px;
    background: rgba(255, 255, 255, 0.1);
    left: 0;
    top: 30px;
    z-index: 4;
}

.showcase-line-right {
    position: absolute;
    width: 1px;
    height: 252px;
    background: rgba(255, 255, 255, 0.1);
    right: 0;
    top: 173px;
    z-index: 4;
}

/* Showcase Image/Content */
.showcase-image-container {
    position: relative;
    width: calc(100% - 80px);
    height: 796px;
    margin: 40px;
    background: linear-gradient(0deg, rgba(123, 137, 80, 0.05), rgba(123, 137, 80, 0.05));
    border-radius: 24px;
    overflow: hidden;
    z-index: 4;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    border-radius: 24px;
}

.showcase-image-overlay {
    position: absolute;
    bottom: 80px;
    left: 40px;
    right: 40px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 137, 80, 0.2) 0%, rgba(63, 86, 177, 0.2) 100%);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

/* Drive Future Section */
.drive-future-section {
    position: relative;
    padding: 110px 0;
    min-height: 706px;
    overflow: hidden;
}

.drive-future-orb {
    position: absolute;
    width: 182px;
    height: 182px;
    background: #8CA340;
    border-radius: 50%;
    filter: blur(135px);
    top: 280px;
    right: 300px;
    z-index: 1;
}

.drive-future-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    min-height: 600px;
    z-index: 2;
}

/* Content Side */
.drive-future-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 495px;
}

.drive-future-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drive-future-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drive-future-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #7B8950;
    margin: 0;
}

.drive-future-description {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.drive-future-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    width: fit-content;
    height: 50px;
    background: #FCB117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drive-future-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 177, 23, 0.3);
}

.drive-future-cta span {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.drive-future-arrow {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Side */
.drive-future-visual {
    position: relative;
    width: 490px;
    height: 490px;
}

.drive-future-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.drive-future-grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.drive-future-grid-line.vertical {
    width: 1px;
    height: 490px;
    top: 0;
}

.drive-future-grid-line.horizontal {
    width: 490px;
    height: 1px;
    left: 0;
}

.drive-future-image-large {
    position: absolute;
    width: 374px;
    height: 334px;
    top: 80px;
    right: 0;
    background: linear-gradient(0deg, rgba(123, 137, 80, 0.05), rgba(123, 137, 80, 0.05));
    border-radius: 24px;
    overflow: hidden;
    z-index: 3;
}

.drive-future-image-small {
    position: absolute;
    width: 370px;
    height: 334px;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(24, 25, 22, 0.2), rgba(24, 25, 22, 0.2));
    border-radius: 24px;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
}

.drive-future-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drive-future-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: transform 0.3s ease;
}

.drive-future-image-small:hover .drive-future-play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .drive-future-container {
        gap: 60px;
        text-align: left;
        margin-left: 30px;
    }

    .drive-future-title {
        font-size: 56px;
    }
    .drive-future-cta{
        width: 300px;

    }
    .drive-future-visual {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .drive-future-grid-line.vertical {
        height: 400px;
    }

    .drive-future-grid-line.horizontal {
        width: 400px;
    }

    .drive-future-image-large {
        width: 300px;
        height: 250px;
    }

    .drive-future-image-small {
        width: 280px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .drive-future-section {
        padding: 80px 0;
    }

    .drive-future-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
        justify-items: center;
        text-align: center;
        /* max-width: 600px; */
    }

    .drive-future-title {
        font-size: 42px;
    }

    .drive-future-description {
        font-size: 16px;
    }

    .drive-future-cta {
        padding: 5px 16px;
        width: 180px;
        height: 40px;
        margin: 0 auto;
    }

    .drive-future-visual {
        width: 500px;
        height: 250px;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .drive-future-grid {
        display: none;
    }

    .drive-future-image-large {
        position: relative;
        width: 240px;
        height: 180px;
        top: 0;
        right: 0;
    }

    .drive-future-image-small {
        position: relative;
        width: 240px;
        height: 180px;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 480px) {
    .drive-future-title {
        font-size: 32px;
    }

    .drive-future-description {
        font-size: 14px;
    }

    .drive-future-cta {
        width: 150px;
        height: 45px;
        padding: 10px 20px;
    }

    .drive-future-container{
        max-width: 900px;
        margin: 0 auto;

    }

    .drive-future-cta span {
        font-size: 16px;
    }

    .drive-future-visual {
        width: 280px;
        height: 280px;
    }

    .drive-future-grid-line.vertical {
        height: 280px;
    }

    .drive-future-grid-line.horizontal {
        width: 280px;
    }

    .drive-future-image-large {
        width: 200px;
        height: 150px;
    }

    .drive-future-image-small {
        width: 180px;
        height: 150px;
    }
}

/* Our Solutions Section */
.solutions-section {
    position: relative;
    padding: 120px 0;
    min-height: 706px;
    overflow: hidden;
}

.solutions-orb-1 {
    position: absolute;
    width: 182px;
    height: 182px;
    background: #8CA340;
    border-radius: 50%;
    filter: blur(135px);
    top: 111px;
    left: calc(50% - 91px - 216px);
    z-index: 1;
}

.solutions-orb-2 {
    position: absolute;
    width: 182px;
    height: 182px;
    background: #8CA340;
    border-radius: 50%;
    filter: blur(135px);
    bottom: 111px;
    left: calc(50% - 91px - 1113px);
    z-index: 1;
}

.solutions-grid {
    position: absolute;
    width: 490px;
    height: 490px;
    top: 50%;
    right: calc(50% - 245px + 475px);
    transform: translateY(-50%);
    z-index: 1;
}

.solutions-grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.solutions-grid-line.vertical {
    width: 1px;
    height: 490px;
    top: 0;
}

.solutions-grid-line.horizontal {
    width: 490px;
    height: 1px;
    left: 0;
}

.solutions-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 84px;
    z-index: 2;
}

.solutions-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #7B8950;
    margin: 0;
    width: 100%;
}

.solutions-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.solution-card {
    flex: none;
    width: 320px;
    height: 240px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: #FEEFD1;
    border-radius: 24px;
    width: 360px;
    height: 300px;
    padding: 24px;
    gap: 30px;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(252, 177, 23, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-content {
    gap: 48px;
    justify-content: space-between;
}

.solution-card:hover .solution-icon {
    width: 98px;
    height: 98px;
    background: #FEE5B2;
    border: 1px solid #FEEFD1;
    border-radius: 512px;
}

/* Font Awesome icon size increase on hover */
.solution-card:hover .solution-icon i {
    font-size: 32px;
    color: #FCB117;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-heading {
    font-size: 24px;
    color: #FCB117;
    font-weight: 600;
}

.solution-card:hover .solution-description {
    font-size: 16px;
    color: #FCB117;
    font-weight: 300;
}

.solution-card:hover .solution-cta {
    display: none;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.solution-icon {
    width: 24px;
    height: 24px;
    background: #E6E8DB;
    border: 1px solid #E6E8DB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.solution-icon i {
    font-size: 12px;
    color: #808C4A;
    transition: all 0.3s ease;
}
.solution-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.solution-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-heading {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #2E2E2F;
    margin: 0;
}

.solution-description {
    font-family: 'Mulish', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #565656;
    margin: 0;
}

.solution-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    width: 140px;
    height: 40px;
    border: none;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.solution-cta:hover {
    background: rgba(128, 140, 74, 0.1);
}

.solution-cta span {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #808C4A;
}

.solution-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.solution-cta:hover .solution-arrow {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-cards {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .solutions-title {
        font-size: 56px;
    }

    .solution-card {
       width: 30%;
        min-width: 280px;
        max-width: 320px;
    }

    .solutions-grid {
        display: none;
    }

    .solutions-orb-1,
    .solutions-orb-2 {
        display: none;
    }

    .solution-card:hover {
        background: #FEEFD1;
        border-radius: 24px;
        padding: 24px;
        gap: 30px;
        box-shadow: 0 20px 40px rgba(252, 177, 23, 0.2);
        transition: all 0.3s ease;
        width: 32%;
    }
}


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


    .solutions-container {
        gap: 60px;
        padding: 0 16px;
    }

    .solutions-title {
        font-size: 42px;
    }

    .solution-card {
        width: 10%;
        min-width: 200px;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .solutions-container {
        gap: 40px;
    }

    .solutions-title {
        font-size: 32px;
    }

    .solution-heading {
        font-size: 20px;
    }

    .solution-description {
        font-size: 14px;
    }

    .solution-cta {
        width: 120px;
        height: 45px;
        padding: 10px 6px;
    }

    .solution-cta span {
        font-size: 16px;
    }
}

/* Innovation Projects Section */
.projects-section {
    position: relative;
    padding: 120px 0;
    min-height: 1369px;
    overflow: hidden;
}

.projects-orb-1 {
    position: absolute;
    width: 182px;
    height: 182px;
    background: #8CA340;
    border-radius: 50%;
    filter: blur(50px);
    top: 111px;
    left: calc(50% - 91px - 216px);
    z-index: 1;
}

.projects-orb-2 {
    position: absolute;
    width: 182px;
    height: 182px;
    background: #8CA340;
    border-radius: 50%;
    filter: blur(50px);
    bottom: 111px;
    left: calc(50% - 91px - 1093px);
    z-index: 1;
}

.projects-grid {
    position: absolute;
    width: 490px;
    height: 490px;
    top: 50%;
    right: calc(50% - 245px + 475px);
    transform: translateY(-50%);
    z-index: 1;
}

.projects-grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.projects-grid-line.vertical {
    width: 1px;
    height: 490px;
    top: 0;
}

.projects-grid-line.horizontal {
    width: 490px;
    height: 1px;
    left: 0;
}

.projects-container {
    position: relative;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 100px;
    z-index: 2;
}

.projects-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #7B8950;
    margin: 0;
    width: 100%;
    align-self: stretch;
}

.projects-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.project-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card.featured {
    padding: 10px 24px;
}

.project-card.collapsed {
    padding: 10px 24px;
    border: 1px solid #A6A7A7;
    min-height: 104px;
    display: flex;
    align-items: center;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 50px;
    width: 100%;
}

.project-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #010101;
    margin: 0;
    flex: 1;
    margin-right: 16px;
}

.project-toggle {
    width: 40px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.project-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.project-image {
    position: relative;
    width: 100%;
    height: 675px;
    margin-top: 16px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    max-height: 675px;
}

/* Project Image Collapsed State */
.project-card.collapsed .project-image {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    visibility: hidden;
}

/* Project Toggle Icon Transitions */
.project-toggle svg {
    transition: transform 0.3s ease;
}

.project-toggle svg path {
    transition: d 0.3s ease;
}

/* Project Header Hover Effect */
.project-header:hover {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Font Awesome Icon Styles for Project Section */
.project-toggle i {
    font-size: 14px;
    color: #808080;
    transition: transform 0.3s ease;
}

.project-tag i {
    font-size: 12px;
    color: #F1F1F1;
}

.project-author i,
.project-date i {
    font-size: 12px;
    color: #F1F1F1;
}

.project-arrow i {
    font-size: 10px;
    color: #E6AA28;
}

/* Ensure proper icon alignment */
.project-tag,
.project-author,
.project-date {
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Black overlay for project images */
.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Additional darker overlay for enhanced readability */
.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 266px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    z-index: 2;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 512px;
    height: 39px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.project-tag span {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #F1F1F1;
    white-space: nowrap;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.project-description {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
    max-width: 872px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 872px;
}

.project-author,
.project-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-author span,
.project-date span,
.project-read-time {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #F1F1F1;
}

.project-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10.5px 20px;
    margin-top: -80px;
    width: 170px;
    height: 50px;
    background: #FCB117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    white-space: nowrap;
}

.project-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 177, 23, 0.3);
}

.project-cta span {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.project-arrow {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-container {
        align-items: center;
        gap: 80px;
        padding: 0 16px;
    }

    .projects-title {
        font-size: 56px;
    }

    .project-image {
        height: 500px;
    }

    .project-header {
        justify-content: space-between;
        width: 100%;
    }

    .project-toggle {
        margin-left: auto;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
    }

    .projects-grid {
        display: none;
    }

    .projects-orb-1,
    .projects-orb-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .project-overlay {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: auto !important;
        min-height: 250px !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(10px) !important;
    }

    .project-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        flex: 1 !important;
    }

    .project-cta {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        align-self: center !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 320px) {
    .project-meta, .project-tags{
        display: none;
    }

}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    min-height: 711px;
    overflow: hidden;
}

.testimonials-orb {
    position: absolute;
    width: 182px;
    height: 182px;
    background: #8CA340;
    border-radius: 50%;
    filter: blur(50px);
    top: 171px;
    right: 320px;
    z-index: 1;
}

.testimonials-grid {
    position: absolute;
    width: 490px;
    height: 490px;
    top: 33px;
    right: 315px;
    z-index: 1;
}

.testimonials-grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.testimonials-grid-line.vertical {
    width: 1px;
    height: 490px;
    top: 0;
}

.testimonials-grid-line.horizontal {
    width: 490px;
    height: 1px;
    left: 0;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    z-index: 2;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.testimonials-title-section {
    flex: 1;
}

.testimonials-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #7B8950;
    margin: 0;
    max-width: 431px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #7B8950;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-nav-btn.prev {
    background: transparent;
}

.testimonials-nav-btn.next {
    background: #7B8950;
}

.testimonials-nav-btn:hover {
    transform: scale(1.1);
}

.testimonials-content {
    display: flex;
    align-items: center;
    gap: 296px;
    width: 100%;
}

.testimonials-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 219px;
}

.testimonial-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 12px 12px 24px;
    gap: 8px;
    opacity: 0.8;
    height: 129px;
    box-sizing: border-box;
}

.stat-number {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

.stat-label {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

.testimonials-carousel {
    display: flex;
    gap: 64px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 685px;
    height: 231px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: none;
    width: 440px;
    height: 231px;
    background: rgba(123, 137, 80, 0.39);
    box-shadow: 0px 4px 14.1px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 24px;
}

.quote-icon {
    flex-shrink: 0;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.testimonial-quote {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border: 1px solid #7B8950;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.author-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-content {
        flex-direction: row;
        gap: 40px;
    }

    .testimonials-title {
        font-size: 56px;
        max-width: none;
    }

    .testimonials-carousel {
        width: 100%;
    }

    .testimonials-grid {
        display: none;
    }

    .testimonials-orb {
        display: none;
    }
}

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

    .testimonials-container {
        gap: 50px;
        padding: 0 16px;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .testimonials-title {
        font-size: 42px;
        text-align: center;
    }

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

    .testimonials-stats {
        display: none;
    }

    .testimonial-stat {
        text-align: center;
        min-width: 150px;
    }

    .testimonial-card {
        width: 350px;
        height: auto;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-stat {
        min-width: 200px;
        height: auto;
        padding: 16px;
    }

    .stat-number {
        font-size: 32px;
        line-height: 48px;
    }

    .testimonial-card {
        width: 300px;
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Footer CTA Section */

.footer-cta-section {
    text-align: center;
}

/* Center the CTA content and buttons */
.footer-cta-content {
    text-align: center;
    margin-bottom: 2rem;
}

/* Style the buttons container to center and align buttons side by side */
.footer-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Make buttons display side by side and centered */
.footer-cta-button {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    background: none;
}

/* Add hover effect for Schedule Consultation button */
.footer-cta-button:first-of-type:hover {
    transform: translateY(-2px);
}

/* Second button (Download Brochure) - black background, orange text, no arrow */
.footer-cta-button:last-of-type {
    background: #000000;
    color: #E6AA28;
    border: 2px solid #E6AA28;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-cta-button:last-of-type:hover {
    background: #000000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 170, 40, 0.3);
}

/* Ensure the arrow only appears on the first button */
.footer-cta-button:last-of-type .footer-cta-arrow {
    display: none;
}

.footer-cta-section {
    position: relative;
    padding: 80px 0 0 0;
    min-height: 800px;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0F0F0D 50%, #000000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* SVG Background Container */
.footer-svg-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* SVG Ellipse Base Styles */
.footer-ellipse-svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1440px;
    height: auto;
}

/* Main Dark Ellipse */
.footer-ellipse-main {
    top: 60px;
    z-index: 1;
}

/* Secondary Dark Ellipse - Slightly offset for depth */
.footer-ellipse-secondary {
    top: 80px;
    z-index: 2;
    opacity: 0.7;
}

/* White Gradient Ellipse - Top layer for highlights */
.footer-ellipse-white {
    top: 20px;
    z-index: 3;
}

/* SVG Elements - Ensure proper scaling */
.footer-ellipse-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Legacy ellipses - kept for potential future use */
.footer-ellipse-green,
.footer-ellipse-dark {
    display: none;
}

/* Central Logo Container */
.footer-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    z-index: 10;
}

.footer-glass-container {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    border-radius: 60px;
    position: relative;
    z-index: 8;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-logo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f8f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-orb-1 {
    display: none;
    position: absolute;
    width: 140px;
    height: 140px;
    top: 0;
    left: 0;
    background: linear-gradient(150.87deg, rgba(140, 163, 64, 0) 31.23%, #8CA340 67.89%);
    border-radius: 50%;
    z-index: 5;
}

.footer-logo-orb-2 {
    display: none;
    position: absolute;
    width: 140px;
    height: 140px;
    top: 0;
    left: 0;
    background: linear-gradient(33.31deg, rgba(140, 163, 64, 0) 26.63%, #8CA340 69.83%);
    border-radius: 50%;
    transform: scaleX(-1);
    z-index: 6;
}

.footer-dot-1 {
    display: none;
    position: absolute;
    width: 8px;
    height: 8px;
    right: 5px;
    top: 68px;
    background: #FCB117;
    border-radius: 50%;
    z-index: 9;
}

.footer-dot-2 {
    display: none;
    position: absolute;
    width: 8px;
    height: 8px;
    left: -3px;
    top: 76px;
    background: #FCB117;
    border-radius: 50%;
    z-index: 9;
}

/* CTA Content */
.footer-cta-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto 48px auto;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-cta-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 300;
    font-size: 64px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-cta-description {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 480px;
    margin: 0 auto;
}

/* CTA Button */
.footer-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    width: auto;
    min-width: 200px;
    height: 56px;
    background: linear-gradient(135deg, #FCB117 0%, #FCB117 100%);
    border: none;
    border-radius: 28px;
    margin: 0 auto 30px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
    box-shadow:
        0 8px 24px rgba(255, 107, 26, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(255, 107, 26, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #FF9B5A 0%, #FF7A32 100%);
}

.footer-cta-button span {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-cta-arrow {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

/* Separators - Remove for seamless blending */
.footer-separator-top,
.footer-separator-bottom {
    display: none;
}

/* Footer Links - Show for navigation */
.footer-links-container {
    display: grid;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    z-index: 10;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    margin-top: 100px;
}

.footer-column-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FCB117;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
    flex-shrink: 0;
}

/* Copyright */
.footer-copyright {
    display: flex;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 20px;
    margin-top: 30px;
    z-index: 10;
}

.footer-copyright span {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-links-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 90px;
        padding: 50px;
    }

    .footer-cta-title {
        font-size: 56px;
    }

    .footer-separator-top,
    .footer-separator-bottom {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 80px 0 40px 0;
    }

    .footer-links-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 30px;
        text-align: left;
        padding: 0 30px;
    }

    .footer-column {
        flex: 1 1 200px;
        min-width: 200px;
        max-width: 300px;
    }

    .footer-cta-title {
        font-size: 42px;
    }

    .footer-cta-description {
        font-size: 16px;
    }

    .footer-cta-content {
        margin-bottom: 24px;
    }

    /* SVG Ellipses Mobile Adjustments */
    .footer-ellipse-svg {
        width: 120vw;
        max-width: none;
    }

    .footer-ellipse-main {
        top: 40px;
    }

    .footer-ellipse-secondary {
        top: 60px;
    }

    .footer-ellipse-white {
        top: 0;
    }

    .footer-cta-button {

    }

    .footer-separator-top {
        margin-bottom: 40px;
    }

    .footer-separator-bottom {
        margin: 40px auto 24px auto;
    }
}

@media (max-width: 480px) {
    .footer-cta-title {
        font-size: 32px;
    }

    .footer-cta-description {
        font-size: 14px;
    }
    .footer-cta-buttons {
        flex-direction: column;
        gap: 0rem;
    }

    .footer-cta-button {
        /* width: 180px; */
        height: 45px;
        width: 100%;
        justify-content: center;
    }

    .footer-cta-button span {
        font-size: 16px;
    }

    .footer-logo-container {
        width: 100px;
        height: 100px;
    }

    .footer-glass-container {
        width: 100px;
        height: 100px;
        border-radius: 60px;
    }

    .footer-logo-circle {
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .footer-logo-img {
        width: 30px;
        height: 30px;
    }

    .footer-logo-orb-1,
    .footer-logo-orb-2 {
        width: 100px;
        height: 100px;
    }

    .footer-column-title {
        font-size: 18px;
    }

    .footer-link {
        font-size: 16px;
    }

    .footer-contact-item {
        font-size: 16px;
    }
}

/* Contact Info center alignment for very small screens */
@media (max-width: 320px) {
    .footer-column:nth-child(3) .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

/* Metrics Section */
.metrics-section {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #101014;
}

.metrics-container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.metrics-grid {
    display: flex;
    align-items: center;
    width: 100%;
    height: 164px;
    position: relative;
    z-index: 2;
}


.metric-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 12px 12px 24px;
    gap: 36px;
    height: 164px;
    border-right: 1px dashed #D0D0D1;
    position: relative;
}

.metric-card:last-child {
    border-right: none;
}

.metric-card.opacity-80 {
    opacity: 0.8;
}

/* Metric Number */
.metric-number {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

/* Metric Label */
.metric-label {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

/* Side Gradient Fades */
.metrics-fade-left {
    position: absolute;
    width: 200px;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(270deg, rgba(16, 16, 20, 0) 0%, #101014 100%);
    transform: scaleX(-1);
    z-index: -1;
    pointer-events: none;
}

.metrics-fade-right {
    position: absolute;
    width: 200px;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, rgba(16, 16, 20, 0) 0%, #101014 100%);
    z-index: -1;
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .showcase-section {
        padding: 20px 0 30px 0;
    }

    .showcase-container {
        padding: 0 16px;
    }

    .showcase-image-container {
        height: 600px;
        margin: 30px;
        width: calc(100% - 60px);
    }

    .showcase-glass-container {
        min-height: 680px;
    }

    .metrics-section {
        padding: 25px 0;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
        gap: 0;
    }

    .metric-card {
        padding: 20px 16px;
        gap: 12px;
        height: auto;
        min-height: 120px;
        width: 100%;
        box-shadow: none;
        background: transparent;
    }

    .metrics-fade-left{
        display: none;
    }

    .metrics-fade-right{
        display: none;
    }

    .metric-card:nth-child(2n) {
        border-right: none;
    }

    .metric-card:nth-child(3),
    .metric-card:nth-child(4) {
        border-bottom: none;
    }

    .metric-card:last-child {
        border-right: none;
        border-bottom: none;
    }

    .metric-number {
        font-size: 32px;
        font-weight: 700;
        text-shadow: none;
    }

    .metric-label {
        font-size: 11px;
        font-weight: 400;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        padding: 15px 0 25px 0;
    }

    /* Start hiding some decorative elements */
    .showcase-line-left,
    .showcase-line-right {
        opacity: 0.3;
    }

    .showcase-orb-green,
    .showcase-orb-blue {
        width: 280px;
        height: 280px;
    }

    .showcase-image-container {
        height: 400px;
        margin: 20px;
        width: calc(100% - 40px);
    }

    .showcase-glass-container {
        min-height: 460px;
        border-radius: 24px;
    }

    .showcase-gradient-overlay {
        height: 200px;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
        gap: 0;
    }

    .metric-card {
        padding: 16px 12px;
        gap: 8px;
        height: auto;
        min-height: 100px;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
    }

    .metric-number {
        font-size: 24px;
        font-weight: 600;
        text-shadow: none;
        letter-spacing: 0;
    }

    .metric-label {
        font-size: 10px;
        line-height: 14px;
        font-weight: 400;
    }

    .metrics-fade-left,
    .metrics-fade-right {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .showcase-section {
        padding: 10px 0 20px 0;
    }

    /* Hide decorative elements on mobile - show only image */
    .showcase-orb-green,
    .showcase-orb-blue,
    .showcase-line-left,
    .showcase-line-right,
    .showcase-gradient-overlay {
        display: none;
    }

    .metrics-section {
        padding: 0px 0;
        padding-bottom: 100px;
    }

    .metrics-grid {
        height: 100px;
    }

    .metric-card {
        padding: 6px 4px 6px 8px;
        gap: 12px;
        height: 100px;
    }

    .metric-number {
        font-size: 28px;
        line-height: 120%;
    }

    .metric-label {
        font-size: 10px;
        line-height: 14px;
    }

    .metrics-fade-left,
    .metrics-fade-right {
        width: 80px;
    }
}

/* Navigation Dropdown Icons */
#aboutDropdownIcon,
#mobileDropdownIcon {
    transition: transform 0.2s ease-in-out;
    font-size: 14px;
}

/* About dropdown button spacing */
#aboutDropdown button {
    gap: 12px !important;
}

/* Ensure Font Awesome icons inherit color properly */
.fa-chevron-down {
    color: inherit;
}