
    
    /* Hero Section */
    .hero-section {
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .hero-slider {
        height: 100%;
    }

    .hero-slider .item {
        height: auto;
        position: relative;
    }

    .hero-slider .item img {
       width: 100%;
    height: auto;

    object-fit: cover;
    }
    
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(37, 99, 235, 0.7) 100%);
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 100%;
        max-width: 900px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 1s ease;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
        opacity: 0.95;
        animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        animation: fadeInUp 1s ease 0.4s both;
    }

    .btn-hero {
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-hero-primary {
        background: #f59e0b;
        color: white;
    }

    .btn-hero-primary:hover {
        background: #d97706;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    }

    .btn-hero-secondary {
        background: white;
        color: #1a365d;
    }

    .btn-hero-secondary:hover {
        background: #f8fafc;
        color: #1a365d;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .hero-indicators {
        bottom: 40px !important;
    }

    .hero-indicators li {
        display: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
    }

    .hero-indicators li.active {
        background: #f59e0b !important;
        width: 30px;
        border-radius: 10px;
    }

    .hero-control {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        border-radius: 50% !important;
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .stats-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
    }

    .stat-item {
        text-align: center;
        color: white;
        position: relative;
        z-index: 1;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 16px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* About Section */
    .about-section {
        padding: 90px 0;
        background: #f8fafc;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 42px;
        color: #1a365d;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #1a365d, #f59e0b);
        border-radius: 2px;
    }

    .section-header p {
        font-size: 18px;
        color: #64748b;
        max-width: 600px;
        margin: 20px auto 0;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border: 4px solid #f59e0b;
        border-radius: 20px;
        z-index: -1;
    }

    .about-text h3 {
        font-size: 32px;
        color: #1a365d;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .about-text p {
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .about-feature i {
        color: #f59e0b;
        font-size: 18px;
    }

    .main-container {
        width: 80%;
        margin: auto;
    }

    .about-feature span {
        color: #1e293b;
        font-weight: 500;
    }

    /* Features Section */
    .features-section {
        padding: 90px 0;
        background: white;
    }

    .feature-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 311px;
        border: 1px solid #e2e8f0;
        margin-bottom: 41px;
    }

    .feature-card2 {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: auto;
        border: 1px solid #e2e8f0;
        margin-bottom: 41px;
        
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: #f59e0b;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 36px;
        color: white;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        transform: scale(1.1);
    }

    .feature-card h4 {
        font-size: 20px;
        color: #1a365d;
        margin-bottom: 15px;
        font-family: 'Poppins', sans-serif;
    }

    .feature-card p {
        color: #64748b;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Programs Section */
    .programs-section {
        padding: 90px 0;
        background: linear-gradient(135deg, #1a365d 0%, #0f172a 100%);
        position: relative;
        overflow: hidden;
    }

    .programs-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: 30px 30px;
    }

    .programs-section .section-header h2,
    .programs-section .section-header p {
        color: white;
    }

    .program-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .program-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.12);
    }

    .program-image {
        height: 200px;
        overflow: hidden;
    }

    .program-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .program-card:hover .program-image img {
        transform: scale(1.1);
    }

    .program-content {
        padding: 14px;
    }

    .program-content h4 {
        color: white;
        font-size: 20px;
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
    }

    .program-content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin-bottom: 15px;
    }

    .program-link {
        color: #f59e0b;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .program-link:hover {
        gap: 12px;
    }

    /* Notice Board */
    .notice-section {
        padding: 90px 0;
        background: #f8fafc;
    }

    .notice-board {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .notice-header {
        background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
        color: white;
        padding: 25px 30px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .notice-header i {
        font-size: 24px;
    }

    .notice-header h3 {
        margin: 0;
        font-size: 22px;
        font-family: 'Poppins', sans-serif;
    }

    .notice-tabs {
        display: flex;
        border-bottom: 1px solid #e2e8f0;
    }

    .notice-tab {
        flex: 1;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        font-weight: 600;
        color: #64748b;
        border: none;
        background: none;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .notice-tab.active {
        color: #1a365d;
        border-bottom-color: #f59e0b;
    }

    .notice-content {
        padding: 20px;
        max-height: 350px;
        overflow-y: auto;
    }

    .notice-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f1f5f9;
    }

    .notice-item:last-child {
        border-bottom: none;
    }

    .notice-item:hover {
        background: #f8fafc;
    }

    .notice-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }

    .notice-text {
        flex: 1;
    }

    .notice-text h5 {
        color: #1a365d;
        font-size: 15px;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
    }

    .notice-text p {
        color: #64748b;
        font-size: 13px;
        margin: 0;
    }

    .new-badge {
        background: #ef4444;
        color: white;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 10px;
        font-weight: 600;
        margin-left: 8px;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .cta-content {
        text-align: center;
        color: white;
        position: relative;
        z-index: 1;
    }

    .cta-content h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 18px;
        opacity: 0.95;
        margin-bottom: 30px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .btn-cta {
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-cta-white {
        background: white;
        color: #f59e0b;
    }

    .btn-cta-white:hover {
        background: #f8fafc;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        color: #f59e0b;
    }

    .btn-cta-outline {
        border: 2px solid white;
        color: white;
    }

    .btn-cta-outline:hover {
        background: white;
        color: #f59e0b;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .hero-content h1 {
            font-size: 36px;
        }

        .hero-content p {
            font-size: 16px;
        }

        .about-content {
            grid-template-columns: 1fr;
        }

        .about-image::before {
            display: none;
        }
    }

    @media (max-width: 576px) {
        .hero-section {
            height: auto;
        }

        .hero-slider .item {
            height: auto;
        }

        .hero-content h1 {
            font-size: 28px;
        }

        .hero-buttons {
            flex-direction: row;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .cta-content h2 {
            font-size: 28px;
        }

        .cta-buttons {
            flex-direction: column;
        }
        
        
.btn-hero {
        padding: 5px 10px 5px 10px;
        font-size: 10px;

}
        .hero-content h1 {
            font-size: 16px;
        }

            .hero-content p {
            font-size: 11px;
                margin-bottom: 15px;
        }
            .hero-control {
    width: 30px;
    height: 30px;

        font-size: 12px;
        }
        
    }
.stat-number {
    font-size: 30px;
    
    
}
.stat-icon {
    width: 50px;
    height: 50px;
        font-size: 20px;
}

    .feature-card2 {
   
   margin-top: 10px;
    }
        
        
    }

    /* Scrollbar Styling */
    .notice-content::-webkit-scrollbar {
        width: 6px;
    }

    .notice-content::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .notice-content::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    .notice-content::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

