:root {
    --primary-green: #4FAB3C;
    --light-green: #AED581;
    --primary-yellow: #F7D433;
    --light-yellow: #FBEB6B;
    --dark-bg: #2E2E2E;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-gray: #6B6B6B;
    --border-light: #E8E8E8;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 15px 0;
    background: var(--dark-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(232, 232, 232, 0.5);
    position: fixed;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Enhanced Navbar Hide/Show Animation */
.navbar.loaded {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.navbar.loaded.navbar-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.navbar.loaded.navbar-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.navbar.loaded.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.navbar.scrolled .navbar-brand .brand-name,
.navbar.scrolled .navbar-nav .nav-link {
    color: white !important;
}

.navbar.scrolled .brand-tagline {
    color: var(--primary-green) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--text-dark) !important;
    text-decoration: none;
}


.logo-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.logo-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin: 0;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--primary-green);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 3px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
    background: rgba(124, 179, 66, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
    background: rgba(124, 179, 66, 0.15);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Animation */
.navbar {
    opacity: 0;
    transform: translateY(-100px);
    animation: navbarSlideDown 1s ease-out 0.2s forwards;
}

/* Override animations after page load for scroll effects */
.navbar.loaded {
    animation: none !important;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out !important;
}

/* Ensure navbar is visible initially */
.navbar.navbar-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Force visibility during initial load */
.navbar:not(.loaded) {
    opacity: 1;
    transform: translateY(0);
}

.navbar-brand {
    opacity: 0;
    transform: translateX(-30px);
    animation: navbarBrandSlideIn 0.8s ease-out 0.5s forwards;
}

.navbar-nav {
    opacity: 0;
    animation: navbarNavFadeIn 1s ease-out 0.8s forwards;
}

.nav-item {
    opacity: 0;
    transform: translateY(-20px);
    animation: navItemSlideIn 0.6s ease-out forwards;
}

.nav-item:nth-child(1) { animation-delay: 1s; }
.nav-item:nth-child(2) { animation-delay: 1.1s; }
.nav-item:nth-child(3) { animation-delay: 1.2s; }
.nav-item:nth-child(4) { animation-delay: 1.3s; }
.nav-item:nth-child(5) { animation-delay: 1.4s; }
.nav-item:nth-child(6) { animation-delay: 1.5s; }

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

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

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

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

/* Logo Animation */
.logo-icon {
    opacity: 0;
    transform: scale(0.8);
    animation: logoIconSimple 0.8s ease-out 0.6s forwards;
}

.brand-text {
    opacity: 0;
    transform: translateX(-15px);
    animation: brandTextSlide 0.6s ease-out 0.8s forwards;
}

.brand-name {
    display: inline-block;
    opacity: 0;
    animation: brandNameFade 0.6s ease-out 0.9s forwards;
}

.brand-tagline {
    opacity: 0;
    animation: brandTaglineFade 0.6s ease-out 1.1s forwards;
}

@keyframes logoIconSimple {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

/* Nav Link Hover Enhancement */
.nav-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    transition: left 0.3s ease;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

/* Mobile Navbar Animation */
.navbar-toggler {
    opacity: 0;
    transform: scale(0.8);
    animation: togglerFadeIn 0.6s ease-out 1.6s forwards;
}

@keyframes togglerFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Navbar Animations */
@media (max-width: 991px) {
    .navbar-collapse {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-item {
        transform: translateX(-30px);
        animation: mobileNavItemSlide 0.4s ease-out forwards;
    }

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: heroSectionFadeIn 1.5s ease-out 0.5s forwards;
}

/* Hero Background Animation */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(124, 179, 66, 0.1) 0%, 
        transparent 25%, 
        rgba(247, 212, 51, 0.1) 50%, 
        transparent 75%, 
        rgba(124, 179, 66, 0.1) 100%);
    background-size: 400% 400%;
    animation: heroGradientMove 8s ease-in-out infinite;
    z-index: 1;
    opacity: 0;
    animation: heroOverlayFadeIn 2s ease-out 1s forwards, heroGradientMove 8s ease-in-out 2s infinite;
}

@keyframes heroSectionFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes heroGradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
    animation: heroBackgroundMove 15s ease-in-out infinite;
}

/* Hero Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-floating-shape:nth-child(1) {
    top: 15%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.hero-floating-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    transform: rotate(45deg);
    animation-delay: 2s;
    animation-duration: 12s;
}

.hero-floating-shape:nth-child(3) {
    bottom: 25%;
    left: 20%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.hero-floating-shape:nth-child(4) {
    top: 30%;
    right: 25%;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 1s;
    animation-duration: 11s;
}

.hero-floating-shape:nth-child(5) {
    top: 70%;
    left: 50%;
    width: 35px;
    height: 35px;
    background: var(--primary-green);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation-delay: 3s;
    animation-duration: 9s;
}

/* Hero Background Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: particlesFadeIn 3s ease-out 1.5s forwards;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(124, 179, 66, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.hero-particle:nth-child(2) {
    top: 40%;
    left: 20%;
    background: rgba(247, 212, 51, 0.6);
    animation-delay: 1s;
    animation-duration: 10s;
}

.hero-particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.hero-particle:nth-child(4) {
    top: 30%;
    right: 20%;
    background: rgba(247, 212, 51, 0.6);
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.hero-particle:nth-child(5) {
    top: 70%;
    right: 15%;
    animation-delay: 0.5s;
    animation-duration: 11s;
}

.hero-particle:nth-child(6) {
    top: 50%;
    left: 50%;
    background: rgba(247, 212, 51, 0.6);
    animation-delay: 2.5s;
    animation-duration: 6s;
}

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

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.4;
    }
}

/* Hero Zoom Effect */
.hero-section {
    background-attachment: fixed;
}

@keyframes heroZoomIn {
    from {
        background-size: 110%;
    }
    to {
        background-size: 105%;
    }
}

/* Hero Light Effect */
.hero-light {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(124, 179, 66, 0.1) 0%, 
        transparent 40%);
    animation: heroLightMove 12s ease-in-out infinite;
    z-index: 1;
    opacity: 0;
    animation: heroLightFadeIn 3s ease-out 2s forwards, heroLightMove 12s ease-in-out 3s infinite;
}

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

