/* Variables */
:root {
    --light-green: #4CAF50;
    --dark-green: #388E3C;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

/* Topbar */
.topbar {
    background-color: var(--light-green);
}

.topbar a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-green);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Statistics */
.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--light-green);
}

/* Footer */
.bg-light-green {
    background-color: var(--light-green);
}

footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Animations */
.fadeInLeft {
    animation: fadeInLeft 1s ease;
}

.fadeInRight {
    animation: fadeInRight 1s ease;
}

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

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


        .hero-image {
            height: 600px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .carousel-item {
            height: 600px;
        }
    