/* ========================================================================
   BIJOY KRISHNA GIRLS' COLLEGE - MAIN STYLESHEET (MAROON THEME)
   ======================================================================== */

/* ========================================================================
   CSS VARIABLES & ROOT CONFIGURATION
   ======================================================================== */
:root {
    --primary-color: #960019;
    --primary-light: #b8002a;
    --primary-dark: #750014;
    --secondary-color: #dc2626;
    --accent-color: #f59e0b;
    --text-dark: #3d0515;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #960019 0%, #b8002a 100%);
    --bg-gradient-light: linear-gradient(135deg, #b8002a 0%, #d4003d 100%);
}

/* ========================================================================
   GLOBAL STYLES & RESET
   ======================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }
h4 { 
    font-weight: 700;
    font-size: 1.3rem;
}
h5 { font-weight: 700; }
h6 { font-weight: 700; }

/* Ensure Font Awesome icons display properly */
.fa, .fas, .far, .fal, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
}

.fas {
    font-weight: 900 !important;
}

.far {
    font-weight: 400 !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* ========================================================================
   ANIMATIONS
   ======================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================
   TOP BAR
   ======================================================================== */
.top-bar {
    background: var(--text-dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--accent-color);
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ========================================================================
   HEADER SECTION
   ======================================================================== */
.header-section {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.college-logo {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(150, 0, 25, 0.3);
}

.college-logo img {
    width: 100%;
    height: auto;
}

.college-info h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.college-info .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.accreditation-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-professional {
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-contact {
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-item i {
    width: 20px;
    color: #fff;
    margin-left: 10px;
}

/* ========================================================================
   ENHANCED HEADER ACTION BUTTONS - PROMINENT ICONS & ANIMATIONS
   ======================================================================== */
/* TEST STYLES - ADD THIS IN HEAD SECTION */
.header-action-buttons {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.header-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 28px !important;
    border-radius: 35px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important;
    border: 3px solid rgba(255,255,255,0.4) !important;
}

.btn-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255,255,255,0.4) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    position: relative !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

.btn-icon i {
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.btn-text {
    font-size: 15px !important;
    font-weight: 700 !important;
}

.admission-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    color: white !important;
}

.employee-btn {
    background: linear-gradient(135deg, #960019 0%, #b8002a 100%) !important;
    color: white !important;
}

.student-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: #fff !important;
}

.header-btn:hover {
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
}

.header-btn:hover .btn-icon {
    transform: rotate(360deg) scale(1.2) !important;
    background: rgba(255,255,255,0.6) !important;
}

/* Glow Effect on Hover */
.header-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 35px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.5), 
        rgba(255,255,255,0.1), 
        rgba(255,255,255,0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.header-btn:hover::after {
    opacity: 1;
    animation: glow-rotate 2s linear infinite;
}

@keyframes glow-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* PROMINENT ICON STYLING */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.2),
        inset 0 -2px 5px rgba(0,0,0,0.1),
        inset 0 2px 5px rgba(255,255,255,0.3);
    position: relative;
}

/* Icon Shine Effect */
.btn-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0.4), 
        transparent);
    border-radius: 50% 50% 0 0;
}

.btn-icon i {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.btn-text {
    z-index: 1;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ========================================================================
   BUTTON SPECIFIC STYLES WITH ENHANCED ANIMATIONS
   ======================================================================== */

/* Apply Online Button - Red Gradient */
.admission-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: white;
}

.admission-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(220, 38, 38, 0.6),
        0 0 30px rgba(220, 38, 38, 0.4);
    color: white;
    border-color: rgba(255,255,255,0.8);
}

.admission-btn:hover .btn-icon {
    background: rgba(255,255,255,0.6);
    transform: rotate(360deg) scale(1.2);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.3),
        0 0 20px rgba(255,255,255,0.5);
}

.admission-btn:hover .btn-icon i {
    animation: bounce 0.6s ease;
}

