/**
 * ============================================================================
 * PARIMAL MITRA SMRITI MAHAVIDYALAYA - MAIN STYLESHEET
 * পরিমল মিত্র স্মৃতি মহাবিদ্যালয়
 * ============================================================================
 * 
 * Table of Contents:
 * ------------------
 * 1. CSS Variables & Root
 * 2. Base Styles
 * 3. Top Bar
 * 4. Header
 * 5. Navigation
 * 6. Hero Carousel
 * 7. Marquee
 * 8. Section Headers
 * 9. Notice Section
 * 10. Quick Links
 * 11. About Section
 * 12. Principal Section
 * 13. Stats Section
 * 14. NAAC Services
 * 15. Events & Gallery
 * 16. Event Modal
 * 17. Lightbox
 * 18. Footer
 * 19. Back to Top
 * 20. Inner Pages (Content Wrapper, Left Menu, Right Content)
 * 21. Responsive Styles
 * 
 * ============================================================================
 */

:root {
    --primary-dark: #1a2744;
    --primary: #2c4a7c;
    --primary-light: #4a6fa5;
    --nav-bg: #1e3a5f;
    --accent-gold: #c9a227;
    --accent-gold-light: #e8c547;
    --cream: #faf8f5;
    --warm-white: #fffef9;
    --text-dark: #2d2d2d;
    --text-muted: #6b6b6b;
    --border-light: #e8e4dc;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a3a5c;
    padding: 6px 0;
    font-size: 15px;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar a:hover { color: #e8c547; }
.top-bar i { color: #e8c547; font-size: 11px; }
.top-bar-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 12px;
    margin-right: 12px;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.header-left-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.college-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -50px;
}

.logo-image {
    height: 105px;      
    width: auto;
    max-width: 140px;  
    display: block;
    object-fit: contain;
}

.title-section {
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.title-section .bengali {
    font-family: 'Noto Sans Bengali', sans-serif;
    font-size: 24px;
    color: #1a4a7c;
    line-height: 1.0;
    font-weight: 600;
    margin-bottom: 2px;
}
.title-section .hindi {
    font-size: 16px;
    color: #1a4a7c;
    font-weight: 500;
    line-height: 1.3;
}
.title-section .english {
    white-space: nowrap;
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #1a4a7c;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 4px;
}
.title-section .affiliation {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #5a7a9a;
    letter-spacing: 0.3px;
    line-height:0.9;
    margin-top: 2px;
}

/* Header Right Section */
.header-right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
margin-left: auto;   
padding-right: 10px;
}
.header-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-right: 0;
margin-right: -35px;  /* pushes buttons right */
}
.header-btn {
    background: linear-gradient(135deg, #1a4a7c 0%, #2d6aa8 100%);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 74, 124, 0.35);
}
.header-btn.admission {
    background: linear-gradient(135deg, #c41e3a 0%, #e63946 100%);
}

.header-btn.admission:hover {
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.35);
}

/* Google Search Bar */
.google-search-wrapper {
    width: 100%;
    max-width: 320px;
}
.google-search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 22px;
    padding: 6px 12px;
    transition: all 0.3s;
}
.google-search-form:hover,
.google-search-form:focus-within {
    border-color: #4285f4;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
}
.google-search-form .google-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
.google-search-form input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    flex: 1;
    color: #333;
}
.google-search-form input::placeholder {
    color: #999;
}
.google-search-form button {
    background: none;
    border: none;
    color: #4285f4;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.3s;
}
.google-search-form button:hover {
    color: #1a73e8;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
    background: linear-gradient(180deg, rgba(45, 90, 135, 0.95) 0%, rgba(30, 68, 104, 0.95) 100%);
    padding: 0;
/* margin-top: 15px;*/
}
.main-nav .navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 10px 14px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}
.main-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e8c547;
    transition: all 0.3s;
    transform: translateX(-50%);
}
.main-nav .navbar-nav .nav-link:hover::after {
    width: 70%;
}
.main-nav .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.08);
}
.main-nav .dropdown-menu {
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 0;
    min-width: 220px;
}
.main-nav .dropdown-item {
    padding: 10px 18px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    font-size: 14px;
}
.main-nav .dropdown-item:hover {
    background: #f5f7fa;
    color: #1a4a7c;
    padding-left: 22px;
}
.main-nav .dropdown-item:last-child { border-bottom: none; }
.navbar-toggler { border-color: rgba(255,255,255,0.5); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 550px;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}
.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-carousel .carousel-caption {
    bottom: 30%;
    left: 0;
    right: 0;
}
.hero-carousel .carousel-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    text-shadow: 2px 3px 15px rgba(0,0,0,0.35);
    letter-spacing: 2px;
}
.carousel-indicators {
    bottom: 20px;
}
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: var(--primary-dark);
    padding: 12px 0;
    overflow: hidden;
}
.marquee-label {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}
.marquee-content {
    overflow: hidden;
    flex: 1;
}
.marquee-text {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.marquee-text span {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    padding: 0 40px;
}
.marquee-text span::before {
    content: '★';
    color: var(--accent-gold);
    margin-right: 10px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
    border-radius: 2px;
}
.section-header p {
    color: var(--text-muted);
    margin-top: 15px;
}

/* ===== NOTICE SECTION ===== */
.notice-section {
    padding: 30px 0;
    background: var(--cream);
}
.notice-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;

    /* Dark Royal Blue base border */
    border: 2px solid rgba(15,31,75,0.8);

    /* Category indicator strip */
    border-left-width: 6px;
}