@keyframes heroLightMove {
    0%, 100% {
        transform: translate(-20%, -20%) rotate(0deg);
    }
    25% {
        transform: translate(-10%, -30%) rotate(90deg);
    }
    50% {
        transform: translate(-30%, -10%) rotate(180deg);
    }
    75% {
        transform: translate(-40%, -25%) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeInUp 1.2s ease-out 0.3s forwards;
    padding: 20px 0;
}

.hero-section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .row {
    width: 100%;
}

/* Hero Animation Keyframes */
@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroButtonPop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes heroBackgroundMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 0.6s forwards;
}

.hero-title .highlight {
    color: var(--primary-yellow);
    position: relative;
}



.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 0.9s forwards;
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: heroButtonPop 1s ease-out 1.2s forwards;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 13px 35px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(50px);
    animation: heroSlideInRight 1.2s ease-out 0.8s forwards;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    transform: scale(0.95);
    animation: heroFloat 6s ease-in-out infinite 2s;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-bg), var(--border-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 3rem;
}

/* Scroll Animations for All Sections */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-fade {
    opacity: 0;
    transition: all 1s ease-out;
}

.scroll-animate-fade.animate-in {
    opacity: 1;
}

/* Staggered Animation */
.scroll-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-stagger.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-stagger:nth-child(1) { transition-delay: 0.1s; }
.scroll-stagger:nth-child(2) { transition-delay: 0.2s; }
.scroll-stagger:nth-child(3) { transition-delay: 0.3s; }
.scroll-stagger:nth-child(4) { transition-delay: 0.4s; }
.scroll-stagger:nth-child(5) { transition-delay: 0.5s; }
.scroll-stagger:nth-child(6) { transition-delay: 0.6s; }

/* Section Headers Animation */
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.4s;
}

.section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cards Animation */
.service-card,
.process-card,
.team-card,
.testimonial-card,
.stat-card-dark {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.7s ease-out;
}

.service-card.animate-in,
.process-card.animate-in,
.team-card.animate-in,
.testimonial-card.animate-in,
.stat-card-dark.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Gallery Animation */
.gallery-item {
    opacity: 0;
    transform: scale(0.8) rotate(5deg);
    transition: all 0.6s ease-out;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Stats Animation */
.stat-item,
.floating-stat {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease-out;
}

.stat-item.animate-in,
.floating-stat.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Features Animation */
.welcome-feature,
.feature-item,
.promise-feature {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.welcome-feature.animate-in,
.feature-item.animate-in,
.promise-feature.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Promise Section Specific Animations */
.promise-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.promise-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.promise-stats {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.promise-stats.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Founder Section Animations */
.founder-left,
.founder-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.founder-left {
    transform: translateX(-50px);
}

.founder-right {
    transform: translateX(50px);
}

.founder-left.animate-in,
.founder-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Form Animation */
.contact-form {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.contact-form.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Animation */
.footer-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.footer-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Responsive Animations */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        height: auto;
        padding: 100px 0 50px;
    }

    .hero-content {
        animation-duration: 1s;
        animation-delay: 0.2s;
        padding: 0;
    }

    .hero-title {
        animation-delay: 0.4s;
        font-size: 2.5rem;
    }

    .hero-subtitle {
        animation-delay: 0.6s;
        font-size: 1.1rem;
    }

    .hero-buttons {
        animation-delay: 0.8s;
        flex-direction: column;
        gap: 15px;
    }

    .hero-image {
        animation: heroFadeInUp 1s ease-out 0.6s forwards;
        transform: translateY(30px);
    }

    .hero-floating-shape {
        display: none;
    }

    .hero-card {
        animation-duration: 4s;
    }

    .hero-section .container {
        height: auto;
        display: block;
    }
}

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

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

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

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Handle very tall screens */
@media (min-height: 900px) {
    .hero-section {
        min-height: 100vh;
    }
}

/* Handle very short screens */
@media (max-height: 600px) {
    .hero-section {
        min-height: 600px;
        height: auto;
        padding: 80px 0;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.2" fill="%23F7D433" opacity="0.08"/><circle cx="50" cy="50" r="0.8" fill="%237CB342" opacity="0.1"/><circle cx="35" cy="8" r="0.6" fill="%23F7D433" opacity="0.05"/><circle cx="8" cy="45" r="1" fill="%237CB342" opacity="0.07"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>') repeat;
    z-index: 0;
}

.services-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.services-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.services-shape-1 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.12), rgba(124, 179, 66, 0.08));
    top: 8%;
    right: 12%;
    animation: float 10s ease-in-out infinite;
}

