/* Hero Slider Fixes */
.hero-slider {
    margin-bottom: 0;
    position: relative;
}

.carousel {
    overflow: hidden;
    height: 85vh;
    min-height: 500px;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Adjust carousel height for smaller devices */
@media (max-width: 992px) {
    .carousel {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .carousel {
        height: 50vh;
        min-height: 350px;
    }
}

/* Ensure all images display properly without cutting */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Staff Section Image Fixes */
.staff-img-container {
    height: 250px;
    overflow: hidden;
}

.staff-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Feature Card Image Fixes */
.feature-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* About Section Image Fix */
.about-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .staff-img-container {
        height: 200px;
    }
}
        :root {
            --primary: #1a56db;
            --secondary: #0e2e5e;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --warning: #ffc107;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
        }
        
        /* Top Header */
        .top-header {
            background: var(--gradient);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .top-header p {
            margin-bottom: 0;
            display: flex;
            align-items: center;
        }
        
        .top-header i {
            margin-right: 8px;
            font-size: 1rem;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .top-header a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        /* Navigation */
        .navbar {
            background: white;
            padding: 15px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
        }
        
        .navbar-brand img {
            height: 60px;
            width: 60px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid var(--primary);
        }
        
        .navbar-brand h1 {
            font-size: 1.5rem;
            margin: 0;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark);
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary);
            background: rgba(26, 86, 219, 0.1);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            box-shadow: none !important;
        }
        
        /* Hero Slider - Fixed Image Issues */
        .hero-slider {
            position: relative;
            overflow: hidden;
        }
        
        .carousel {
            height: 85vh;
            min-height: 500px;
        }
        
        .carousel-inner,
        .carousel-item {
            height: 100%;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 30px;
            background: rgba(14, 46, 94, 0.18);
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }
        
        .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            color: white;
        }
        
        .carousel-caption p {
            font-size: 1.3rem;
            margin-bottom: 25px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
            backdrop-filter: blur(5px);
        }
        
        .btn-warning {
            background: var(--accent);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-warning:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            background: #ff5a1f;
        }
        
        /* Notice Section */
        .notice-section {
            padding: 80px 0;
            background: url('https://www.transparenttextures.com/patterns/concrete-wall.png'), #f8f9fa;
            position: relative;
        }
        
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background: var(--gradient);
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 15px 20px;
            border: none;
        }
        
        .card-header i {
            margin-right: 10px;
        }
        
        .card-body {
            padding: 25px;
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .date {
            color: var(--primary);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .btn-outline-secondary {
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 500;
            padding: 6px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Faculty Section */
        .staff-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .staff-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 60px !important;
            position: relative;
            padding-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .section-title span {
            color: var(--primary);
            position: relative;
        }
        
        .staff-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            height: 100%;
            position: relative;
            margin-bottom: 30px;
        }
        
        .staff-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .staff-img-container {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .staff-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .staff-card:hover img {
            transform: scale(1.05);
        }
        
        .staff-card .card-body {
            padding: 25px;
            position: relative;
        }
        
        .staff-card .card-title {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: var(--secondary);
        }
        
        .staff-card .card-text {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .staff-card .text-muted {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
        .social-links {
            position: absolute;
            top: -25px;
            right: 20px;
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease, top 0.3s ease;
        }
        
        .staff-card:hover .social-links {
            opacity: 1;
            top: -35px;
        }
        
        .social-links a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .btn-view-all {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-weight: 600;
            padding: 12px 35px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-view-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 86, 219, 0.4);
        }
        
        .btn-view-all::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(25deg);
            transition: all 0.5s ease;
        }
        
        .btn-view-all:hover::after {
            left: 120%;
        }
        
        .designation-badge {
            display: inline-block;
            background: rgba(26, 86, 219, 0.1);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 5px;
        }
        
        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-caption h2 {
                font-size: 2.2rem;
            }
            
            .carousel-caption p {
                font-size: 1.1rem;
            }
            
            .navbar-brand h1 {
                font-size: 1.3rem;
            }
            
            .carousel {
                height: 70vh;
            }
        }
        
        @media (max-width: 768px) {
            .carousel {
                height: 60vh;
            }
            
            .carousel-caption {
                padding: 20px;
                bottom: 20%;
            }
            
            .carousel-caption h2 {
                font-size: 1.8rem;
            }
            
            .top-header .col-md-6 {
                margin-bottom: 5px;
            }
            
            .top-header .text-md-end {
                text-align: left !important;
            }
            
            .staff-img-container {
                height: 240px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel {
                height: 50vh;
            }
            
            .carousel-caption h2 {
                font-size: 1.5rem;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
            }
            
            .btn-warning {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }
        
    
  #initiatives {
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.initiative-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.card-hover {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-bottom: 3px solid #007bff;
}

.initiative-card:hover .card-img-top {
    transform: scale(1.03);
}

.card-body {
    padding: 1.5rem;
    background: white;
    flex-grow: 1;
}

.card-title {
    color: #2c3e50;
    font-size: 1.25rem;
    min-height: 3.5rem;
    font-weight: 600;
}

.card-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.click-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.initiative-card:hover .click-indicator {
    background: #007bff;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .card-img-top {
        height: 200px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #initiatives {
        padding: 3rem 0;
    }
    
    .initiative-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .click-indicator {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}
    /* Initiatives Section Styles */
#initiatives {
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.initiative-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #007bff;
    transition: transform 0.3s ease;
}

.initiative-card:hover .card-img-top {
    transform: scale(1.03);
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    min-height: 3.5rem;
}

.card-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .card-img-top {
        height: 200px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #initiatives {
        padding: 3rem 0;
    }
    
    .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .initiative-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid white;
    border-radius: 10px;
  }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --simple-color: #ffffff;
        }

        body {
            font-family: 'Noto Sans Devanagari', sans-serif;
            line-height: 1.6;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate__animated {
            animation-duration: 1s;
        }

        /* Header */
        .main-header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Home Section */
        .home-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/img/education-bg.jpg');
            background-size: cover;
            color: white;
            padding: 120px 0;
        }

        .user-img-round {
            border: 5px solid var(--simple-color);
        }

        /* About Section */
        .highlight-text {
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: underline;
        }

        /* Achievements */
        .achievement-box {
            transition: transform 0.3s;
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }

        .achi-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        /* Initiatives */
        .initiative-card {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .initiative-card:hover {
            transform: translateY(-10px);
        }

        .initiative-card img {
            height: 250px;
            object-fit: cover;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        /* Contact Form */
        .modern-form .form-group {
            position: relative;
            margin-bottom: 2rem;
        }

        .modern-form input,
        .modern-form textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-bottom: 2px solid #ddd;
            transition: 0.3s;
            background: transparent;
        }

        .modern-form input:focus,
        .modern-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .px-btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s;
        }

        .px-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Previous Styles + Gallery Specific Styles */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            z-index: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
    
   
/* About Section Styles */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#about .container {
    position: relative;
    z-index: 1;
}