.notice-box.general-active { border-left-color: #162b6f; }
.notice-box.tender-active { border-left-color: #162b6f; }
.notice-box.admission-active { border-left-color: #162b6f; }
.notice-box.examination-active { border-left-color: #162b6f; }

.notice-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    border-radius: 8px !important;
    flex: 1;
    justify-content: center;
    transition: all 0.3s;
    border: none;
}
.notice-tabs .nav-link i { font-size: 14px; }
.notice-tabs .nav-link.general { background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%); }
.notice-tabs .nav-link.tender { background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%); }
.notice-tabs .nav-link.admission-tab { background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%); }
.notice-tabs .nav-link.examination { background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%); }
.notice-tabs .nav-link.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f4f8;
    transition: all 0.3s;
}
.notice-item:hover { background: #f8fafc; }
.notice-date {
    min-width: 50px;
    text-align: center;
    margin-right: 15px;
}
.notice-date .day {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1;
}
.notice-date .month {
    font-size: 11px;
    color: #6b7c93;
    text-transform: uppercase;
    font-weight: 500;
}
.notice-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.notice-info h4 a {
    color: #1e3a5f;
    text-decoration: none;
}
.notice-info h4 a:hover { color: var(--primary); }
.notice-info p {
    font-size: 12px;
    color: #6b7c93;
    margin: 0;
}
.notice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
}
.notice-dot.new { background: #2d8a5e; }
.notice-dot.urgent { background: #ef4444; }

/* ===== QUICK LINKS ===== */
.quick-links-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: 2px solid rgba(15,31,75,0.8);
}
.quick-links-box h3 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
    margin-bottom: 15px;
}
.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.quick-links-list a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
    border-color: var(--primary);
}
.quick-links-list a:hover i {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
}
.quick-links-list a i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.ql-service i { background: #dbeafe; color: #2563eb; }
.ql-grievance i { background: #fee2e2; color: #dc2626; }
.ql-prospectus i { background: #fef3c7; color: #d97706; }
.ql-scholarship i { background: #d1fae5; color: #059669; }
.ql-career i { background: #ede9fe; color: #7c3aed; }
.ql-campus i { background: #cffafe; color: #0891b2; }
.ql-rti i { background: #dbeafe; color: #2563eb; }
.ql-antiragging i { background: #fce7f3; color: #db2777; }
.ql-fee i { background: #fef3c7; color: #d97706; }
.ql-survey i { background: #e0e7ff; color: #4f46e5; }

/* Important Links Box Specific Styles */
.important-links-box h3 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a5f 100%);
    color: #fff;
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    border-radius: 14px 14px 0 0;
    border-bottom: none;
}
.important-links-box h3 i {
    color: var(--accent-gold);
}

/* ===== ABOUT SECTION ===== */
    .about-section {
    padding: 30px 0;
    background-color: #f8f9f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cg stroke='%232c4a7c' stroke-opacity='0.08' stroke-width='1.4'%3E%3Cline x1='14' y1='7' x2='14' y2='21'/%3E%3Cline x1='7' y1='14' x2='21' y2='14'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}


.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    /* Top decorative border */
    linear-gradient(to right, transparent 20%, rgba(201,162,39,0.15) 50%, transparent 80%) no-repeat top/100% 1px,
    /* Bottom decorative border */
    linear-gradient(to right, transparent 20%, rgba(201,162,39,0.15) 50%, transparent 80%) no-repeat bottom/100% 1px;
    pointer-events: none;
}
.about-image-container {
    position: relative;
}
.about-image-main {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s;
}
.about-image-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
.about-pattern {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(44,74,124,0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}
.about-tag i { color: var(--accent-gold); }
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.about-content h2 span { color: var(--accent-gold); }
.about-content .lead {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44,74,124,0.25);
}
.about-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44,74,124,0.35);
}

/* ===== PRINCIPAL SECTION ===== */
.principal-section {
    padding: 30px 0;
    background:
radial-gradient(
    circle at 20% 25%,
    rgba(255,255,255,0.12),
    transparent 55%
),
repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 16px
),
var(--primary-dark);
    position: relative;
}

    .principal-image-frame {
    position: relative;
    width: 280px;       /* image container width */
    height: 300px;      /* image container height */
    margin: 0 auto;     /* keeps image centered */
    flex-shrink: 0;     /* prevents pushing text */
}

.principal-image {
    width: 280px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--accent-gold);
    display: block;
}


    .principal-content {
    color: #fff;
    padding-left: 30px;   /* creates space from image */
}
.principal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,162,39,0.2);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}
.principal-badge i {
    color: var(--accent-gold);
    font-size: 16px;
}
.principal-badge span {
    color: var(--accent-gold-light);
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.principal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}
.principal-content .designation {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.principal-message {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.quote-icon {
    color: var(--accent-gold);
    font-size: 24px;
    opacity: 0.5;
    margin-bottom: 10px;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 3px solid #919398;
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}
.read-more-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 35px 0;
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 100%);
}
.stat-item {
    text-align: center;
    padding: 15px 10px;
    color: #fff;
}
.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(201,162,39,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: var(--accent-gold);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 3px;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

/* ===== NAAC SERVICES ===== */
    .naac-section {
    padding: 30px 0;
    background-color: #fafaf8;
    background-image: 
linear-gradient(45deg, rgba(44,74,124,0.025) 25%, transparent 25%),
linear-gradient(-45deg, rgba(44,74,124,0.025) 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, rgba(44,74,124,0.025) 75%),
linear-gradient(-45deg, transparent 75%, rgba(44,74,124,0.025) 75%);
    background-size: 80px 80px;
}

.service-card {
    background: #ffffff;
    padding: 26px 22px 26px 26px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    border-left: 4px solid rgba(44,74,124,0.25);
    box-shadow: 0 6px 22px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.service-card:hover {
    border-left-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    color: #fff;
}
.service-card h4 {
    font-size: 18px;
    font-weight: 600;
text-align: center; 
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
text-align: center; 
    margin: 0;
}

/* ===== COMBINED EVENTS & GALLERY SECTION ===== */
.events-gallery-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #f8f6f3 0%, var(--cream) 100%);
    position: relative;
}
.events-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ===== EVENTS BOX - PREMIUM DESIGN ===== */
.events-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 39, 68, 0.08), 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(232, 228, 220, 0.8);
}
.events-box-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2240 100%);
    color: #fff;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.events-box-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.events-box-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.events-box-header h3 i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}