.services-shape-2 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, rgba(124, 179, 66, 0.15), rgba(247, 212, 51, 0.08));
    top: 65%;
    left: 8%;
    animation: float 8s ease-in-out infinite 2s;
}

.services-shape-3 {
    width: 160px;
    height: 160px;
    background: linear-gradient(225deg, rgba(247, 212, 51, 0.08), rgba(124, 179, 66, 0.12));
    bottom: 15%;
    right: 18%;
    animation: float 9s ease-in-out infinite 1s;
}

.services-shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(315deg, rgba(124, 179, 66, 0.18), rgba(247, 212, 51, 0.1));
    top: 35%;
    left: 15%;
    animation: float 7s ease-in-out infinite 3s;
}

.services-shape-5 {
    width: 110px;
    height: 110px;
    background: linear-gradient(180deg, rgba(247, 212, 51, 0.1), rgba(124, 179, 66, 0.14));
    top: 25%;
    left: 35%;
    animation: float 11s ease-in-out infinite 4s;
}

.services-shape-6 {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, rgba(124, 179, 66, 0.2), rgba(247, 212, 51, 0.12));
    bottom: 40%;
    left: 25%;
    animation: float 6s ease-in-out infinite 1.5s;
}

.services-diamond-shape {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, rgba(247, 212, 51, 0.15), rgba(124, 179, 66, 0.1));
    transform: rotate(45deg);
    top: 50%;
    right: 30%;
    animation: rotate 15s linear infinite;
}

.services-triangle-shape {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid rgba(247, 212, 51, 0.1);
    top: 15%;
    left: 25%;
    animation: float 8s ease-in-out infinite 2.5s;
}

.services-hexagon-shape {
    position: absolute;
    width: 70px;
    height: 40.41px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.12), rgba(247, 212, 51, 0.08));
    margin: 20.21px 0;
    top: 45%;
    right: 8%;
    animation: float 9s ease-in-out infinite 3.5s;
}

.services-hexagon-shape:before,
.services-hexagon-shape:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
}

.services-hexagon-shape:before {
    bottom: 100%;
    border-bottom: 20.21px solid rgba(124, 179, 66, 0.12);
}

.services-hexagon-shape:after {
    top: 100%;
    border-top: 20.21px solid rgba(124, 179, 66, 0.12);
}

.services-dots-pattern {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(circle, rgba(247, 212, 51, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: float 10s ease-in-out infinite 1s;
}

.services-lines-pattern {
    position: absolute;
    bottom: 25%;
    right: 5%;
    width: 110px;
    height: 110px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(124, 179, 66, 0.1),
        rgba(124, 179, 66, 0.1) 2px,
        transparent 2px,
        transparent 12px
    );
    animation: float 8s ease-in-out infinite 2s;
}

.services-circle-pattern {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(247, 212, 51, 0.15);
    border-radius: 50%;
    animation: rotate 18s linear infinite;
}

.services-circle-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    border: 1px solid rgba(124, 179, 66, 0.15);
    border-radius: 50%;
}

.services-circle-pattern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.1), rgba(124, 179, 66, 0.1));
    border-radius: 50%;
}

.services-wave-pattern {
    position: absolute;
    bottom: 30%;
    left: 12%;
    width: 120px;
    height: 60px;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(247, 212, 51, 0.1) 0px,
        rgba(247, 212, 51, 0.1) 8px,
        transparent 8px,
        transparent 16px
    );
    border-radius: 30px;
    animation: float 7s ease-in-out infinite 3s;
}

.services-star-shape {
    position: absolute;
    top: 60%;
    left: 45%;
    width: 40px;
    height: 40px;
    background: rgba(124, 179, 66, 0.1);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: rotate 20s linear infinite;
}

.services-content,
.process-content {
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.85), rgba(247, 212, 51, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 80px;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-features-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.price-text {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
    color: white;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-yellow), #E6C229);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.service-popular {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.service-new {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

/* Service Highlights */
.service-highlights {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-green);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Service CTA */
.service-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 20px;
    color: white;
    text-align: center;
}

