/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #eff1f3;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 25%, #ffffff 50%, #f5f9f8 75%, #ffffff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Custom Properties - White & Green Elegant Theme */
:root {
    --primary-green: #2d5a3d;
    --dark-green: #1a3c2a;
    --light-green: #4a7c59;
    --accent-green: #5cb85c;
    --forest-green: #0d2818;
    --sage-green: #87a96b;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --light-black: #1a1a1a;
    --medium-black: #090909;
    --dark-black: #000000;
    --text-dark: #000000;
    --text-light: #333333;
    --card-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(45, 90, 61, 0.15);
    --shadow-light: rgba(45, 90, 61, 0.08);
    --shadow-medium: rgba(45, 90, 61, 0.12);
    --shadow-heavy: rgba(45, 90, 61, 0.2);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--dark-green), var(--light-green));
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow-light);
}

.navbar:hover {
    border-bottom: 2px solid var(--accent-green);
    box-shadow: 0 4px 30px var(--shadow-medium);
}

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

.nav-logo h2 {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--sage-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.4rem;
    animation: logoPulse 2s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    from {
        filter: drop-shadow(0 0 2px rgba(92, 184, 92, 0.3));
    }
    to {
        filter: drop-shadow(0 0 8px rgba(92, 184, 92, 0.5));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff; /* White for desktop */
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--accent-green);
    background: var(--off-white);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-green), var(--sage-green));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        box-shadow: 0 4px 20px var(--shadow-light);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile navbar links - BLACK color */
    .nav-link {
        color: var(--text-dark); /* Black color for mobile */
    }

    .nav-link:hover {
        color: var(--accent-green);
        background: var(--off-white);
        transform: translateY(-2px);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--pure-white) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: titleFloat 3s ease-in-out infinite;
}

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

.gradient-text {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green), var(--sage-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 2.5rem;
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--pure-white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: #2e8b57; /* Medium green */
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: all 0.3s ease;
    color: white; /* Inner text white */
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--accent-green);
}

.card i {
    font-size: 2rem;
    color: white; /* Icon white */
}

.card span {
    font-weight: 600;
    color: white; /* Text white */
}

.card-1 {
    top: 0%;
    left: 10%;
    animation: float1 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation: float2 4s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 0%;
    left: 10%;
    animation: float3 4s ease-in-out infinite 2s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}


/* Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(45, 90, 61, 0.2), rgba(92, 184, 92, 0.25));
    opacity: 0.8;
    animation: circleFloat 8s ease-in-out infinite;
}


.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes circleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
    background: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-medium);
    border-color: var(--accent-green);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--pure-white);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    animation: numberCount 2s ease-out;
}

@keyframes numberCount {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Skills Section */
.skills {
    padding: 6rem 0;
    background: var(--pure-white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-item {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skill-info span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.skill-percentage {
    color: var(--accent-green);
    font-weight: 700;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--off-white);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    border-radius: 4px;
    width: 0;
    animation: progressFill 2s ease-out forwards;
    box-shadow: 0 0 10px var(--shadow-light);
}

@keyframes progressFill {
    to { width: var(--progress-width); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--pure-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 184, 92, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-green);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--pure-white);
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--pure-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-green);
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-green);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--pure-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-green);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--pure-white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--pure-white);
    box-shadow: 0 4px 15px var(--shadow-light);
    border-color: var(--accent-green);
}

.contact-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-dark);
}