.events-box-header .view-all {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #3d5a80;
    border: 1px solid rgba(255,255,255,0.15);
}
.events-box-header .view-all:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

/* Events Slider Container */
.events-slider-container {
    position: relative;
    height: 460px;
    overflow: hidden;
    background: #fff;
}
.events-slider-wrapper {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Premium Event Cards */
.event-card {
    display: flex;
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfb 100%);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 20px 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(26, 39, 68, 0.15), 0 5px 15px rgba(0,0,0,0.08);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.event-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(201, 162, 39, 0.3);
}
.event-card:hover::after {
    opacity: 1;
}

/* Event Image with Overlay */
.event-card-img {
    position: relative;
    width: 200px;
    min-width: 190px;
    height: 130px;
    overflow: hidden;
}
.event-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.1) 0%, rgba(26, 58, 92, 0.3) 100%);
    z-index: 1;
    transition: opacity 0.4s;
}
.event-card:hover .event-card-img::before {
    opacity: 0;
}
.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.event-card:hover .event-card-img img {
    transform: scale(1.1);
}

/* Date Badge */
.event-card-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #3d5a80;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
    z-index: 2;
    min-width: 52px;
}
.event-card-date .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
.event-card-date .month {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* Event Body */
.event-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    position: relative;
}
.event-card-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.event-card:hover .event-card-body::before {
    opacity: 1;
}
.event-card-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
    font-family: 'Source Sans 3', sans-serif;
}
.event-card:hover .event-card-body h4 {
    color: var(--primary);
}
.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.event-card-meta span {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
    transition: color 0.3s;
}
.event-card-meta i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f5f3ef 0%, #ebe8e2 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-right: 8px;
    font-size: 10px;
    transition: all 0.3s;
}
.event-card:hover .event-card-meta i {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Click indicator */
.event-card-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #f5f3ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s;
}
.event-card:hover .event-card-arrow {
    opacity: 1;
    right: 20px;
}

/* Slider Navigation */
.events-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-top: 1px solid #f0f0f0;
}
.events-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    padding: 0;
}
.events-slider-dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}
.events-slider-dot.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4af37 100%);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
}

