    @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
    /* Base animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Reset default body margin and enable sticky footer layout */
    html {
        overflow-x: hidden;
    }
    body {
        margin: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    footer {
        margin-top: auto;
    }

    /* Animated sections */
    section, hero-section, stats-container, message-grid, footer-grid, card-hover, message-card, footer-content {
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
    }

    /* Stagger animations for grid items */

    /* Always visible by default, fade in with animation */
    .grid > * {
        opacity: 1;
        animation: fadeIn 0.8s ease-out;
    }

    .grid > *:nth-child(1) { animation-delay: 0.1s; }
    .grid > *:nth-child(2) { animation-delay: 0.2s; }
    .grid > *:nth-child(3) { animation-delay: 0.3s; }
    .grid > *:nth-child(4) { animation-delay: 0.4s; }

    .anek-bangla-text-bold {
        font-family: "Anek Bangla", sans-serif;
        font-optical-sizing: auto;
        font-weight: 800;
        font-style: normal;
        font-variation-settings: "wdth" 100;
        animation: fadeIn 0.5s ease-out forwards;
    }

    .anek-bangla-text {
        font-family: "Anek Bangla", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-variation-settings: "wdth" 100;
        animation: fadeIn 0.5s ease-out forwards;
    }

    .tiro-bangla-regular {
        font-family: "Tiro Bangla", serif;
        font-weight: 400;
        font-style: normal;
        animation: fadeIn 0.5s ease-out forwards;
    }

    .tiro-bangla-regular-italic {
        font-family: "Tiro Bangla", serif;
        font-weight: 400;
        font-style: italic;
        animation: fadeIn 0.5s ease-out forwards;
    }

    /* Dropdown menu styles */
    .dropdown-menu {
        opacity: 0;
        transform: translateY(-5px);
        transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
        visibility: hidden;
    }

    .dropdown-menu:not(.hidden) {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        h1 {
            font-size: 2rem !important;
            line-height: 1.2 !important;
            animation: fadeIn 0.5s ease-out forwards;
        }
        
        .stats-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .hero-content {
            text-align: center;
            padding: 2rem 1rem;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .message-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        /* Fix grid layout issues */
        .grid {
            display: flex;
            flex-direction: column;
        }
        
        .grid.lg\:grid-cols-2,
        .grid.md\:grid-cols-2,
        .grid.lg\:grid-cols-3,
        .grid.md\:grid-cols-3,
        .grid.md\:grid-cols-4 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }


    /* Mobile menu styles and dark mode */
    #mobile-menu {
        max-height: 80vh;
        overflow-y: auto;
        animation: fadeIn 0.5s ease-out forwards;
    }

    /* Clean minimal background */
    .clean-bg {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        animation: fadeIn 0.8s ease-out forwards;
    }

    #TranslateToggle {
        z-index: 9999;
        position: relative; /* or fixed if needed */
    }

    /* For large texts */
    .english-large {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 24px;
    }
    /* For large texts */
    .english-large2x {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 28px;
    }
    /* For large texts */
    .english-large2x {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 28px;
    }
    /* For large texts */
    .english-large58px {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 58px;
    }
    /* For large texts */
    .english-large48px {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 48px;
    }

    /* For medium texts */
    .english-medium {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 18px;
    }

    /* For small texts */
    .english-small {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 16px; 
    }

    /* For small texts */
    .english-small2x {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 14px; 
    }
    /* For small texts */
    .english-small10px {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 10px; 
    }

    .text-14{
        font-size: 16px;
    }

    