:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --light: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.9) 0%, rgba(5, 150, 105, 0.8) 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.floating-btn {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.testimonial-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu {
    transition: all 0.3s ease;
}

.slider-container {
    position: relative;
    width: 600px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    width: 1800px;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 600px;
    height: 300px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.control-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    margin: 0 10px;
    z-index: 10;
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.hero-slide {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.7), rgba(218, 165, 32, 0.7));
}

.btn-primary {
    background-color: #006400;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #005000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #DAA520;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #C5921A;
    transform: translateY(-2px);
}

.slide-fade {
    animation: slideFade 1s ease-in-out;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CSS for App Download Section */
.app-download-section {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.05), rgba(218, 165, 32, 0.05));
    border: 1px solid rgba(0, 100, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
    transition: all 0.3s ease;
}

.app-download-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 100, 0, 0.15);
}

.app-download-btn {
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 100, 0, 0.1));
}

.app-download-btn:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(0, 100, 0, 0.2));
}

.app-mockup {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } 
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .app-download-section {
        text-align: center;
    }
    
    .app-download-buttons {
        justify-content: center;
    }
    
    .app-mockup {
        height: 200px;
        margin-top: 20px;
    }
}

/* Additional animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}
