/* ============ ROOT VARIABLES ============ */
/* Theme colors are set by themes.css bridge (--theme-* -> --primary-color etc.)
   This :root only defines non-color design tokens */
:root {
    --accent-color: #ffc107;
    --text-light: #666666;
    --bg-dark: #e9ecef;
    --border-color: #dee2e6;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 5px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
}

/* Dark Mode fallback (if body.dark-mode used without theme engine) */
body.dark-mode {
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-color: #1a1a2e;
    --bg-light: #16213e;
    --bg-dark: #0f3460;
    --border-color: #2a2a4a;
    --shadow: 0 2px 15px rgba(0,0,0,0.3);
}

/* ============ GENERAL ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--theme-primary, #2563eb); color: #fff; padding: 12px 24px;
    border-radius: 8px; z-index: 10000; font-weight: 600;
}
.skip-link:focus { top: 10px; }

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--theme-primary-gradient, linear-gradient(135deg, var(--primary-color), var(--primary-dark)));
    color: #fff;
    padding: 6px 0;
    font-size: 0.8rem;
}

.top-bar-left span {
    margin-right: 12px;
}

.top-bar-left i, .top-bar-right i {
    margin-right: 4px;
}

.social-links-top a {
    color: #fff;
    margin-left: 8px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.social-links-top a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.top-bar-actions {
    display: inline-flex;
    gap: 8px;
    margin-left: 10px;
}

.top-bar-actions a {
    color: #fff;
}

/* ============ NAVBAR ============ */
#mainNav {
    background: var(--theme-card-gradient, linear-gradient(145deg, var(--bg-color), var(--bg-light)));
    box-shadow: var(--shadow);
    padding: 10px 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#mainNav.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-lg);
    background: var(--theme-card-gradient, linear-gradient(145deg, var(--bg-color), var(--bg-light)));
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.brand-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.brand-text span {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    font-weight: 500;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 10px 14px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-item > a:hover,
.nav-item.active > a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-item .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    flex-direction: column;
    padding: 6px 0;
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.nav-item:hover > .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item .nav-menu a {
    padding: 8px 16px;
    border-bottom: none;
    font-size: 0.85rem;
}

.nav-search {
    display: flex;
    align-items: center;
}

.nav-search .search-form {
    display: flex;
    position: relative;
    width: 200px;
}

.nav-search .form-control {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    background: var(--bg-light);
    color: var(--text-color);
}

.nav-search .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 37, 99, 235), 0.15);
}

.nav-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 4px 8px;
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ============ HERO SLIDER ============ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-owl .owl-item {
    height: auto;
}

.hero-slide {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 320px; /* Mobile fallback */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Owl Nav Arrows */
.hero-owl .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-owl .owl-nav button {
    position: absolute;
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(4px);
}

.hero-owl .owl-nav button:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.hero-owl .owl-nav .owl-prev {
    left: 20px;
}

.hero-owl .owl-nav .owl-next {
    right: 20px;
}

.hero-owl .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-owl .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-owl .owl-dots .owl-dot.active span,
.hero-owl .owl-dots .owl-dot:hover span {
    background: #fff !important;
    transform: scale(1.2);
}

/* Hero Badge & Description */
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
    max-width: 550px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    margin: 0 auto 6px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============ NEWS TICKER ============ */
.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ============ FEATURES SECTION ============ */
.features-section {
    background: var(--bg-light);
}

.features-grid .feature-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius);
    background: var(--bg-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.features-grid .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.features-grid .feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.features-grid .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.features-grid .feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.features-grid .feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============ STATS SECTION ============ */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    z-index: 0;
}

.stats-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="30" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 80px;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid .stat-card {
    text-align: center;
    padding: 30px 20px;
    color: #fff;
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.2);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============ NOTICE BOARD ============ */
.notice-board .card-header {
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 15px 20px;
}

.notice-board .card-header .btn-link {
    color: #fff;
    text-decoration: none;
}

.notice-board .notice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.notice-board .notice-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