/* ===== EVENT MODAL - ELEGANT DESIGN ===== */
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 34, 64, 0.95);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 30px;
}
.event-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.event-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.85) translateY(40px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.event-modal-overlay.active .event-modal {
    transform: scale(1) translateY(0);
}
.event-modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.event-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.event-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    z-index: 10;
}
.event-modal-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--accent-gold);
}
.event-modal-date-badge {
    position: absolute;
    bottom: 25px;
    left: 30px;
    background: linear-gradient(145deg, var(--accent-gold) 0%, #b8922a 100%);
    padding: 14px 20px;
    border-radius: 14px;
    text-align: center;
    color: #1a2744;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 10;
    min-width: 70px;
}
.event-modal-date-badge .day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
.event-modal-date-badge .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}
.event-modal-body {
    padding: 30px 35px 35px;
}
.event-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}
.event-modal-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.event-modal-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #555;
}
.event-modal-info-item i {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f5f3ef 0%, #ebe8e2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 15px;
}
.event-modal-description {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 30px;
}
.event-modal-actions {
    display: flex;
    gap: 15px;
}
.event-modal-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.event-modal-btn.primary {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2240 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
}
.event-modal-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.4);
}
.event-modal-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid #ddd;
}
.event-modal-btn.secondary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .events-slider-container {
    height: 420px;
    }
    .event-card {
    margin: 0 15px 14px;
    }
    .event-card-img {
    width: 120px;
    min-width: 120px;
    height: 110px;
    }
    .event-card-body {
    padding: 14px 16px;
    }
    .event-card-body h4 {
    font-size: 14px;
    }
    .event-card-meta span {
    font-size: 12px;
    }
    .event-card-arrow {
    display: none;
    }
    .event-modal {
    border-radius: 20px;
    }
    .event-modal-header {
    height: 220px;
    }
    .event-modal-title {
    font-size: 1.5rem;
    }
    .event-modal-body {
    padding: 25px;
    }
    .event-modal-actions {
    flex-direction: column;
    }
    .event-modal-btn {
    justify-content: center;
    }
}

/* Gallery Side */
.gallery-box {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}
.gallery-box-header {
    padding: 18px 20px;  
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a5f 100%);

}
.gallery-box-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gallery-box-header h3 i {
    color: var(--accent-gold);
}
.gallery-box-header .view-all {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #3d5a80;
    border: 1px solid rgba(255,255,255,0.15);
}
.gallery-box-header .view-all:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}
.gallery-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    background: #f5f3ef;
    border-bottom: 1px solid var(--border-light);
}
.gallery-tab {
    padding: 14px 25px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    background: transparent;
    outline: none;
    font-family: inherit;
}
.gallery-tab:hover {
    color: var(--primary-dark);
    background: rgba(0,0,0,0.03);
}
.gallery-tab.active {
    color: var(--primary-dark);
    border-bottom-color: var(--accent-gold);
    background: #fff;
}
.gallery-tab i {
    font-size: 14px;
    color: var(--accent-gold);
}
.gallery-content {
    padding: 20px;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-thumb:hover img {
    transform: scale(1.1);
}
.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-thumb:hover .gallery-thumb-overlay {
    opacity: 1;
}
.gallery-thumb-overlay i {
    color: #fff;
    font-size: 24px;
}
.video-thumb {
    position: relative;
}
.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.35);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
}
.video-play-btn i {
    color: var(--primary-dark);
    font-size: 16px;
    margin-left: 3px;
}
.gallery-thumb:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}
.gallery-panel {
    display: none;
}
.gallery-panel.active {
    display: block;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}
.lightbox-prev {
    left: -70px;
}
.lightbox-next {
    right: -70px;
}
.lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
    }
    .lightbox-prev {
    left: 10px;
    }
    .lightbox-next {
    right: 10px;
    }
}

/* ===== CONTACT SECTION ===== */
/* ===== FOOTER ===== */
/* ===== FOOTER - Navy Blue + Slate Blue + Soft Sand ===== */
.footer {
    background: linear-gradient(135deg, #1a2744 0%, #2a3f5f 100%);
    padding: 50px 0 0;
    color: #fff;
}
.footer-main {
    padding-bottom: 40px;
}
.footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #d4a84c;
    letter-spacing: 0.5px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { 
    margin-bottom: 12px; 
}
.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: #d4a84c;
    padding-left: 5px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}
