:root {
    --primary-color: #2c9c5b;
    --secondary-color: #1d7040;
    --accent-color: #34c471;
    --dark-color: #1a3b27;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
}

body {
    opacity: 0;
    animation: fadeInPage 1.7s ease-in forwards;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}


.bg-primary {
    background-color: var(--primary-color) !important;
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542601098-8fc114e148e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}



.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.news-date {
    color: var(--primary-color);
    font-weight: 600;
}

.event-card {
    border-left: 4px solid var(--primary-color);
}

.twitter-feed {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

footer {
    background-color: var(--dark-color);
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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


/* Compact Modern Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 156, 91, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    padding: 0.4rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    color: #2c9c5b !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    border-radius: 0px;
}

.navbar-nav .nav-link {
    color: #2c9c5b !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    margin: 0 0.1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: #1d7040 !important;
    background: rgba(44, 156, 91, 0.06);
}

.navbar-nav .dropdown-toggle::after {
    border-top-color: #2c9c5b;
    margin-left: 0.3rem;
}

.dropdown-menu {
    background: white;
    border: 1px solid rgba(44, 156, 91, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    margin-top: 0.5rem !important;
    min-width: 200px;
}

.dropdown-item {
    color: #2c9c5b;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(44, 156, 91, 0.06);
    color: #1d7040;
}

.navbar-toggler {
    border: none;
    padding: 0.3rem;
    border-radius: 6px;
}

.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='%232c9c5b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

.btn-light {
    background: #2c9c5b;
    border: none;
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-light:hover {
    background: #1d7040;
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.1rem 0;
        text-align: left;
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        border: none;
        box-shadow: none;
        margin: 0.3rem 0;
    }
}

/* Active state */
.navbar-nav .nav-link.active {
    color: #1d7040 !important;
    background: rgba(44, 156, 91, 0.1);
}

/* Fix Bootstrap conflicts */
.navbar-dark .navbar-nav .nav-link {
    color: #2c9c5b !important;
}

.navbar-dark .navbar-brand {
    color: #2c9c5b !important;
}

.card-text{
    text-align: justify;
}