.notice-board .notice-priority {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-board .notice-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.notice-board .notice-attachment {
    font-size: 0.82rem;
    color: var(--primary-color);
}

.notice-board .empty-state {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

.notice-board .empty-state i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* ============ EVENTS PANEL ============ */
.events-panel .card-header {
    background: var(--secondary-color);
    color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 15px 20px;
}

.events-panel .card-header .btn-link {
    color: #fff;
    text-decoration: none;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.events-grid .event-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.events-grid .event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.events-grid .event-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.events-grid .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.events-grid .event-card:hover .event-image img {
    transform: scale(1.05);
}

.events-grid .event-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 2.5rem;
}

.events-grid .event-date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.events-grid .event-date-badge .day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.events-grid .event-date-badge .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.events-grid .event-content {
    padding: 15px;
}

.events-grid .event-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.events-grid .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.events-grid .event-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

.events-panel .empty-state {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.events-panel .empty-state i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    background: var(--bg-light);
}

.testimonial-carousel .testimonial-slide {
    padding: 10px;
}

.testimonial-carousel .testimonial-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
    border: 1px solid var(--theme-border, var(--border-color));
}

.testimonial-rating {
    margin-bottom: 15px;
    color: var(--accent-color, #ffc107);
    font-size: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-photo.placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 3px solid var(--primary-color);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    font-style: normal;
}

.author-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--bg-color);
}

.cta-grid .cta-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    background: var(--bg-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.cta-grid .cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.cta-card .cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.cta-card:hover .cta-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.cta-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.cta-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ============ NOTICE LIST ============ */
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list .notice-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.notice-list .notice-item:last-child {
    border-bottom: none;
}

.notice-list .notice-item:hover {
    background: var(--bg-light);
}

.notice-list .notice-item.pinned {
    border-left: 3px solid var(--primary-color);
    background: rgba(var(--primary-rgb, 37, 99, 235), 0.05);
}

/* ============ BUTTONS ============ */
.btn {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--theme-primary-gradient, linear-gradient(135deg, var(--primary-color), var(--primary-dark)));
    color: #fff;
}

.btn-primary:hover {
    background: var(--theme-accent-gradient, linear-gradient(135deg, var(--primary-dark), var(--primary-color)));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb, 37, 99, 235), 0.3);
    color: #fff;
}

.btn-secondary {
    background: var(--theme-accent-gradient, linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)));
    color: #fff;
}

.btn-secondary:hover {
    background: var(--theme-primary-gradient, linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============ WELCOME SECTION ============ */
.welcome-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.welcome-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.welcome-img {
    flex: 0 0 200px;
}

.welcome-img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.welcome-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.welcome-content h4 {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 15px;
}

/* ============ HIGHLIGHTS ============ */
.highlights-section {
    background: var(--bg-light);
}

.highlight-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--theme-card-gradient, var(--bg-color));
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--theme-border, var(--border-color));
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--theme-primary-gradient, linear-gradient(135deg, var(--primary-color), var(--primary-dark)));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============ COUNTER ============ */
.counter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 60px 0;
}

.counter-box {
    text-align: center;
}