.footer-contact-item i {
    color: #d4a84c;
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}
.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}
.footer-contact-item a:hover {
    color: #d4a84c;
}
.footer-social-title {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: #3d5a80;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    font-size: 16px;
}
.footer-social a:hover {
    background: #d4a84c;
    color: #1a2744;
    transform: translateY(-3px);
}
.footer-map {
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-bottom {
    background: #151f33;
    padding: 18px 0;
    margin-top: 0;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.footer-bottom a {
    color: #d4a84c;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom a:hover { 
    color: #fff;
    text-decoration: underline;
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1d1d9f;
    color:#ffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 168, 76, 0.4);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #e8c547;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 168, 76, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item { height: 400px; }
    .hero-carousel .carousel-caption h1 { font-size: 2.5rem; }
    .principal-image-frame {
    width: 180px;
    height: 230px;
    margin: 0 auto 30px;
    }
    .title-section .bengali { font-size: 18px; }
    .title-section .hindi { font-size: 14px; }
    .title-section .english { font-size: 18px; }
    .title-section .affiliation { font-size: 12px; }
    .logo-image { height: 80px; max-width: 90px; }
    .header-btn { padding: 7px 12px; font-size: 11px; }
    .google-search-wrapper { max-width: 260px; }
    .header-main-row { gap: 10px; }
    .college-logo { margin-left: 0; }
    .header-buttons { margin-right: 0; }
    /* Principal section tablet adjustments */
    .principal-image-frame {
    width: 220px;
    height: 250px;
    }
    .principal-image {
    width: 220px;
    height: 250px;
    }
    .principal-content {
    padding-left: 20px;
    }
    .principal-badge span {
    font-size: 22px;
    }
}
@media (max-width: 767px) {
    .top-header { padding: 15px 0; }
    .logo-image { height: 65px; max-width: 75px; }
    .title-section .bengali { font-size: 16px; }
    .title-section .english { font-size: 15px; white-space: normal; }
    .title-section .hindi { font-size: 13px; }
    .title-section .affiliation { font-size: 11px; }
    .header-right-section { display: none !important; }
    .header-main-row { justify-content: center; }
    .header-left-section { 
    justify-content: center; 
    flex-direction: column; 
    text-align: center; 
    gap: 10px;
    width: 100%;
    }
    .college-logo { 
    margin-left: 0 !important; 
    justify-content: center;
    }
    .title-section { 
    padding-left: 0; 
    align-items: center;
    text-align: center;
    }
    /* Principal section mobile center alignment */
    .principal-section .row {
    flex-direction: column;
    }
    .principal-section .col-lg-3,
    .principal-section .col-lg-9 {
    width: 100%;
    text-align: center;
    }
    .principal-image-frame {
    width: 200px;
    height: 220px;
    margin: 0 auto 25px;
    }
    .principal-image {
    width: 200px;
    height: 220px;
    }
    .principal-content {
    padding-left: 0;
    text-align: center;
    }
    .principal-badge {
    justify-content: center;
    }
    .principal-badge span {
    font-size: 18px;
    letter-spacing: 1px;
    }
    .principal-content h2 {
    font-size: 1.4rem;
    }
    .principal-content .designation {
    font-size: 15px;
    }
    .principal-message {
    text-align: left;
    border-left: 3px solid var(--accent-gold);
    padding-left: 15px;
    margin: 0 auto;
    max-width: 100%;
    }
    .quote-icon {
    display: none;
    }
    .read-more-btn {
    display: inline-flex;
    margin: 15px auto 0;
    }
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item { height: 350px; }
    .hero-carousel .carousel-caption h1 { font-size: 1.8rem; }
    .notice-tabs .nav-link span { display: none; }
    .notice-tabs .nav-link { padding: 12px; }
    .stat-item { padding: 12px 8px; }
    .stat-number { font-size: 1.8rem; }
    .stat-icon { width: 40px; height: 40px; font-size: 16px; }
    .principal-content h2 { font-size: 1.5rem; }
    .service-card { padding: 20px 15px; }
    .service-icon { width: 45px; height: 45px; font-size: 18px; }
    .service-card h4 { font-size: 13px; }
    .event-card { flex-direction: column; }
    .event-card-img { width: 100%; height: 150px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    /* Top bar mobile fix */
    .top-bar .row { flex-direction: column; text-align: center; gap: 8px; }
    .top-bar .col-auto { justify-content: center; }
    .top-bar .col.text-end { text-align: center !important; }
    .top-bar-divider { border-right: none; padding-right: 8px; margin-right: 8px; }
    /* Footer mobile center alignment */
    .footer .col-lg-3, .footer .col-md-6 { text-align: center; }
    .footer-contact-item { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-map { margin: 0 auto; }

/* Notice Section - Show tab names */
    .notice-tabs .nav-link span { 
    display: inline !important; 
    font-size: 11px;
    }
    .notice-tabs .nav-link { 
    padding: 10px 8px; 
    min-width: auto;
    flex-direction: column;
    gap: 4px;
    }
    .notice-tabs .nav-link i { font-size: 14px; }
    .notice-item { padding: 12px 15px; flex-wrap: wrap; }
    .notice-date { min-width: 45px; margin-right: 10px; }
    .notice-date .day { font-size: 20px; }
    .notice-info h4 { font-size: 13px; }
    .notice-info p { font-size: 11px; }

}
@media (max-width: 480px) {
    .event-card-body h4 { font-size: 14px; }
    .event-card-img { height: 140px; }
    .title-section .english { font-size: 13px; }
    .title-section .bengali { font-size: 14px; }
    .logo-image { height: 55px; max-width: 65px; }
    /* Principal section small mobile */
    .principal-image-frame {
    width: 160px;
    height: 180px;
    }
    .principal-image {
    width: 160px;
    height: 180px;
    }
    .principal-badge span {
    font-size: 14px;
    }
    .principal-content h2 {
    font-size: 1.2rem;
    }
    .principal-content .designation {
    font-size: 13px;
    }
    .principal-message {
    font-size: 0.9rem;
    }
.notice-tabs { flex-wrap: wrap; }
    .notice-tabs .nav-link { 
    flex: 0 0 50%; 
    flex-direction: row;
    gap: 6px;
    }
    .notice-tabs .nav-link span { 
    display: inline !important;
    font-size: 10px;
    }
}

/* ===== INNER PAGE BANNER ===== */
.inner-page-banner {
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 50%, #1a3a5c 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.05;
}

.inner-page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.inner-page-banner .breadcrumb-nav {
    position: relative;
    z-index: 1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    padding: 15px 0;
    background: transparent;
}

.breadcrumb-nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav li a:hover {
    color: #e8c547;
}

.breadcrumb-nav li + li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.breadcrumb-nav li.active {
    color: #e8c547;
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
    padding: 50px 0 60px;
    background: #f8f9fa;
    min-height: calc(100vh - 400px);
}

/* ===== LEFT MENU AREA (ENHANCED) ===== */
.left-menu-area {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 20px;
    border: 1px solid #e8e4dc;
}

.left-menu-area h2 {
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 100%);
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 25px;
    margin: 0;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.left-menu-area h2::before {
    content: '\f19d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    color: #c9a227;
    font-size: 16px;
}

.left-menu-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
}

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

.left-menu-area ul li {
    border-bottom: 1px solid #f0f0f0;
}

.left-menu-area ul li:last-child {
    border-bottom: none;
}

.left-menu-area ul li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #3d3d3d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.left-menu-area ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    color: #c9a227;
    font-size: 11px;
    transition: all 0.3s ease;
    width: 15px;
    text-align: center;
}

.left-menu-area ul li a:hover {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    color: #1a2744;
    padding-left: 30px;
    border-left-color: #c9a227;
}

.left-menu-area ul li a:hover::before {
    transform: translateX(5px);
    color: #1a2744;
}

/* Active menu item */
.left-menu-area ul li.active-menu a {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.02) 100%);
    color: #1a2744;
    border-left: 4px solid #c9a227;
    font-weight: 600;
}