.service-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.service-cta .btn-primary-custom {
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
    padding: 15px 30px;
    font-weight: 600;
}

.service-cta .btn-primary-custom:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .service-highlights {
        margin-top: 60px;
        padding: 40px 20px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .service-cta {
        text-align: center;
        padding: 40px 20px;
    }

    .service-cta h3 {
        font-size: 1.5rem;
    }

    /* Hide some services background shapes on mobile */
    .services-shape-3, .services-shape-5, .services-hexagon-shape, .services-dots-pattern {
        display: none;
    }

    .services-shape-1 {
        width: 100px;
        height: 100px;
        top: 5%;
        right: 8%;
    }

    .services-shape-2 {
        width: 70px;
        height: 70px;
        top: 70%;
        left: 5%;
    }

    .services-diamond-shape {
        width: 30px;
        height: 30px;
        top: 45%;
        right: 25%;
    }

    .services-triangle-shape {
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 43px solid rgba(247, 212, 51, 0.1);
        top: 20%;
        left: 20%;
    }

    .services-circle-pattern {
        width: 70px;
        height: 70px;
        top: 15%;
        right: 15%;
    }

    .services-star-shape {
        width: 30px;
        height: 30px;
        top: 55%;
        left: 40%;
    }
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    color: white;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="%23F7D433" opacity="0.15"/><circle cx="65" cy="65" r="1" fill="%237CB342" opacity="0.18"/><circle cx="45" cy="10" r="0.8" fill="%23F7D433" opacity="0.12"/><circle cx="10" cy="55" r="1.2" fill="%237CB342" opacity="0.14"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>') repeat;
    z-index: 0;
}

.process-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.process-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.process-shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.2), rgba(124, 179, 66, 0.15));
    top: 10%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

.process-shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(124, 179, 66, 0.25), rgba(247, 212, 51, 0.15));
    top: 70%;
    right: 15%;
    animation: float 9s ease-in-out infinite 2s;
}

.process-shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(225deg, rgba(247, 212, 51, 0.15), rgba(124, 179, 66, 0.2));
    bottom: 20%;
    left: 20%;
    animation: float 10s ease-in-out infinite 1s;
}

.process-shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(315deg, rgba(124, 179, 66, 0.3), rgba(247, 212, 51, 0.18));
    top: 40%;
    right: 25%;
    animation: float 8s ease-in-out infinite 3s;
}

.process-shape-5 {
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, rgba(247, 212, 51, 0.18), rgba(124, 179, 66, 0.22));
    top: 30%;
    left: 40%;
    animation: float 11s ease-in-out infinite 4s;
}

.process-shape-6 {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, rgba(124, 179, 66, 0.35), rgba(247, 212, 51, 0.2));
    bottom: 50%;
    right: 10%;
    animation: float 7s ease-in-out infinite 1.5s;
}

.process-diamond-shape {
    position: absolute;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, rgba(247, 212, 51, 0.25), rgba(124, 179, 66, 0.18));
    transform: rotate(45deg);
    top: 55%;
    left: 30%;
    animation: rotate 16s linear infinite;
}

.process-triangle-shape {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(247, 212, 51, 0.2);
    top: 20%;
    right: 35%;
    animation: float 9s ease-in-out infinite 2.5s;
}

.process-hexagon-shape {
    position: absolute;
    width: 80px;
    height: 46.19px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), rgba(247, 212, 51, 0.15));
    margin: 23.09px 0;
    top: 50%;
    right: 8%;
    animation: float 10s ease-in-out infinite 3.5s;
}

.process-hexagon-shape:before,
.process-hexagon-shape:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.process-hexagon-shape:before {
    bottom: 100%;
    border-bottom: 23.09px solid rgba(124, 179, 66, 0.2);
}

.process-hexagon-shape:after {
    top: 100%;
    border-top: 23.09px solid rgba(124, 179, 66, 0.2);
}

.process-dots-pattern {
    position: absolute;
    top: 15%;
    right: 12%;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(circle, rgba(247, 212, 51, 0.3) 2px, transparent 2px);
    background-size: 22px 22px;
    animation: float 11s ease-in-out infinite 1s;
}

.process-lines-pattern {
    position: absolute;
    bottom: 30%;
    left: 8%;
    width: 120px;
    height: 120px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(124, 179, 66, 0.2),
        rgba(124, 179, 66, 0.2) 2px,
        transparent 2px,
        transparent 14px
    );
    animation: float 9s ease-in-out infinite 2s;
}

.process-circle-pattern {
    position: absolute;
    top: 25%;
    left: 15%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(247, 212, 51, 0.25);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.process-circle-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 2px solid rgba(124, 179, 66, 0.25);
    border-radius: 50%;
}

.process-circle-pattern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.2), rgba(124, 179, 66, 0.2));
    border-radius: 50%;
}