#about img {
    border: 5px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#about img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#about h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

#about h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

#about .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

#about strong {
    color: #2c3e50;
}

#about .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

#about .list-unstyled strong {
    min-width: 120px;
    color: #4a5568;
}

#about .col-md-6 {
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#about h5, #about h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

#about .small {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #about {
        padding: 3rem 0;
    }
    
    #about h3 {
        font-size: 1.75rem;
    }
    
    #about .lead {
        font-size: 1rem;
    }
    
    #about img {
        margin-bottom: 2rem;
    }
    
    #about .col-md-6 {
        margin-bottom: 1.5rem;
    }
}
.initiative-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-hover {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.initiative-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    background: white;
}

.card-title {
    color: #2c3e50;
    font-size: 1.25rem;
    min-height: 3.5rem;
}

.card-text {
    color: #6c757d;
    font-size: 0.95rem;
}
    :root {
            --primary: #1a56db;
            --secondary: #0e2e5e;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --warning: #ffc107;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
        }
        
        /* Top Header */
        .top-header {
            background: var(--gradient);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .top-header p {
            margin-bottom: 0;
            display: flex;
            align-items: center;
        }
        
        .top-header i {
            margin-right: 8px;
            font-size: 1rem;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .top-header a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        /* Navigation */
        .navbar {
            background: white;
            padding: 15px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--secondary);
        }
        
        .navbar-brand img {
            height: 60px;
            width: 60px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid var(--primary);
        }
        
        .navbar-brand h1 {
            font-size: 1.5rem;
            margin: 0;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark);
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary);
            background: rgba(26, 86, 219, 0.1);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: none;
            box-shadow: none !important;
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 85vh;
            min-height: 500px;
        }
        
        .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            filter: brightness(1);
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 30px;
            background: rgba(14, 46, 94, 0.18);
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }
        
        .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            color: white;
        }
        
        .carousel-caption p {
            font-size: 1.3rem;
            margin-bottom: 25px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
            backdrop-filter: blur(5px);
        }
        
        .btn-warning {
            background: var(--accent);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-warning:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            background: #ff5a1f;
        }
        
        /* Notice Section */
        .notice-section {
            padding: 80px 0;
            background: url('https://www.transparenttextures.com/patterns/concrete-wall.png'), #f8f9fa;
            position: relative;
        }
        
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background: var(--gradient);
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 15px 20px;
            border: none;
        }
        
        .card-header i {
            margin-right: 10px;
        }
        
        .card-body {
            padding: 25px;
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .date {
            color: var(--primary);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .btn-outline-secondary {
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 500;
            padding: 6px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-caption h2 {
                font-size: 2.2rem;
            }
            
            .carousel-caption p {
                font-size: 1.1rem;
            }
            
            .navbar-brand h1 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-item {
                height: 70vh;
            }
            
            .carousel-caption {
                padding: 20px;
                bottom: 20%;
            }
            
            .carousel-caption h2 {
                font-size: 1.8rem;
            }
            
            .top-header .col-md-6 {
                margin-bottom: 5px;
            }
            
            .top-header .text-md-end {
                text-align: left !important;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-item {
                height: 60vh;
            }
            
            .carousel-caption h2 {
                font-size: 1.5rem;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
            }
            
            .btn-warning {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }
        :root {
            --primary-color: #1a3a6c;
            --secondary-color: #ff6b00;
            --accent-color: #f8f9fa;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: #333;
        }
        
        .staff-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .staff-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 60px !important;
            position: relative;
            padding-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .section-title span {
            color: var(--primary-color);
            position: relative;
        }
        
        .staff-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            height: 100%;
            position: relative;
        }
        
        .staff-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .staff-img-container {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .staff-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .staff-card:hover img {
            transform: scale(1.05);
        }
        
        .card-body {
            padding: 25px;
            position: relative;
        }
        
        .card-title {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: var(--secondary-color);
        }
        
        .card-text {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .text-muted {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
        .social-links {
            position: absolute;
            top: -25px;
            right: 20px;
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease, top 0.3s ease;
        }
        
        .staff-card:hover .social-links {
            opacity: 1;
            top: -35px;
        }
        
        .social-links a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .btn-view-all {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-weight: 600;
            padding: 12px 35px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-view-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 86, 219, 0.4);
        }
        
        .btn-view-all::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(25deg);
            transition: all 0.5s ease;
        }
        
        .btn-view-all:hover::after {
            left: 120%;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .staff-img-container {
                height: 240px;
            }
        }
        
        .designation-badge {
            display: inline-block;
            background: rgba(26, 86, 219, 0.1);
            color: var(--primary-color);
            padding: 3px 10px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 5px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
        }
        
        .top-header {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .navbar-brand img {
            height: 60px;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            position: relative;
        }
        
        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .hero-slider .carousel-item {
            height: 500px;
        }
        
        .hero-slider .carousel-item img {
            height: 100%;
            object-fit: cover;
        }
        
        .hero-slider .carousel-caption {
            background: rgba(26, 58, 108, 0.8);
            padding: 25px;
            border-radius: 5px;
            bottom: 50px;
            left: 10%;
            right: 10%;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .notice-section .card-header {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 600;
        }
        
        .notice-section .news-item {
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            transition: all 0.3s;
        }
        
        .notice-section .news-item:hover {
            background-color: rgba(255, 107, 0, 0.05);
            padding-left: 5px;
        }
        
        .notice-section .news-item .date {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        .about-section {
            background-color: var(--accent-color);
            padding: 80px 0;
        }
        
        .features .feature-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .features .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .features .feature-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .features .feature-card .card-body {
            padding: 20px;
        }
        
        .features .feature-card .icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .staff-section .staff-card {
            text-align: center;
            border: none;
            transition: all 0.3s;
            overflow: hidden;
        }
        
        .staff-section .staff-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .staff-section .staff-card img {
            height: 300px;
            
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .staff-section .staff-card:hover img {
            transform: scale(1.05);
        }
        
        .stats-section {
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3') center/cover;
            color: white;
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item .number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 60px;
        }
        
        .footer h5 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .footer .contact-info li {
            margin-bottom: 15px;
            display: flex;
        }
        
        .footer .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            min-width: 20px;
        }
        
        .footer .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .footer .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .footer .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 50px;
        }
        
        .admin-panel-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .admin-panel-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        
        .admin-panel {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 1000;
            padding: 20px;
            display: none;
        }
        
        .admin-panel h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
        }
        
        .admin-panel .form-group {
            margin-bottom: 15px;
        }
        
        .admin-panel .btn-login {
            background: var(--secondary-color);
            color: white;
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .hero-slider .carousel-item {
                height: 350px;
            }
            
            .hero-slider .carousel-caption {
                position: relative;
                left: 0;
                right: 0;
                bottom: 0;
                margin-top: -50px;
            }
            
            .stat-item {
                margin-bottom: 30px;
            }
        }
  