.left-menu-area ul li.active-menu a::before {
    content: '\f0da';
    color: #c9a227;
    transform: none;
}

/* ===== RIGHT CONTENT AREA (ENHANCED) ===== */
.right-content-area {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 45px;
    border: 1px solid #e8e4dc;
}

.right-content-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-content-area h2::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #c9a227;
    font-size: 24px;
}

.right-content-area h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c9a227 0%, #e8c547 100%);
    border-radius: 2px;
}

.right-content-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c4a7c;
    margin: 30px 0 18px;
}

.right-content-area h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2744;
    margin: 25px 0 15px;
}

.right-content-area p {
    font-size: 16px;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 18px;
    text-align: justify;
}

.right-content-area p:last-child {
    margin-bottom: 0;
}

.right-content-area ul,
.right-content-area ol {
    margin: 20px 0;
    padding-left: 25px;
}

.right-content-area ul li,
.right-content-area ol li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.right-content-area ul li::marker {
    color: #c9a227;
}

.right-content-area > a {
    color: #2c4a7c;
    text-decoration: none;
    transition: color 0.3s;
}

.right-content-area > a:hover {
    color: #c9a227;
    text-decoration: underline;
}

/* Content Images */
.right-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.right-content-area .content-image-left {
    float: left;
    margin: 5px 25px 15px 0;
    max-width: 300px;
}

.right-content-area .content-image-right {
    float: right;
    margin: 5px 0 15px 25px;
    max-width: 300px;
}

/* ===== ENHANCED CONTENT TABLES ===== */
.right-content-area table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    font-size: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e5ec;
}

.right-content-area table thead {
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 100%);
    color: #fff;
}

.right-content-area table th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 3px solid #c9a227;
    vertical-align: middle;
    position: relative;
}

/* Header cell borders for multi-row headers */
.right-content-area table thead tr:first-child th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.right-content-area table thead tr:first-child th[rowspan] {
    border-bottom: 3px solid #c9a227;
    background: linear-gradient(180deg, #1a2744 0%, #243656 100%);
}

.right-content-area table thead tr:last-child th {
    border-bottom: 3px solid #c9a227;
    font-size: 13px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.15);
}

/* Column header separators */
.right-content-area table th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.right-content-area table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eef1f5;
    color: #4a4a4a;
    text-align: center;
    vertical-align: middle;
    transition: all 0.2s ease;
}

/* Cell borders */
.right-content-area table td:not(:last-child) {
    border-right: 1px solid #eef1f5;
}

/* Year column with rowspan - special styling */
.right-content-area table tbody td[rowspan] {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f3f7 100%);
    font-weight: 700;
    color: #1a2744;
    font-size: 15px;
    border-right: 2px solid #c9a227;
    position: relative;
}

.right-content-area table tbody td[rowspan]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c9a227 0%, #e8c547 100%);
}

/* Semester column styling */
.right-content-area table tbody tr td:nth-child(2) {
    font-weight: 500;
    color: #2c4a7c;
    text-align: left;
    padding-left: 25px;
}

/* Remove default last-child border rule for proper striping */
.right-content-area table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== ROW STRIPING & HOVER (Custom Classes) ===== */
.right-content-area table tbody.row-striping tr:nth-child(4n+3),
.right-content-area table tbody.row-striping tr:nth-child(4n+4) {
    background: #f8fafc;
}