.process-wave-pattern {
    position: absolute;
    bottom: 35%;
    right: 20%;
    width: 130px;
    height: 65px;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(247, 212, 51, 0.2) 0px,
        rgba(247, 212, 51, 0.2) 10px,
        transparent 10px,
        transparent 20px
    );
    border-radius: 32px;
    animation: float 8s ease-in-out infinite 3s;
}

.process-star-shape {
    position: absolute;
    top: 65%;
    left: 50%;
    width: 45px;
    height: 45px;
    background: rgba(124, 179, 66, 0.2);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: rotate 22s linear infinite;
}

.process-gear-shape {
    position: absolute;
    top: 45%;
    left: 8%;
    width: 50px;
    height: 50px;
    background: rgba(247, 212, 51, 0.15);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 85% 50%, 100% 65%, 80% 90%, 50% 100%, 20% 90%, 0% 65%, 15% 50%, 0% 35%, 20% 10%);
    animation: rotate 25s linear infinite reverse;
}

.process-section .section-title {
    color: white;
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.process-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

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

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(124, 179, 66, 0.5);
}

.process-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;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: rotateY(360deg);
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.process-features li i {
    color: var(--primary-green);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-text {
    padding-right: 30px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

.about-features li i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.about-image {
    position: relative;
}

.about-image-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.about-image-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-card:hover .about-main-image {
    transform: scale(1.05);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Founder's Message Section */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="founder-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23F7D433" opacity="0.12"/><circle cx="60" cy="60" r="1" fill="%237CB342" opacity="0.15"/><circle cx="40" cy="10" r="0.8" fill="%23F7D433" opacity="0.08"/><circle cx="10" cy="50" r="1.2" fill="%237CB342" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23founder-pattern)"/></svg>') repeat;
    z-index: 1;
}

.founder-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 212, 51, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.founder-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.founder-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.founder-shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.15), rgba(124, 179, 66, 0.12));
    top: 15%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

.founder-shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(124, 179, 66, 0.18), rgba(247, 212, 51, 0.1));
    top: 70%;
    right: 12%;
    animation: float 6s ease-in-out infinite 2s;
}

.founder-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, rgba(247, 212, 51, 0.1), rgba(124, 179, 66, 0.15));
    bottom: 25%;
    left: 15%;
    animation: float 7s ease-in-out infinite 1s;
}

.founder-shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(315deg, rgba(124, 179, 66, 0.2), rgba(247, 212, 51, 0.12));
    top: 40%;
    right: 20%;
    animation: float 5s ease-in-out infinite 3s;
}

.founder-shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, rgba(247, 212, 51, 0.12), rgba(124, 179, 66, 0.16));
    top: 20%;
    right: 35%;
    animation: float 9s ease-in-out infinite 4s;
}

.founder-diamond-shape {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(247, 212, 51, 0.18), rgba(124, 179, 66, 0.12));
    transform: rotate(45deg);
    top: 55%;
    left: 25%;
    animation: rotate 12s linear infinite;
}

.founder-triangle-shape {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(247, 212, 51, 0.12);
    top: 35%;
    left: 35%;
    animation: float 6s ease-in-out infinite 2.5s;
}

.founder-hexagon-shape {
    position: absolute;
    width: 60px;
    height: 34.64px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.15), rgba(247, 212, 51, 0.1));
    margin: 17.32px 0;
    top: 60%;
    right: 25%;
    animation: float 7s ease-in-out infinite 3.5s;
}

.founder-hexagon-shape:before,
.founder-hexagon-shape:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.founder-hexagon-shape:before {
    bottom: 100%;
    border-bottom: 17.32px solid rgba(124, 179, 66, 0.15);
}

.founder-hexagon-shape:after {
    top: 100%;
    border-top: 17.32px solid rgba(124, 179, 66, 0.15);
}

.founder-dots-pattern {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(247, 212, 51, 0.25) 2px, transparent 2px);
    background-size: 18px 18px;
    animation: float 8s ease-in-out infinite 1s;
}

.founder-lines-pattern {
    position: absolute;
    bottom: 35%;
    right: 8%;
    width: 100px;
    height: 100px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(124, 179, 66, 0.12),
        rgba(124, 179, 66, 0.12) 2px,
        transparent 2px,
        transparent 10px
    );
    animation: float 6s ease-in-out infinite 2s;
}

.founder-circle-pattern {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(247, 212, 51, 0.2);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.founder-circle-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 50%;
}

.founder-left,
.founder-right {
    position: relative;
    z-index: 2;
}

/* Left Side - Image & Info */
.founder-image-container {
    position: relative;
    margin-bottom: 30px;
}

.founder-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.founder-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-main-image:hover .founder-img {
    transform: scale(1.05);
}

