
        * {
            font-family: 'Hind Siliguri', sans-serif;
        }
        
        .bg-primary {
            background-color: #0a5c36;
        }
        
        .bg-secondary {
            background-color: #064e3b;
        }
        
        .text-primary {
            color: #0a5c36;
        }
        
        .text-secondary {
            color: #064e3b;
        }
        
        .border-primary {
            border-color: #0a5c36;
        }
        
        .border-secondary {
            border-color: #064e3b;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .btn-primary {
            background: #0a5c36;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #064e3b;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(10, 92, 54, 0.9), rgba(6, 78, 59, 0.9)), url('https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .floating-animation {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }






        /* ===== MOBILE MENU STYLES ===== */
.mobile-menu-btn {
    display: none; /* ডেক্সটপে লুকানো */
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 10px; /* auto এর পরিবর্তে px ব্যবহার */
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    z-index: 100;
    transition: all 0.3s ease;
}



.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Container */
.mobile-nav-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #0a5c36 0%, #064e3b 100%);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-container.active {
    left: 0;
}

/* Mobile Menu Header */
.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mobile-nav-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;

}

.mobile-nav-brand span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Menu Links */
.mobile-nav-links {
    padding: 20px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.mobile-nav-item i {
    width: 24px;
    text-align: center;
    color: #fbbf24;
}

.mobile-nav-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Menu Footer */
.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.mobile-nav-contact {
    color: white;
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}

.mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.mobile-nav-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.mobile-nav-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .flex.flex-wrap.justify-center.gap-2 {
        display: none !important;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Adjust header for mobile */
    .bg-primary.py-3.px-4 .flex {
        position: relative;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
 
}

@media (max-width: 480px) {
    .mobile-nav-container {
        width: 100%;
        max-width: none;
    }


}


