   
    /* Base Styles */
     body {
        font-family: "Oswald", sans-serif;
        font-weight: 400;
        color: #333;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: "Playfair Display", serif;
        font-weight: 700;
    }
    

    /* Header Styles - TRANSPARENT INITIALLY */
    #header {
        background-color: transparent !important;
        transition: all 0.3s ease;
        backdrop-filter: blur(0px);
    }

    #header.scrolled {
        background-color: white !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Transparent header में text color */
    #header:not(.scrolled) .nav-link {
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    #header:not(.scrolled) .nav-link:hover {
        color: #f26353 !important;
    }

    #header:not(.scrolled) .nav-link.active {
        color: #f26353 !important;
    }

    #header:not(.scrolled) .social-icon {
        border-color: white !important;
        color: white !important;
    }

    #header:not(.scrolled) .social-icon:hover {
        background-color: white !important;
        color: #c91a13 !important;
    }

    #header:not(.scrolled) #hamburger span {
        background-color: white !important;
    }

    /* Navigation Links */
    .nav-link {
        position: relative;
        font-family: "Oswald", sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #c91a13, #f26353);
        transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 2px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-link.active {
        color: #c91a13 !important;
    }

    /* Scrolled header में normal colors */
    #header.scrolled .nav-link {
        color: #4b5563 !important;
    }

    #header.scrolled .nav-link:hover {
        color: #c91a13 !important;
    }

    #header.scrolled .nav-link.active {
        color: #c91a13 !important;
    }

    #header.scrolled #hamburger span {
        background-color: #1f2937 !important;
    }

    /* Mobile Menu */
    .mobile-menu-active {
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mobile-nav-link.active {
        color: #c91a13 !important;
        font-weight: bold;
        position: relative;
    }

    .mobile-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 24px;
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, #c91a13, #f26353);
        border-radius: 2px;
    }

    /* Slider Animations */

      .typing::after {
    content: "|";
    margin-left: 6px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.stat-number{
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff3b3b;
    margin-bottom: 6px;
}

.stat-label{
    color: #e5e7eb;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
}
 

/* Mobile */
@media (max-width: 639px){
    .stat-number{
        font-size: 0.8 rem;
    }
}

/* Tablet */
@media (max-width: 1023px){
    .stat-number{
        font-size: 2.2rem;
    }
}


    .animate-slideUp {
        animation: slideUp 0.8s ease forwards;
    }

    .animate-fadeInLeft {
        animation: fadeInLeft 0.8s ease forwards;
    }

    @keyframes slideUp {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes fadeInLeft {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes fillLine {
        to {
            width: 100%;
        }
    }

    /* Slider Styles */
    .slider-container {
        position: relative;
        z-index: 1 !important;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
        z-index: 1;
        border-radius: inherit;
    }

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

    .slide img {
        transform: scale(1) !important;
        transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .slide.active img {
        transform: scale(1.1) !important;
    }

    .content-container {
        z-index: 20 !important;
    }

    .pagination {
        z-index: 30 !important;
    }

    /* Additional keyframes */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-48px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* about us */
    .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .image-card:hover {
            transform: scale(1.05);
            z-index: 10;
        }

        .image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .image-card:hover::before {
            opacity: 1;
        }

        .feature-card {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .stat-number {
            animation: countUp 0.8s ease-out;
        }

        .tag {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .tag:hover {
            transform: scale(1.1);
            background: #c91a13;
            color: white;
        } 