.founder-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.8), rgba(247, 212, 51, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-main-image:hover .founder-image-overlay {
    opacity: 1;
}

.founder-badge {
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.founder-badge i {
    color: var(--primary-yellow);
}

.founder-floating-stat {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-years {
    top: 20px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.stat-projects {
    bottom: 30px;
    left: -30px;
    animation: float 3s ease-in-out infinite 1.5s;
}

.founder-floating-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.founder-floating-stat .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.founder-floating-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
}

.founder-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    position: relative;
}

.founder-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-yellow));
    border-radius: 20px 0 0 20px;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.founder-title {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-company {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.founder-credentials {
    margin-top: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.credential-item i {
    color: var(--primary-yellow);
    width: 16px;
}

/* Right Side - Message & Stats */
.founder-message-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
    position: relative;
}

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

.founder-message p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.founder-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.signature-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    margin-bottom: 15px;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.signature-title {
    color: var(--primary-green);
    font-size: 0.95rem;
    font-weight: 500;
}

.founder-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.founder-stat {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.founder-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.founder-stat:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-yellow), #FBEB6B);
}

.founder-stat .stat-content {
    text-align: left;
}

.founder-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

.founder-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Responsive for Founder Section */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-img {
        height: 300px;
    }

    .founder-floating-stat {
        padding: 10px 15px;
    }

    .stat-years {
        top: 10px;
        right: -10px;
    }

    .stat-projects {
        bottom: 20px;
        left: -15px;
    }

    .founder-info-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .founder-message-card {
        padding: 30px 25px;
    }

    .founder-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .founder-stat {
        padding: 20px 15px;
    }

    /* Hide some background shapes on mobile */
    .founder-shape-3, .founder-shape-5, .founder-hexagon-shape, .founder-dots-pattern {
        display: none;
    }

    .founder-shape-1 {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 5%;
    }

    .founder-shape-2 {
        width: 60px;
        height: 60px;
        top: 75%;
        right: 8%;
    }

    .founder-diamond-shape {
        width: 25px;
        height: 25px;
        top: 50%;
        left: 20%;
    }

    .founder-triangle-shape {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid rgba(247, 212, 51, 0.12);
        top: 30%;
        left: 30%;
    }

    .founder-circle-pattern {
        width: 60px;
        height: 60px;
        top: 15%;
        right: 10%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #20b558);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #20b558, #1a9e4a);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-bg);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--primary-green);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-bg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: notification-blink 1.5s infinite;
}

@keyframes notification-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-notification {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -3px;
        right: -3px;
    }
}

/* Our Promise Section */
.promise-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    color: white;
}

.promise-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promise-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23F7D433" opacity="0.1"/><circle cx="45" cy="45" r="0.8" fill="%237CB342" opacity="0.12"/><circle cx="30" cy="5" r="0.6" fill="%23F7D433" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23promise-pattern)"/></svg>') repeat;
    z-index: 1;
}

.promise-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(247, 212, 51, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(124, 179, 66, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.promise-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-yellow), #E6C229);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(247, 212, 51, 0.3);
}

.promise-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promise-highlight {
    color: var(--primary-yellow);
    position: relative;
}

.promise-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
    border-radius: 2px;
}

.promise-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.promise-features {
    margin-bottom: 40px;
}

.promise-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.promise-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-promise-primary {
    background: linear-gradient(135deg, var(--primary-yellow), #E6C229);
    color: var(--text-dark);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 212, 51, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-promise-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 212, 51, 0.5);
    color: var(--text-dark);
}

.promise-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 600;
}

.promise-contact i {
    color: var(--primary-yellow);
}

.promise-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-left: 30px;
}

.stat-card-dark {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
}

.stat-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-dark {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), #E6C229);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.stat-card-dark:hover .stat-icon-dark {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    transform: scale(1.1);
}

.stat-number-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 5px;
    display: block;
}

.stat-label-dark {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.promise-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(247, 212, 51, 0.1);
    border: 2px solid rgba(247, 212, 51, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 2s;
}

.float-3 {
    bottom: 25%;
    left: 20%;
    animation: float 7s ease-in-out infinite 4s;
}

/* Responsive for Promise Section */
@media (max-width: 768px) {
    .promise-section {
        padding: 60px 0;
    }

    .promise-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .promise-stats {
        padding-left: 0;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promise-title {
        font-size: 2.2rem;
    }

    .promise-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-card-dark {
        padding: 20px 15px;
    }

    .stat-number-dark {
        font-size: 2rem;
    }

    .floating-icon {
        display: none;
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F7D433" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%237CB342" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.team-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.9), rgba(247, 212, 51, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: white;
    color: var(--primary-yellow);
    transform: scale(1.1);
}

.team-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-yellow), #FBEB6B);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(247, 212, 51, 0.3);
}

.team-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.team-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    border-radius: 2px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 15px;
}

