:root {
    --primary-color: #01a345;
    --secondary-color: #27ae60;
    --accent-color: #3498db;
    --danger-color: #e74c3c;
}
body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    min-height: 100vh;
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text h6 {
    margin: 0;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.brand-text small {
    color: #7f8c8d;
    font-size: 0.75rem;
}

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.hero-section {
    background: #fff;
    border-radius: 20px;
    padding: 50px 20px;
    margin: 30px 0;
    box-shadow: 0 20px 60px #eae8e8;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1, h2, h3 {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 8px rgba(185, 185, 185, 0.3);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 30px;
    margin-right: 30px;
    text-align: justify;
    font-weight: 400;
}

.btn-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #00bf00;
}

.btn-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-custom-primary {
    background: white;
    color: var(--primary-color);
}

.btn-custom-primary:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
}

.features-section {
    padding: 60px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    margin: 0;
}

.user-dropdown .dropdown-toggle {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
}

footer {
    background: white;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .brand-text h6 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .btn-custom {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.img_fluid{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
/* for gallery */
   /* Gallery Slider Styles - Updated for 3 items */
    .gallery-img-container { 
        height: 300px; 
        overflow: hidden; 
        border-radius: 12px;
        margin: 5px;
    }
    .gallery-img-container img { 
        object-fit: cover; 
        height: 100%; 
        width: 100%; 
        transition: transform 0.3s ease;
    }
    .gallery-img-container img:hover {
        transform: scale(1.05);
    }
    
    /* Blog Section Styles */
    .blog-card { transition: transform 0.3s; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.08); height: 100%; }
    .blog-card:hover { transform: translateY(-10px); }
    .blog-img-container { height: 200px; overflow: hidden; }
    .blog-img-container img { object-fit: cover; width: 100%; height: 100%; }
    .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    /* view blog */
    