.right-content-area table tbody.row-striping tr:nth-child(4n+1),
.right-content-area table tbody.row-striping tr:nth-child(4n+2) {
    background: #ffffff;
}

/* Hover effect */
.right-content-area table tbody.row-hover tr:hover {
    background: rgba(201, 162, 39, 0.08) !important;
}

.right-content-area table tbody.row-hover tr:hover td {
    color: #1a2744;
}

/* ===== DOWNLOAD BUTTON STYLING IN TABLES ===== */
.right-content-area table tbody td a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2c4a7c 0%, #3d6098 100%);
    color: #fff !important;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(44, 74, 124, 0.25);
    position: relative;
    overflow: hidden;
}

/* Add download icon before link text */
.right-content-area table tbody td a::before {
    content: '\f019';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Hover state */
.right-content-area table tbody td a:hover {
    background: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
    color: #1a2744 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.right-content-area table tbody td a:hover::before {
    transform: translateY(2px);
    animation: downloadBounce 0.5s ease infinite;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* Active/click state */
.right-content-area table tbody td a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

/* Blockquotes */
.right-content-area blockquote {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.02) 100%);
    border-left: 4px solid #c9a227;
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    font-size: 17px;
    color: #3d3d3d;
    border-radius: 0 8px 8px 0;
}

.right-content-area blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #1a2744;
}

/* Principal/Staff Profile Card */
.profile-card {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8e4dc;
}

.profile-card .profile-image {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.profile-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.profile-card .profile-info {
    flex: 1;
}

.profile-card .profile-info h3 {
    margin-top: 0;
    font-size: 24px;
    color: #1a2744;
}

.profile-card .profile-info .designation {
    font-size: 16px;
    color: #c9a227;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Download Links */
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 100%);
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s;
    margin: 5px 5px 5px 0;
}

.download-link:hover {
    background: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
    color: #1a2744 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.download-link i {
    font-size: 16px;
}