.team-role {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-experience {
    margin-bottom: 15px;
}

.experience-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.team-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialty {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.specialty:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Team Stats */
.team-stats {
    margin-top: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.team-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.team-stat:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-yellow), #FBEB6B);
    transform: scale(1.1);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-image {
        height: 220px;
    }

    .team-content {
        padding: 25px 20px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-description {
        font-size: 0.85rem;
    }

    .team-stats {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .team-stat {
        flex-direction: column;
        padding: 15px;
    }

    .stat-icon {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .team-specialties {
        gap: 5px;
    }

                 .specialty {
         font-size: 0.75rem;
         padding: 4px 8px;
     }

     /* Hide some background shapes on mobile */
     .shape-3, .shape-5, .hexagon-shape, .dots-pattern {
         display: none;
     }

     .shape-1 {
         width: 80px;
         height: 80px;
         top: 5%;
         right: 10%;
     }

     .shape-2 {
         width: 60px;
         height: 60px;
         top: 70%;
         left: 10%;
     }

     .diamond-shape {
         width: 20px;
         height: 20px;
         top: 40%;
         right: 15%;
     }

     .triangle-shape {
         border-left: 15px solid transparent;
         border-right: 15px solid transparent;
         border-bottom: 26px solid rgba(247, 212, 51, 0.15);
         top: 15%;
         right: 25%;
     }
 }

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-gray);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.85), rgba(255, 214, 0, 0.85));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 10px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-close:hover {
    color: var(--primary-yellow);
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: rgba(255,255,255,0.25);
    color: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

/* Gallery Loader */
.gallery-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-section p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #CCCCCC;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-image-container {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .about-stats {
        gap: 10px;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .about-stat-label {
        font-size: 0.8rem;
    }
    
    .founder-card {
        padding: 30px;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .founder-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .founder-message {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .founder-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .founder-stat {
        min-width: 45%;
    }
    
    .founder-stat-number {
        font-size: 1.5rem;
    }
    
    .process-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .process-card {
        padding: 30px 25px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .process-title {
        font-size: 1.2rem;
    }
    
    .process-description {
        font-size: 0.9rem;
    }
    
    .process-features li {
        font-size: 0.85rem;
    }

    /* Hide some process background shapes on mobile */
    .process-shape-3, .process-shape-5, .process-hexagon-shape, .process-dots-pattern, .process-gear-shape {
        display: none;
    }

    .process-shape-1 {
        width: 100px;
        height: 100px;
        top: 8%;
        left: 8%;
    }

    .process-shape-2 {
        width: 70px;
        height: 70px;
        top: 75%;
        right: 10%;
    }

    .process-diamond-shape {
        width: 35px;
        height: 35px;
        top: 50%;
        left: 25%;
    }

    .process-triangle-shape {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 52px solid rgba(247, 212, 51, 0.2);
        top: 25%;
        right: 30%;
    }

    .process-circle-pattern {
        width: 70px;
        height: 70px;
        top: 20%;
        left: 12%;
    }

    .process-star-shape {
        width: 35px;
        height: 35px;
        top: 60%;
        left: 45%;
    }

    .process-wave-pattern {
        width: 100px;
        height: 50px;
        bottom: 40%;
        right: 15%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .logo-icon img {
        width: 50px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .gallery-filters {
        margin: 30px 0 20px;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .gallery-modal {
        padding: 10px;
    }
    
    .gallery-modal img {
        max-height: 85vh;
        border-radius: 8px;
    }
    
    .gallery-close {
        top: -40px;
        right: 5px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav {
        display: none;
    }
    
    .gallery-modal-content {
        max-width: 98%;
        max-height: 95%;
    }
}

.ss{
    color: #F7D433;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.why-choose-section .section-header {
    text-align: center !important;
    margin-bottom: 50px;
}



.why-choose-section .section-subtitle {
    text-align: left !important;
    max-width: 600px;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(45deg, rgba(124, 179, 66, 0.05), rgba(247, 212, 51, 0.05));
    z-index: 1;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.1), rgba(124, 179, 66, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.why-choose-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.15), rgba(124, 179, 66, 0.15));
    top: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(124, 179, 66, 0.2), rgba(247, 212, 51, 0.1));
    top: 60%;
    left: 5%;
    animation: float 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, rgba(247, 212, 51, 0.1), rgba(124, 179, 66, 0.2));
    bottom: 20%;
    right: 8%;
    animation: float 7s ease-in-out infinite 1s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(315deg, rgba(124, 179, 66, 0.25), rgba(247, 212, 51, 0.15));
    top: 30%;
    left: 10%;
    animation: float 5s ease-in-out infinite 3s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, rgba(247, 212, 51, 0.12), rgba(124, 179, 66, 0.18));
    bottom: 10%;
    left: 20%;
    animation: float 9s ease-in-out infinite 4s;
}

.shape-6 {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, rgba(124, 179, 66, 0.3), rgba(247, 212, 51, 0.2));
    top: 15%;
    left: 30%;
    animation: float 4s ease-in-out infinite 1.5s;
}

.diamond-shape {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(247, 212, 51, 0.2), rgba(124, 179, 66, 0.15));
    transform: rotate(45deg);
    top: 70%;
    right: 25%;
    animation: rotate 10s linear infinite;
}

.triangle-shape {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(247, 212, 51, 0.15);
    top: 25%;
    right: 35%;
    animation: float 6s ease-in-out infinite 2.5s;
}

.hexagon-shape {
    position: absolute;
    width: 50px;
    height: 28.87px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), rgba(247, 212, 51, 0.1));
    margin: 14.43px 0;
    top: 45%;
    left: 15%;
    animation: float 7s ease-in-out infinite 3.5s;
}