/* Employee Button - Maroon Gradient */
.employee-btn {
    background: linear-gradient(135deg, #960019 0%, #b8002a 50%, #d4003d 100%);
    color: white;
}

.employee-btn:hover {
    background: linear-gradient(135deg, #750014 0%, #960019 50%, #b8002a 100%);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(150, 0, 25, 0.6),
        0 0 30px rgba(150, 0, 25, 0.4);
    color: white;
    border-color: rgba(255,255,255,0.8);
}

.employee-btn:hover .btn-icon {
    background: rgba(255,255,255,0.6);
    transform: rotate(-360deg) scale(1.2);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.3),
        0 0 20px rgba(255,255,255,0.5);
}

.employee-btn:hover .btn-icon i {
    animation: shake 0.6s ease;
}

/* Student Button - Gold/Amber Gradient */
.student-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    color: white;
}

.student-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(245, 158, 11, 0.6),
        0 0 30px rgba(245, 158, 11, 0.4);
    color: white;
    border-color: rgba(255,255,255,0.8);
}

.student-btn:hover .btn-icon {
    background: rgba(255,255,255,0.6);
    transform: rotate(360deg) scale(1.2);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.3),
        0 0 20px rgba(255,255,255,0.5);
}

.student-btn:hover .btn-icon i {
    animation: pulse 0.6s ease;
}

/* ========================================================================
   ICON ANIMATIONS
   ======================================================================== */

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-4px);
    }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Button Text Animation on Hover */
.header-btn:hover .btn-text {
    animation: textGlow 0.8s ease-in-out;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255,255,255,0.8);
    }
}

/* Active/Press States */
.header-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.header-btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 5px rgba(255,255,255,0.5), 
        0 10px 30px rgba(0,0,0,0.25);
}

/* ========================================================================
   RESPONSIVE STYLES FOR HEADER BUTTONS
   ======================================================================== */