/* Info Boxes */
.info-box {
    padding: 20px 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-box.info-primary {
    background: linear-gradient(90deg, rgba(44, 74, 124, 0.1) 0%, rgba(44, 74, 124, 0.05) 100%);
    border-left: 4px solid #2c4a7c;
}

.info-box.info-warning {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-left: 4px solid #c9a227;
}

.info-box.info-success {
    background: linear-gradient(90deg, rgba(45, 138, 94, 0.1) 0%, rgba(45, 138, 94, 0.05) 100%);
    border-left: 4px solid #2d8a5e;
}

.info-box.info-danger {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-left: 4px solid #dc3545;
}

/* ===== INNER PAGE RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .content-wrapper {
        padding: 40px 0 50px;
    }

    .left-menu-area {
        margin-bottom: 30px;
        position: relative;
        top: 0;
    }

    .right-content-area {
        padding: 30px 25px;
    }

    .right-content-area h2 {
        font-size: 24px;
        gap: 12px;
    }

    .right-content-area h2::before {
        font-size: 20px;
    }

    .right-content-area h3 {
        font-size: 20px;
    }

    .right-content-area table {
        font-size: 14px;
    }

    .right-content-area table th {
        padding: 14px 12px;
        font-size: 12px;
    }

    .right-content-area table td {
        padding: 14px 12px;
    }

    .right-content-area table tbody td a {
        padding: 8px 14px;
        font-size: 12px;
        min-width: 90px;
    }

    .right-content-area table tbody tr td:nth-child(2) {
        padding-left: 12px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .content-wrapper {
        padding: 30px 0 40px;
    }

    .left-menu-area {
        margin-bottom: 25px;
        position: relative;
        top: 0;
    }

    .left-menu-area h2 {
        font-size: 15px;
        padding: 15px 20px;
    }

    .left-menu-area ul li a {
        padding: 12px 20px;
        font-size: 13px;
    }

    .right-content-area {
        padding: 25px 20px;
    }

    .right-content-area h2 {
        font-size: 22px;
        gap: 10px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .right-content-area h2::before {
        font-size: 18px;
    }

    .right-content-area h2::after {
        width: 70px;
    }

    .right-content-area h3 {
        font-size: 18px;
        margin: 25px 0 15px;
    }

    .right-content-area p {
        font-size: 15px;
        line-height: 1.75;
        text-align: left;
    }

    .inner-page-banner {
        padding: 35px 0 30px;
    }

    .inner-page-banner h1 {
        font-size: 1.6rem;
    }

    .breadcrumb-nav li {
        font-size: 13px;
    }

    .right-content-area .content-image-left,
    .right-content-area .content-image-right {
        float: none;
        max-width: 100%;
        margin: 15px 0;
    }

    /* Table horizontal scroll wrapper */
    .right-content-area table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        margin: 20px -10px;
        padding: 0 10px;
        font-size: 13px;
    }

    .right-content-area table th,
    .right-content-area table td {
        min-width: 100px;
        padding: 10px 12px;
    }

    .right-content-area table th:first-child,
    .right-content-area table td:first-child {
        min-width: 90px;
    }

    .right-content-area table tbody td a {
        padding: 8px 12px;
        font-size: 11px;
        min-width: 80px;
    }

    .right-content-area table tbody td a::before {
        font-size: 10px;
    }

    .download-link {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 8px 0;
    }

    .profile-card {
        padding: 20px;
    }

    .profile-card .profile-image {
        width: 150px;
        height: 180px;
    }

    .profile-card .profile-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px 0 30px;
    }

    .left-menu-area h2 {
        font-size: 14px;
        padding: 12px 15px;
    }

    .left-menu-area ul li a {
        padding: 10px 15px;
        font-size: 13px;
    }

    .left-menu-area ul li a::before {
        margin-right: 8px;
    }

    .right-content-area {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .right-content-area h2 {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .right-content-area h3 {
        font-size: 16px;
    }

    .right-content-area p {
        font-size: 14px;
    }

    .inner-page-banner h1 {
        font-size: 1.4rem;
    }

    .breadcrumb-nav li {
        font-size: 12px;
    }

    .profile-card .profile-image {
        width: 130px;
        height: 160px;
    }

    .profile-card .profile-info h3 {
        font-size: 18px;
    }

    .profile-card .profile-info .designation {
        font-size: 14px;
    }

    .right-content-area table tbody td a {
        padding: 6px 10px;
        font-size: 10px;
        min-width: 70px;
        border-radius: 15px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .left-menu-area {
        display: none;
    }

    .right-content-area {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .content-wrapper {
        padding: 20px 0;
        background: #fff;
    }

    .col-md-9 {
        width: 100%;
    }

    .right-content-area table {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .right-content-area table tbody td a {
        background: none !important;
        color: #1a2744 !important;
        box-shadow: none;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .right-content-area table tbody td a::before {
        content: '📄 ';
        font-family: inherit;
    }
}

/* ===== FULL CONTENT AREA (No Sidebar) ===== */
.full-content-area {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.full-content-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    text-align: center;
}

.full-content-area h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c9a227 0%, #e8c547 100%);
    border-radius: 2px;
}

.full-content-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c4a7c;
    margin: 30px 0 18px;
}

.full-content-area p {
    font-size: 16px;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 18px;
}

/* ===== FULL CONTENT AREA TABLES ===== */
.full-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.full-content-area table thead {
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 100%);
}

.full-content-area table thead tr th {
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.full-content-area table thead tr th:last-child {
    text-align: center;
}

.full-content-area table tbody tr td {
    padding: 16px 25px;
    border-bottom: 1px solid #f0f0f0;
    color: #4a4a4a;
    font-size: 15px;
    border-left: none;
    border-right: none;
    vertical-align: middle;
}

.full-content-area table tbody tr td:last-child {
    text-align: center;
}

.full-content-area table tbody tr:last-child td {
    border-bottom: none;
}

.full-content-area table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.full-content-area table tbody tr:hover {
    background: rgba(201, 162, 39, 0.08);
}

/* Table Download Links */
.full-content-area table tbody tr td a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #1a2744 0%, #2c4a7c 100%);
    color: #fff !important;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    min-width: 120px;
}

.full-content-area table tbody tr td a::before {
    content: '\f019';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.full-content-area table tbody tr td a:hover {
    background: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
    color: #1a2744 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

/* ===== FULL CONTENT AREA RESPONSIVE ===== */
@media (max-width: 991px) {
    .full-content-area {
        padding: 30px 35px;
        max-width: 100%;
    }

    .full-content-area h2 {
        font-size: 26px;
    }

    .full-content-area table thead tr th {
        padding: 15px 20px;
        font-size: 14px;
    }

    .full-content-area table tbody tr td {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .full-content-area {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .full-content-area h2 {
        font-size: 22px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .full-content-area h2::after {
        width: 80px;
    }

    .full-content-area table {
        font-size: 14px;
        border-radius: 8px;
    }

    .full-content-area table thead tr th {
        padding: 14px 15px;
        font-size: 13px;
    }

    .full-content-area table tbody tr td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .full-content-area table tbody tr td a {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .full-content-area {
        padding: 20px 15px;
    }

    .full-content-area h2 {
        font-size: 18px;
    }

    .full-content-area table thead tr th {
        padding: 12px 10px;
        font-size: 12px;
        letter-spacing: 0;
    }

    .full-content-area table tbody tr td {
        padding: 10px;
        font-size: 13px;
    }

    .full-content-area table tbody tr td a {
        padding: 8px 12px;
        font-size: 11px;
        min-width: auto;
        border-radius: 20px;
    }

    .full-content-area table tbody tr td a::before {
        font-size: 10px;
    }
}

/* ===== PRINT STYLES FOR FULL CONTENT ===== */
@media print {
    .full-content-area {
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .full-content-area table tbody tr td a {
        background: none;
        color: #1a2744 !important;
        padding: 0;
    }

    .full-content-area table tbody tr td a::before {
        content: '📄 ';
    }
}