.counter-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.counter-box .count {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-box label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* ============ NEWS TICKER ============ */
.news-ticker-section {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
}

.ticker-label {
    background: #fff;
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.news-ticker {
    overflow: hidden;
    flex: 1;
}

.news-ticker-content {
    display: flex;
    gap: 50px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.news-ticker-content a {
    color: #fff;
    font-size: 0.95rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ NOTICES ============ */
.notice-list {
    list-style: none;
    padding: 0;
}

.notice-item {
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    margin-bottom: 10px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
}

.notice-item:hover {
    background: var(--bg-color);
    box-shadow: var(--shadow);
}

.notice-item.pinned {
    border-left-color: var(--secondary-color);
    background: #fff3f0;
}

.notice-item .notice-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.notice-item h5 {
    font-size: 1rem;
    margin: 5px 0;
}

.notice-item .notice-priority {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-high { background: #dc3545; color: #fff; }
.priority-medium { background: #ffc107; color: #000; }
.priority-low { background: #28a745; color: #fff; }
.priority-urgent { background: #6f42c1; color: #fff; }

/* ============ EVENTS ============ */
.event-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-card .event-img {
    position: relative;
    overflow: hidden;
}

.event-card .event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.2;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date-badge .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.event-card .event-info {
    padding: 20px;
}

.event-card .event-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-card .event-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

.event-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* ============ GALLERY ============ */
.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-filters .btn {
    margin: 0 5px 10px;
}

.gallery-filters .btn.active,
.gallery-filters .btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,115,232,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

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

/* ============ STAFF ============ */
.staff-card {
    text-align: center;
    background: var(--bg-color);
    border-radius: var(--radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-photo {
    width: 160px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 15px;
    border: 3px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
    background: #f8f8f8;
    padding: 4px;
}

.staff-card:hover .staff-photo {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.staff-card h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.staff-card .designation {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.staff-card .details {
    font-size: 0.85rem;
    color: var(--text-light);
}

.staff-card .staff-social {
    margin-top: 12px;
}

.staff-card .staff-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-color);
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    transition: var(--transition);
}

.staff-card .staff-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: 15px;
    right: 25px;
}

.testimonial-card .rating {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============ DOWNLOADS ============ */
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: var(--transition);
}

.download-item:hover {
    background: var(--bg-color);
    box-shadow: var(--shadow);
}

.download-item .file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-item .file-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.download-item .file-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.download-item .file-size {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============ FACILITIES ============ */
.facility-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.facility-card:hover .facility-icon {
    background: rgba(255,255,255,0.2);
}

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

.facility-card:hover .facility-icon {
    color: #fff;
}

.facility-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.facility-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

/* ============ CONTACT ============ */
.contact-info-card {
    padding: 30px;
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

/* ============ FAQ ============ */
.faq-item {
    background: var(--bg-color);
    border-radius: var(--radius);
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* ============ ADMISSION ============ */
.admission-process {
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: var(--primary-color);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* ============ SEARCH RESULTS ============ */
.search-result-item {
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.search-result-item:hover {
    box-shadow: var(--shadow-lg);
}

.search-result-item .result-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ============ ABOUT PAGE ============ */
.about-intro {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-intro img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.vision-mission-card {
    padding: 30px;
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.vision-mission-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.management-card {
    text-align: center;
    padding: 25px;
}

.management-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid var(--primary-color);
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: #fff;
}

/* ============ FOOTER ============ */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #ccc;
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--bg-color);
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: auto;
}

.site-footer .container {
    padding: 60px 0 30px;
}

.footer-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-about i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.footer-logo {
    max-height: 50px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
}

.newsletter-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 95px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 2px 10px rgba(26,115,232,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============ VISITOR COUNTER ============ */
.visitor-counter {
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    z-index: 999;
}

/* ============ FLASH ALERT ============ */
.flash-alert {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============ ADMIN SPECIFIC ============ */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    color: #fff;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: var(--transition);
    z-index: 1000;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header img {
    height: 50px;
    margin-bottom: 5px;
}

.sidebar-header h3 {
    font-size: 1rem;
    margin: 0;
}

.sidebar-nav {
    padding: 15px 0;
}

.sidebar-nav .nav-item {
    padding: 0;
    margin: 2px 10px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    background: var(--bg-light);
    min-height: 100vh;
}

.admin-topbar {
    background: var(--bg-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.admin-content {
    padding: 30px;
}

/* Admin Dashboard Cards */
.dash-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.dash-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.dash-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0 5px;
}

.dash-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table thead {
    background: var(--primary-color);
    color: #fff;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: var(--bg-light);
}

/* Admin Cards */
.admin-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-body {
    padding: 25px;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.login-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.login-card .logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-card .logo img {
    height: 60px;
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-list {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
}

.pagination-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-color);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.pagination-list li.active a,
.pagination-list li a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============ LOADING ============ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ LIBRARY ============ */
.book-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.book-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.book-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
}

/* ============ CLUBS ============ */
.club-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.club-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.club-card .club-info {
    padding: 20px;
}

/* ============ TRANSPORT ============ */
.transport-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    transition: var(--transition);
}

.transport-card:hover {
    box-shadow: var(--shadow-lg);
}

.transport-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============ SPORTS ============ */
.sport-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sport-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ============ ACHIEVEMENTS ============ */
.achievement-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: var(--transition);
}

.achievement-card:hover {
    box-shadow: var(--shadow-lg);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #e6a800);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* ============ HOLIDAY LIST ============ */
.holiday-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
    background: var(--bg-light);
    margin-bottom: 10px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.holiday-date {
    text-align: center;
    min-width: 80px;
}

.holiday-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.holiday-date .month-year {
    font-size: 0.8rem;
    color: var(--text-light);
}