.contact-form {
    background: var(--pure-white);
    border: 2px solid var(--accent-green);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.contact-form h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--pure-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: var(--pure-white);
    color: var(--text-dark);
    box-shadow: 0 0 15px var(--shadow-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    background: var(--accent-green);
    color: var(--pure-white);
    border: 2px solid var(--accent-green);
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

/* Footer */
.footer {
    background: var(--dark-black);
    border-top: 2px solid var(--accent-green);
    padding: 3rem 0 1rem;
}

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

.footer-section p {
    color: var(--pure-white);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    color: var(--pure-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px var(--shadow-medium);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px var(--shadow-heavy);
}

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

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green), var(--light-green));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.about-hero h2 {
    font-size: 2rem;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-hero h3 {
    font-size: 1.5rem;
    color: var(--off-white);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* About Company Section */
.about-company {
    padding: 80px 0;
    background: var(--pure-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.feature-item i {
    color: var(--accent-green);
    font-size: 2rem;
    min-width: 40px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.courses-stat {
    margin: 4rem 0;
    text-align: center;
}

.courses-stat .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(92, 184, 92, 0.3);
}

.courses-stat .stat-label {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* About Founder Section */
.about-founder {
    padding: 80px 0;
    background: var(--pure-white);
    border-radius: 30px;
    margin: 40px 0;
    border: 2px solid var(--accent-green);
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.founder-content h2 {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(92, 184, 92, 0.3);
}

.founder-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.founder-content .btn {
    margin-top: 2rem;
}

/* Testimonials Section Updates */
.testimonials .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials .section-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--pure-white);
    border-radius: 30px;
    margin: 40px 0;
    border: 2px solid var(--accent-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-section .stat-item {
    text-align: center;
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(92, 184, 92, 0.3);
    margin-bottom: 0.5rem;
}

.stats-section .stat-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Courses Hero Section */
.courses-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green), var(--light-green));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.courses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.courses-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.courses-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.courses-hero h2 {
    font-size: 2rem;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Paid Courses Section */
.paid-courses {
    padding: 80px 0;
    background: var(--pure-white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 184, 92, 0.05), transparent);
    transition: left 0.5s ease;
}

.course-card:hover::before {
    left: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.course-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.course-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(92, 184, 92, 0.3);
}

.course-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Free Courses Section */
.free-courses {
    padding: 80px 0;
    background: var(--pure-white);
    border-radius: 30px;
    margin: 40px 0;
    border: 2px solid var(--accent-green);
}

.free-courses .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.free-courses .section-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.free-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.free-course-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.free-course-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.free-course-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.free-course-card .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.steps-section .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(92, 184, 92, 0.3);
}

.step-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--pure-white);
    border-radius: 30px;
    margin: 40px 0;
    border: 2px solid var(--accent-green);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-container p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-form-container form {
    background: var(--pure-white);
    border: 2px solid var(--accent-green);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.contact-form-container .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-container .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent-green);
    color: var(--pure-white);
    border: 2px solid var(--accent-green);
    transition: all 0.3s ease;
}

.contact-form-container .btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

/* Course Section Styles */
.course-section {
    padding: 50px 20px;
    background: var(--pure-white);
    text-align: center;
}

.course-heading {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

.course-btn {
    background: linear-gradient(90deg, var(--accent-green), var(--light-green));
    color: var(--pure-white);
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

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

.course-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 80px;
    padding: 20px;
    background: var(--pure-white);
}

.course-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.course-item img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    margin-bottom: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.course-item img:hover {
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.course-item button {
    background: linear-gradient(to right, var(--accent-green), var(--light-green));
    color: var(--pure-white);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.course-item button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Popup Banner */
.popup-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 30px var(--shadow-heavy);
    border: 3px solid var(--accent-green);
}

.popup-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    color: var(--pure-white);
    background-color: var(--accent-green);
    border-radius: 50%;
    padding: 4px 10px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: var(--primary-green);
    transform: scale(1.1);
}

/* Sale Banner */
.sale-banner {
    background: linear-gradient(
        90deg, 
        orange, 
        white, 
        green
    );
    color: var(--text-dark);
    text-align: center;
    margin-top: 12rem;
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 15px var(--shadow-medium);
    z-index: 1000;
    animation: fadeInDown 0.6s ease-in-out;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    border: 2px solid green;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

/* Loading animation */
.loading {
    display: none;
}

.btn.loading .loading {
    display: inline;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Additional animations for smooth interactions */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.course-card:nth-child(odd) {
    animation: slideInFromLeft 1s ease-out;
}

.course-card:nth-child(even) {
    animation: slideInFromRight 1s ease-out;
}

.free-course-card:nth-child(odd) {
    animation: slideInFromLeft 1s ease-out;
}

.free-course-card:nth-child(even) {
    animation: slideInFromRight 1s ease-out;
}

/* Hover effects for course cards */
.course-card:hover .course-content h3 {
    color: var(--accent-green);
    transition: color 0.3s ease;
}

.course-card:hover .course-price {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        box-shadow: 0 4px 20px var(--shadow-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero h2 {
        font-size: 1.5rem;
    }
    
    .about-hero h3 {
        font-size: 1.2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .courses-hero h1 {
        font-size: 2.5rem;
    }
    
    .courses-hero h2 {
        font-size: 1.5rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card {
        padding: 1.5rem;
    }
    
    .free-courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .sale-banner {
        font-size: 1.4rem;
        padding: 0.75rem 1rem;
    }
}

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

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

    .section-header h2 {
        font-size: 2rem;
    }

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

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-section .stat-number {
        font-size: 2.5rem;
    }
    
    .courses-stat .stat-number {
        font-size: 3rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .courses-hero h1 {
        font-size: 2rem;
    }
    
    .course-content h3 {
        font-size: 1.3rem;
    }
    
    .course-price {
        font-size: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .free-course-card {
        padding: 1.5rem;
    }
    
    .free-course-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .contact-form-container form {
        padding: 1.5rem;
    }

    .sale-banner {
        font-size: 1.2rem;
        padding: 0.5rem 0.8rem;
    }
}
/* Course Section Styles - Updated with Light Green Background */
.course-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #f0f8f0 100%);
    text-align: center;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.1);
}

.course-heading {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

.course-btn {
    background: linear-gradient(90deg, var(--accent-green), var(--light-green));
    color: var(--pure-white);
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

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

.course-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 80px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #f0f8f0 100%);
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: inset 0 2px 10px rgba(45, 90, 61, 0.05);
}

.course-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.course-item img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    margin-bottom: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.course-item img:hover {
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px var(--shadow-medium);
    transform: translateY(-5px);
}

.course-item button {
    background: linear-gradient(to right, var(--accent-green), var(--light-green));
    color: var(--pure-white);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.course-item button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* About Section with Medium Green Background */
.about {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #4a7c59 0%, #5cb85c 25%, #4a7c59 50%, #3a6b47 75%, #4a7c59 100%);
    background-attachment: fixed;
}

/* Update section header text for better visibility on medium green */
.about .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about .section-header p {
    font-size: 1.1rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Update about cards for better contrast */
.about-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--pure-white);
    background: rgba(255, 255, 255, 1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--pure-white), var(--off-white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-green);
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Update stats container for better visibility */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--pure-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    animation: numberCount 2s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}
/* Steps Section with Medium Green Background */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a7c59 0%, #5cb85c 25%, #4a7c59 50%, #3a6b47 75%, #4a7c59 100%);
    background-attachment: fixed;
    position: relative;
}

/* Update section header text for better visibility on medium green */
.steps-section .section-header h2 {
    font-size: 3rem;
    color: var(--pure-white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.steps-section .section-header p {
    font-size: 1.1rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--pure-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pure-white), var(--off-white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.step-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments for steps section */
@media (max-width: 768px) {
    .steps-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .steps-section .section-header h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
}