.hexagon-shape:before,
.hexagon-shape:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.hexagon-shape:before {
    bottom: 100%;
    border-bottom: 14.43px solid rgba(124, 179, 66, 0.2);
}

.hexagon-shape:after {
    top: 100%;
    border-top: 14.43px solid rgba(124, 179, 66, 0.2);
}

.dots-pattern {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(247, 212, 51, 0.3) 2px, transparent 2px);
    background-size: 15px 15px;
    animation: float 8s ease-in-out infinite 1s;
}

.lines-pattern {
    position: absolute;
    bottom: 30%;
    left: 8%;
    width: 80px;
    height: 80px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(124, 179, 66, 0.1),
        rgba(124, 179, 66, 0.1) 2px,
        transparent 2px,
        transparent 8px
    );
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes rotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-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 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--primary-yellow), #FBEB6B);
    transform: scale(1.1);
}

.why-choose-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-choose-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    position: relative;
    z-index: 2;
}

.why-choose-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.why-choose-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-choose-main-image:hover img {
    transform: scale(1.05);
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.8), rgba(247, 212, 51, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-choose-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.why-choose-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    flex: 1;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-choose-title {
        font-size: 1rem;
    }

    .why-choose-text {
        font-size: 0.85rem;
    }

    .why-choose-main-image img {
        height: 300px;
    }

    .why-choose-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23F7D433" opacity="0.1"/><circle cx="10" cy="40" r="1" fill="%237CB342" opacity="0.15"/><circle cx="40" cy="10" r="1.5" fill="%23F7D433" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>') repeat;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 212, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.testimonial-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.testimonial-shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(247, 212, 51, 0.2), rgba(124, 179, 66, 0.1));
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.testimonial-shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(124, 179, 66, 0.15), rgba(247, 212, 51, 0.1));
    top: 70%;
    right: 15%;
    animation: float 6s ease-in-out infinite 2s;
}

.testimonial-shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(247, 212, 51, 0.1), rgba(124, 179, 66, 0.2));
    bottom: 30%;
    left: 5%;
    animation: float 7s ease-in-out infinite 1s;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    border: 1px solid rgba(247,212,51,0.2);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    border-radius: 20px 20px 0 0;
}

.quote-icon {
    width: 50px;
    height: 50px;
    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: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), #E6C229);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.author-avatar:hover img {
    transform: scale(1.1);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-location {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    z-index: 2;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(247,212,51,0.5);
}

.dot.active,
.dot:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(247,212,51,0.4);
}



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

    .testimonial-content {
        padding: 30px 25px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .author-avatar {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }



    .testimonial-shape-1 {
        width: 60px;
        height: 60px;
        top: 10%;
        left: 5%;
    }

    .testimonial-shape-2 {
        width: 40px;
        height: 40px;
        top: 80%;
        right: 10%;
    }

    .testimonial-shape-3 {
        display: none;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.welcome-content {
    padding-right: 30px;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.welcome-badge i {
    font-size: 1rem;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 25px;
}

.welcome-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.welcome-features {
    margin: 40px 0;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.welcome-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), #E6C229);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.welcome-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.welcome-buttons .btn-primary-custom,
.welcome-buttons .btn-outline-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    font-weight: 600;
}

.welcome-visual {
    position: relative;
    padding-left: 30px;
}

.welcome-image-container {
    position: relative;
}

.welcome-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.welcome-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.welcome-main-image:hover .welcome-img {
    transform: scale(1.05);
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.8), rgba(247, 212, 51, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-main-image:hover .welcome-overlay {
    opacity: 0;
}

.welcome-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.welcome-play-btn:hover {
    transform: scale(1.1);
    background: white;
}

.floating-stat {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-1 {
    top: 20px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.stat-2 {
    bottom: 120px;
    left: -30px;
    animation: float 3s ease-in-out infinite 1s;
}

.stat-3 {
    bottom: 20px;
    right: -10px;
    animation: float 3s ease-in-out infinite 2s;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
}

.welcome-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(247, 212, 51, 0.1));
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: rotate 25s linear infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: rotate 30s linear infinite;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

    .welcome-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .welcome-visual {
        padding-left: 0;
    }

    .welcome-title {
        font-size: 2.2rem;
    }

    .welcome-buttons {
        flex-direction: column;
    }

    .floating-stat {
        position: relative;
        margin: 10px 0;
    }

    .stat-1, .stat-2, .stat-3 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        animation: none;
    }

    .welcome-img {
        height: 300px;
    }
}