/* Tablet & Mobile (≤992px) */
@media (max-width: 992px) {
    .header-contact {
        text-align: center;
        margin-top: 20px;
    }
    
    .header-action-buttons {
        justify-content: center;
    }
    
    .header-btn {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .btn-icon {
        width: 46px;
        height: 46px;
    }
    
    .btn-icon i {
        font-size: 22px;
    }
    
    .btn-text {
        font-size: 14px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .header-action-buttons {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 15px;
    }

    .header-btn {
        font-size: 13px;
        padding: 14px 20px;
        gap: 10px;
        min-width: 145px;
        flex: 1 1 auto;
    }

    .btn-icon {
        width: 44px;
        height: 44px;
    }

    .btn-icon i {
        font-size: 21px;
    }

    .btn-text {
        font-size: 13px;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .header-action-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }
    
    .header-btn {
        width: 100%;
        max-width: 300px;
        min-width: 100%;
        justify-content: center;
        margin: 0 auto;
        padding: 16px 24px;
    }
    
    .btn-icon {
        width: 46px;
        height: 46px;
    }
    
    .btn-icon i {
        font-size: 22px;
    }
    
    .btn-text {
        font-size: 14px;
    }
}

/* Extra Small Mobile (≤360px) */
@media (max-width: 360px) {
    .header-btn {
        font-size: 12px;
        padding: 14px 18px;
    }
    
    .btn-icon {
        width: 42px;
        height: 42px;
    }
    
    .btn-icon i {
        font-size: 20px;
    }
    
    .btn-text {
        font-size: 12px;
    }
}
/* ========================================================================
   NAVIGATION
   ======================================================================== */
.main-nav {
    background: var(--primary-color);
    padding: 0;
}

.navbar-professional {
    background: var(--bg-gradient);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-professional .navbar-nav {
    width: 100%;
}

.navbar-professional .nav-item {
    position: relative;
}

.navbar-professional .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 18px 20px !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar-professional .nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--accent-color);
}

.navbar-professional .dropdown-menu {
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 15px 0;
    margin-top: 0;
}

.navbar-professional .dropdown-item {
    padding: 10px 25px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-professional .dropdown-item:hover {
    background: var(--bg-light);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-carousel {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: var(--accent-color);
}

.hero-stat .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero {
    background: var(--accent-color);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ========================================================================
   COLLEGE PROFILE SECTION
   ======================================================================== */
.college-profile-section {
    position: relative;
    background: var(--bg-light);
}

.college-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-image: url(../images/new-slider3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.college-profile-section .container {
    position: relative;
    z-index: 2;
}

/* ========================================================================
   PROFESSIONAL SECTIONS
   ======================================================================== */
.section-professional {
    padding: 30px 0;
}

.section-title-professional {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-professional h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title-professional h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title-professional p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================================================
   CARDS
   ======================================================================== */
.card-professional {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-professional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-professional .card-header {
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 25px;
    text-align: center;
}

.card-professional .card-body {
    padding: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* ========================================================================
   FACILITY ICONS
   ======================================================================== */
.facility-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.facility-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.facility-item p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.facility-details-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.facility-details-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(150, 0, 25, 0.3);
    text-decoration: none;
}

.facility-details-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.facility-details-btn:hover i {
    transform: translateX(3px);
}

/* ========================================================================
   NOTICE BOARD
   ======================================================================== */
.tab-content {
    max-height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.notice-board-professional {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.notice-item {
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    background: var(--bg-light);
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.notice-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.notice-date {
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

/* ========================================================================
   NOTICE SECTION STYLES
   ======================================================================== */
.notice-tab-btn {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e5e7eb;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.notice-tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.notice-tab-btn.active {
    background: var(--primary-color) !important;
    color: white;
    border-color: var(--primary-color);
}

.notice-card {
    background: white;
    border-radius: 15px;
    padding: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
    height: auto;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.notice-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.college-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.student-badge {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
}

.tender-badge {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
}

.tender-badge-closed {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
}

.admission-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.admission-badge-closed {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
}

.notice-date-small {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.notice-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notice-content {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 5px;
}

.notice-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.notice-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.tender-details,
.admission-details {
    background: var(--bg-light);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid var(--accent-color);
}

.tender-details small,
.admission-details small {
    color: var(--text-dark);
    line-height: 1.5;
}

/* Tab Content Animation */
.tab-pane {
    animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================================
   COLLEGE INTRODUCTION SECTION STYLES
   ======================================================================== */
.highlight-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.highlight-item i {
    font-size: 1.5rem;
}

.highlight-item h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.welcome-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(-20deg, #960019 0%, #750014 100%);
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
}

.welcome-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

/* Principal Section */
.principal-section {
    text-align: center;
    margin-bottom: 30px;
}

.principal-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.principal-image {
    width: 200px !important;
    height: 200px !important;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(150, 0, 25, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.principal-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(150, 0, 25, 0.5);
}

.principal-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
}

.principal-info {
    text-align: center;
}

.principal-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.principal-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 15px;
    color: #FFF;
    font-weight: 500;
}

.welcome-content {
    position: relative;
}

.welcome-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ========================================================================
   ABOUT SECTION COMMON HEADER STYLES
   ======================================================================== */
.about-section-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    text-align: center;
    position: relative;
    font-family: 'Libre Baskerville', 'Times New Roman', 'Georgia', serif !important;
}

.about-section-title.white-title {
    color: white !important;
}

.about-section-title.primary-title {
    color: var(--primary-color) !important;
}

.about-section-title.primary-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ========================================================================
   IMPORTANT INFORMATION SECTION STYLES
   ======================================================================== */
.important-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.important-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
}

.important-info-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    text-align: center;
    color: var(--primary-color) !important;
    position: relative;
}

.important-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.info-links-container {
    display: grid;
    gap: 8px;
}

.info-link-item {
    display: flex;
    align-items: center;
    padding: 2px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-link-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-link-item:hover {
    background: linear-gradient(135deg, rgba(150, 0, 25, 0.05) 0%, rgba(184, 0, 42, 0.02) 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(150, 0, 25, 0.15);
}

.info-link-item:hover::before {
    transform: scaleY(1);
}

.info-link-item:hover .info-icon {
    background: var(--bg-gradient);
    color: white;
    transform: scale(1.1);
}

.info-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
}

.info-arrow {
    color: var(--text-light);
    font-size: 12px;
    transition: all 0.3s ease;
    transform: translateX(0);
    opacity: 0.7;
}

.info-link-item:hover .info-arrow {
    color: var(--primary-color);
    transform: translateX(5px);
    opacity: 1;
}

/* ========================================================================
   BUTTON STYLES
   ======================================================================== */
.admission-btn:hover,
.contact-item a[href="#admission"]:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4) !important;
    color: white !important;
}

.contact-item a[href="#employee-login"]:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 0, 25, 0.4) !important;
    color: white !important;
}

.contact-item a[href="#student-login"]:hover {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
    color: white !important;
}

/* ========================================================================
   SEARCH FORM STYLES
   ======================================================================== */
.search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-form:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.search-form:focus-within {
    box-shadow: 0 6px 25px rgba(150, 0, 25, 0.3);
    border-color: var(--primary-color);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    min-width: 200px;
}

.search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.search-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: translateX(-2px);
}

.search-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* ========================================================================
   SLICK CAROUSEL STYLES
   ======================================================================== */
.autoplay {
    margin: 20px 0;
}

.autoplay img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer !important;
    position: relative;
}

.autoplay img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.certificate-clickable {
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
}

.certificate-clickable:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.autoplay img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.autoplay img:active {
    transform: scale(0.98);
}

.autoplay .slick-slide img {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.autoplay img {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.autoplay img:hover {
    border-color: var(--accent-color);
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: var(--primary-color);
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--accent-color);
}

.slick-prev,
.slick-next {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 999;
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
    background: var(--accent-color);
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

/* ========================================================================
   MODAL STYLES
   ======================================================================== */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1055;
}

.modal-header {
    background: var(--bg-light);
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
    position: relative;
    z-index: 1060;
}

.modal-body {
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1055;
}

.modal-footer {
    background: var(--bg-light);
    border-radius: 0 0 20px 20px;
    padding: 20px 30px;
    position: relative;
    z-index: 1060;
}

.modal-footer .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
}

.btn-close {
    background: none !important;
    border: none !important;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative !important;
    z-index: 1070 !important;
    cursor: pointer !important;
    padding: 8px !important;
    margin: 0 !important;
}

.btn-close:hover {
    opacity: 1 !important;
    transform: scale(1.1);
    background: rgba(220, 38, 38, 0.1) !important;
    border-radius: 50% !important;
}

.btn-close:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25) !important;
    outline: none !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal {
    z-index: 1055 !important;
}

#modalCertificateImage {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: default;
    pointer-events: none;
}

/* ========================================================================
   GALLERY SECTION STYLES
   ======================================================================== */
.gallery-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(150, 0, 25, 0.05) 0%, rgba(184, 0, 42, 0.05) 100%);
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e5e7eb;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(150, 0, 25, 0.3);
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn.active {
    background: var(--bg-gradient);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(150, 0, 25, 0.4);
}

.filter-btn.active::before {
    left: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    background: white;
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(150, 0, 25, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

#modalImage {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
}

/* Stats Counter */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add staggered animation delay */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer-professional {
    background: linear-gradient(135deg, var(--text-dark) 0%, #111827 25%, #1f2937 50%, #374151 75%, var(--text-dark) 100%);
    position: relative;
    color: white;
    padding: 60px 0 30px;
    overflow: hidden;
}

.footer-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(184, 0, 42, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer-professional .container {
    position: relative;
    z-index: 2;
}

.footer-professional h5 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-professional a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-professional a:hover {
    color: var(--accent-color);
}

.footer-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */
@media (max-width: 768px) {
    /* Mobile header layout */
    .col-lg-8 .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .college-logo {
        margin-right: 0 !important;
        margin-bottom: 20px !important;
        width: 80px !important;
        height: 80px !important;
    }
    
    .college-info {
        text-align: center !important;
    }
    
    .college-info h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .college-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-section {
        height: auto !Important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .section-title-professional h2 {
        font-size: 2.2rem;
    }
    
    .header-contact {
        text-align: left;
        margin-top: 20px;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .contact-item i {
        order: -1;
        margin-left: 0;
        margin-right: 10px;
    }

    /* Mobile login buttons */
    .contact-item .d-flex {
        flex-direction: row !important;
        gap: 4px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }

    .contact-item a {
        font-size: 10px !important;
        padding: 6px 8px !important;
        justify-content: center !important;
        white-space: nowrap !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .contact-item a i {
        margin-right: 3px !important;
        font-size: 10px !important;
    }

    /* Important Information responsive */
    .important-info-card {
        padding: 25px 20px;
    }

    .important-info-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .info-link-item {
        padding: 12px 15px;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
        font-size: 14px;
    }

    .info-text {
        font-size: 13px;
    }

    .info-link-item:hover {
        transform: translateX(4px);
    }

    /* Principal image smaller on mobile */
    .principal-image {
        width: 150px !important;
        height: 150px !important;
    }

    .principal-info h4 {
        font-size: 1.1rem;
    }

    /* Search form responsive */
    .search-input {
        min-width: 150px;
        font-size: 13px;
    }
    
    .search-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .search-btn span {
        display: none;
    }
    
    .search-btn i {
        margin-right: 0;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .gallery-stats {
        gap: 20px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    /* Medium screens */
    .contact-item a {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
}

/* Custom styles for video modal */
.video-modal .modal-dialog {
    max-width: 800px;
}

.video-modal .modal-content {
    background: linear-gradient(135deg, #960019 0%, #b8002a 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

.video-modal .modal-header {
    background: rgba(255,255,255,0.1);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px 20px 0 0;
    backdrop-filter: blur(10px);
}

.video-modal .modal-title {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}

.video-modal .modal-title i {
    color: #f59e0b;
    margin-right: 10px;
}

.video-modal .btn-close {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-modal .btn-close:hover {
    background: rgba(220, 38, 38, 0.8);
    transform: scale(1.1);
}

.video-modal .modal-body {
    padding: 30px;
    background: rgba(255,255,255,0.05);
}

.video-modal .iframe-container {
    position: relative;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.video-modal iframe {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.video-modal .modal-footer {
    background: rgba(255,255,255,0.1);
    border-top: 2px solid rgba(255,255,255,0.2);
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(10px);
    justify-content: center;
}

.video-modal .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.video-modal .btn-outline-light:hover {
    background: rgba(255,255,255,0.9);
    color: #960019;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .video-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .video-modal .modal-body {
        padding: 20px;
    }
    
    .video-modal iframe {
        height: 250px;
    }
}

/* Animation for modal entrance */
.video-modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.4s ease;
}

.video-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Breadcrumb Section */
.mod-breadcrumbs__wrapper {
	background: var(--bg-light);
	padding: 15px 0;
	border-bottom: 1px solid #e5e7eb;
}

.mod-breadcrumbs {
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 25px;
	backdrop-filter: blur(10px);
}

.mod-breadcrumbs__here {
	color: var(--text-light);
	font-weight: 600;
}

.mod-breadcrumbs .breadcrumb-item a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.mod-breadcrumbs .breadcrumb-item a:hover {
	color: var(--accent-color);
}

.mod-breadcrumbs .breadcrumb-item.active {
	color: var(--accent-color);
	font-weight: 600;
}

/* Content Section */
.content-section {
	padding: 50px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	min-height: 70vh;
	position: relative;
}

.content-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 20%, rgba(150, 0, 25, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
	pointer-events: none;
}

/* Left Sidebar Menu */
.left-menu-area {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	padding: 35px 25px;
	border-radius: 20px;
	box-shadow: 
		0 20px 40px rgba(0,0,0,0.1),
		0 8px 16px rgba(0,0,0,0.06),
		inset 0 1px 0 rgba(255,255,255,0.8);
	height: fit-content;
	position: sticky;
	top: 120px;
	border: 1px solid rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
}

.left-menu-area h2 {
	color: var(--primary-color);
	font-size: 1.6rem;
	margin-bottom: 30px;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 4px solid var(--accent-color);
	position: relative;
	font-weight: 700;
}

.left-menu-area h2::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background: var(--primary-color);
	border-radius: 2px;
}

.left-menu-area ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.left-menu-area li {
	margin-bottom: 4px;
}

.left-menu-area a {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	color: var(--text-dark);
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 500;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
}

.left-menu-area a::before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	bottom: 0;
	width: 100%;
	background: var(--bg-gradient);
	transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.left-menu-area a::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.3s ease;
}

.left-menu-area a:hover {
	color: white;
	transform: translateX(8px);
	box-shadow: 0 12px 30px rgba(150, 0, 25, 0.4);
	border-color: var(--primary-color);
}

.left-menu-area a:hover::before {
	left: 0;
}

.left-menu-area a:hover::after {
	opacity: 1;
	background: white;
}

.left-menu-area .active-side a {
	background: var(--bg-gradient);
	color: white;
	font-weight: 600;
	box-shadow: 0 15px 35px rgba(150, 0, 25, 0.5);
	transform: translateX(5px);
	border-color: var(--primary-color);
}

.left-menu-area .active-side a::before {
	left: 0;
}

.left-menu-area .active-side a::after {
	opacity: 1;
	background: white;
}

/* Right Content Area */
.right-content-area {
	padding: 32px;
	background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
	border-radius: 16px;
	box-shadow: 
		0 20px 40px rgba(0,0,0,0.08),
		0 8px 16px rgba(0,0,0,0.04);
	position: relative;
	overflow: hidden;
}

.page-title {
	color: var(--primary-color);
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 28px;
	padding-bottom: 16px;
	position: relative;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.page-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	border-radius: 2px;
}

.right-content-area h3 {
	color: var(--primary-color);
	font-size: 1.6rem;
	margin: 28px 0 18px 0;
	font-weight: 700;
	position: relative;
	letter-spacing: -0.3px;
}

.right-content-area p {
	color: var(--text-dark);
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 16px;
	text-align: justify;
	letter-spacing: 0.1px;
}

.right-content-area p:first-of-type {
	font-size: 17px;
	font-weight: 500;
	color: var(--primary-color);
	background: linear-gradient(135deg, rgba(150, 0, 25, 0.03) 0%, rgba(184, 0, 42, 0.01) 100%);
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 26px;
	border: 1px solid rgba(150, 0, 25, 0.08);
}

.right-content-area ul {
	margin: 22px 0;
	padding-left: 0;
}

.right-content-area li {
	margin-bottom: 12px;
	line-height: 1.7;
	color: var(--text-dark);
	padding-left: 24px;
	position: relative;
}

.right-content-area li::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 12px;
	width: 6px;
	height: 6px;
	background: var(--accent-color);
	border-radius: 50%;
}

/* Enhanced Mission Statement Styling */
.mission-list {
	background: linear-gradient(135deg, rgba(150, 0, 25, 0.02) 0%, rgba(184, 0, 42, 0.01) 100%);
	border: 1px solid rgba(150, 0, 25, 0.06);
	padding: 28px;
	margin: 28px 0;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(150, 0, 25, 0.06);
	position: relative;
}

.mission-list ul {
	margin: 0;
	padding: 0;
	counter-reset: mission-counter;
}

.mission-list li {
	margin-bottom: 18px;
	padding: 20px;
	background: rgba(255,255,255,0.7);
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.03);
	counter-increment: mission-counter;
	position: relative;
	padding-left: 56px;
	border: 1px solid rgba(255,255,255,0.8);
	line-height: 1.6;
}

.mission-list li::before {
	content: counter(mission-counter, decimal);
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 13px;
	box-shadow: 0 3px 8px rgba(150, 0, 25, 0.2);
}

.mission-list li:last-child {
	margin-bottom: 0;
}

/* Enhanced styling for important terms */
.right-content-area strong {
	color: var(--primary-color);
	font-weight: 700;
	padding: 1px 4px;
	background: rgba(150, 0, 25, 0.06);
	border-radius: 3px;
}

.right-content-area em {
	color: var(--accent-color);
	font-style: normal;
	font-weight: 600;
	padding: 1px 4px;
	background: rgba(245, 158, 11, 0.08);
	border-radius: 3px;
}

/*Table*/
.right-content-area table {
	width:95%;
	margin:2% 1%;
	padding:1%;
	border:#404f48 1px solid;
	font-size:14px;
	line-height:24px;
	text-align:justify;
}
.right-content-area table tr:nth-child(odd) {
	background-color:#f1f1f1;
}
.right-content-area table tr:nth-child(even) {
	background-color:#fafafa;
}
.right-content-area table tr td {
	padding:5px;
	text-align:left;
}
.right-content-area table tr td a {
	padding:4px 8px;
	background-color: var(--primary-color);
	color:#FFF;
	display:block;
}
.right-content-area table tr th {
	background-color: var(--primary-color);
	color:#d9fde5;
	text-align:center;
}
.right-content-tab-menu {
	width:44%;
	float:left;
	height:auto;
	overflow:hidden;
	padding:2%;
	margin:2% 1%;
	background: var(--primary-color);
	background: -webkit-linear-gradient(to right, var(--primary-light), var(--primary-color));
	background: linear-gradient(to right, var(--primary-light), var(--primary-color));
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
	transition: background-color 2s ease-out;
}
.right-content-tab-menu:hover {
	background: var(--primary-color);
	background: -webkit-linear-gradient(to left, var(--primary-light), var(--primary-color));
	background: linear-gradient(to left, var(--primary-light), var(--primary-color));
}
.right-content-tab-menu a {
	color:#FFF;
	font-size:24px;
}
.right-content-tab-menu a i {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
	padding:5px;
	background-color:#FFF;
	color: var(--primary-color);
	margin-right:10px;
}
.table-content {
	width:100%;
	float:left;
	height:auto;
	overflow:hidden;
	display:block;
	clear:both;
	border:none;
}
.table-content table {
	width:95%;
	margin:2% 1%;
	padding:1%;
	border:#404f48 1px solid;
	font-size:16px;
	line-height:26px;
	text-align:justify;
}
.table-content table tr:nth-child(odd) {
	background-color:#f1f1f1;
}
.table-content table tr:nth-child(even) {
	background-color:#fafafa;
}
.table-content table tr td {
	padding:5px;
	text-align:left;
}
.table-content table tr td a {
	padding:4px 8px;
	background-color: var(--primary-color);
	color:#FFF;
	width:auto;
	overflow:hidden;
	position:relative;
	padding:5px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-decoration:none;
	max-width:165px;
	min-width:163px;
	transition: color 2s ease;
	transition: background 2s ease;
}
.table-content table tr td a:before {
	content: "\f0a9";
    font-family: FontAwesome;
    right:15px;
    position:absolute;
    top:20%;
	font-size:20px;
}
.table-content table tr td a:hover {
	background-color:#00aeef;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
}
.table-content table tr th {
	background-color:var(--primary-color);
	color:#d9fde5;
	text-align:center;
}
@media only screen and (max-width: 768px) {
	.table-content:hover {
		overflow-x:scroll !important;
	}
}

/*==============================================================
		Modal image
==============================================================*/
/* Facility Photos */
.facility-photo {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.facility-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.facility-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-photo:hover img {
    transform: scale(1.05);
}

.facility-photo a {
    display: block;
    position: relative;
    overflow: hidden;
}

.facility-photo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(150, 0, 25, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.facility-photo:hover a::before {
    opacity: 1;
}

.facility-photo a::after {
    content: '\f065';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.facility-photo:hover a::after {
    opacity: 1;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.8);
}

.amenity-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.amenity-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}


/*=======================Faculty=========================*/
.faculty {
	width:100%;
	float:left;
	height:auto;
	overflow:hidden;
	display:block;
	clear:both;
	margin:10px 0px 10px 0px;
	padding:0px 0px 10px 0px;
	border-bottom:#000b2e 1px dashed;
	text-align:left;
}

.faculty img {
	float:left;
	padding:5px;
	background-color:#dedede;
	width:15%;
	height:auto;
	margin:0px 20px 10px 5px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.65);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.65);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.65);
}

.faculty a {
	padding:5px 10px;
	float:left;
	margin:15px 10px 15px 0px;
	color:#FFFFFF;
	background-color:#960019;
	text-decoration:none;
}

@media only screen and (max-width: 768px) {
	.faculty img {
		float:none;
		width:50%;
		height:auto;
		margin:10px 25%;
	}

	.faculty a {
		float:none;
		margin:10px auto;
		display:block;
		clear:both;
		text-align:center;
	}
}

/*=======================Gallery=========================*/
.vgallery iframe {
	padding:10px;
	margin:10px 5px;
	border:#960019 1px solid;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	-webkit-border-radius: 15px;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 15px;
	-moz-border-radius-bottomright: 0;
	border-radius: 15px;
	border-bottom-right-radius: 0;
}