/* =====================================================
   SS UNIVERSITY - MAIN STYLESHEET
   Swami Shukdevanand University, Shahjahanpur, UP
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0a1628;
    --primary-light: #1a3a6b;
    --accent: #FF7926;
    --accent-dark: #e66800;
    --accent-light: #fff3eb;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --font-main: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.6; font-size: 15px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 45px 0; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 2px solid var(--accent);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span, .top-bar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.top-bar-left a:hover { color: var(--accent); }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right a { color: rgba(255,255,255,0.85); font-size: 12px; }
.top-bar-right a:hover { color: var(--accent); }
.font-size-controls { display: flex; gap: 4px; }
.font-size-controls button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    padding: 2px 7px;
    font-size: 11px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-main);
}
.font-size-controls button:hover { background: var(--accent); }
.social-top { display: flex; gap: 8px; }
.social-top a {
    width: 24px; height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: #fff;
}
.social-top a:hover { background: var(--accent); }

/* ===== NEWS TICKER ===== */
.news-ticker-bar {
    background: var(--accent);
    color: #fff;
    padding: 6px 0;
    overflow: hidden;
}
.news-ticker-bar .container { display: flex; align-items: center; gap: 0; }
.ticker-label {
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    border-radius: 0 4px 4px 0;
    margin-right: 16px;
}
.blink {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: blinkanim 1.2s infinite;
    flex-shrink: 0;
}
@keyframes blinkanim { 0%,100%{opacity:1} 50%{opacity:0} }
.ticker-content { flex: 1; overflow: hidden; position: relative; }
.ticker-scroll { display: flex; gap: 0; animation: tickerMove 30s linear infinite; white-space: nowrap; }
.ticker-scroll a {
    color: #fff;
    font-size: 12.5px;
    padding: 0 30px;
    font-weight: 500;
    position: relative;
}
.ticker-scroll a::after { content: '|'; position: absolute; right: 0; opacity: 0.4; }
.ticker-scroll a:hover { color: var(--primary); }
.new-badge {
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: middle;
}
@keyframes tickerMove { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.news-ticker-bar:hover .ticker-scroll { animation-play-state: paused; }

/* ===== HEADER ===== */
.header-main {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: relative;
    z-index: 100;
}
.header-main .container { display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.logo-section { display: flex; align-items: center; gap: 14px; }
.logo-img img { height: 75px; width: auto; object-fit: contain; }
.logo-text h1 { font-family: var(--font-main); font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.logo-text .hindi-name { font-size: 11px; color: var(--accent); font-weight: 600; margin-top: 2px; }
.logo-text .tagline { font-size: 11.5px; color: var(--gray-600); margin-top: 1px; }
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.header-search { display: flex; }
.header-search form { display: flex; border: 2px solid var(--gray-200); border-radius: 50px; overflow: hidden; }
.header-search input {
    border: none; outline: none; padding: 8px 16px;
    font-size: 13px; width: 260px; font-family: var(--font-body);
    background: var(--gray-50);
}
.header-search button {
    background: var(--accent); border: none;
    color: #fff; padding: 8px 16px; cursor: pointer;
    font-size: 13px; transition: background 0.2s;
}
.header-search button:hover { background: var(--accent-dark); }
.header-actions { display: flex; gap: 10px; }

/* ===== BUTTONS ===== */
.btn-primary-custom, .btn-secondary-custom {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 24px; border-radius: 50px;
    font-size: 13.5px; font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition);
    cursor: pointer; border: 2px solid transparent;
}
.btn-primary-custom { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary-custom:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,121,38,0.35); }
.btn-secondary-custom { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary-custom:hover { background: var(--primary); color: #fff; }
.btn-outline-custom { background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 9px 22px; border-radius: 50px; font-size: 13.5px; font-weight: 600; font-family: var(--font-main); transition: var(--transition); }
.btn-outline-custom:hover { background: var(--accent); color: #fff; }
.btn-white-custom { background: #fff; color: var(--primary); padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 700; font-family: var(--font-main); transition: var(--transition); }
.btn-white-custom:hover { background: var(--accent); color: #fff; }

/* ===== NAVBAR ===== */
.main-navbar {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; position: relative; }
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    align-items: stretch;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 15px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 13.5px;
    font-weight: 500;
    font-family: var(--font-main);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--accent); }
.nav-menu > li.active > a { border-bottom: 3px solid var(--accent); }
.dropdown-icon { font-size: 10px; margin-left: 2px; transition: transform 0.2s; }
.nav-menu > li:hover .dropdown-icon { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: 3px solid var(--accent);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
}
.nav-menu > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block; padding: 11px 18px;
    color: var(--gray-700); font-size: 13px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--accent-light); color: var(--accent); padding-left: 24px; }

/* Mega Menu */
.mega-menu {
    position: absolute; top: 100%; left: -100px;
    background: #fff;
    width: 680px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-top: 3px solid var(--accent);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
    padding: 24px;
}
.nav-menu > li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mega-menu-col h4 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--accent); margin-bottom: 12px;
    display: flex; align-items: center; gap: 7px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}
.mega-menu-col ul { list-style: none; padding: 0; margin: 0; }
.mega-menu-col ul li a { display: block; padding: 5px 0; color: var(--gray-700); font-size: 13px; transition: var(--transition); }
.mega-menu-col ul li a:hover { color: var(--accent); padding-left: 6px; }

/* Mobile nav toggle */
.mobile-toggle {
    display: none;
    background: none; border: none;
    color: #fff; font-size: 22px;
    cursor: pointer; padding: 14px 0;
}
.mobile-close {
    display: none;
    background: none; border: none;
    color: var(--gray-600); font-size: 22px;
    cursor: pointer; padding: 16px 20px;
    position: absolute; top: 0; right: 0;
}
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; }
.nav-overlay.active { display: block; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 580px; overflow: hidden; }
.slider-container { position: relative; height: 100%; }
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
}
.slide-content {
    position: absolute; top: 50%; left: 0;
    transform: translateY(-50%);
    padding: 0 80px;
    max-width: 640px;
    color: #fff;
}
.slide-title {
    font-family: var(--font-main);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800; line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slide-subtitle { font-size: 17px; opacity: 0.9; margin-bottom: 28px; line-height: 1.5; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.slider-controls {
    position: absolute; bottom: 24px; left: 0; right: 0;
    display: flex; align-items: center; justify-content: center;
    gap: 16px; z-index: 10;
}
.slider-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%; color: #fff;
    cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== STATS SECTION ===== */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--primary-light)); padding: 50px 0; }
.stats-grid-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
    text-align: center; padding: 28px 20px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-icon-home {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--accent);
    border: 2px solid rgba(255,121,38,0.3);
}
.stat-number {
    font-family: var(--font-main);
    font-size: 36px; font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label-home { font-size: 13px; opacity: 0.8; font-weight: 400; }

/* ===== SECTION HEADINGS ===== */
.section-heading { text-align: center; margin-bottom: 44px; }
.section-heading .tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 5px 16px; border-radius: 50px;
    margin-bottom: 12px;
}
.section-heading h2 {
    font-family: var(--font-main);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800; color: var(--primary);
    line-height: 1.2; margin-bottom: 14px;
}
.section-heading p { font-size: 15.5px; color: var(--gray-600); max-width: 580px; margin: 0 auto; }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; }
.section-divider .line { width: 40px; height: 3px; background: var(--gray-200); border-radius: 2px; }
.section-divider .dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; }

/* ===== NOTICES BOARD ===== */
.notices-events-section { background: var(--gray-50); padding: 60px 0; }
.notice-events-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 28px; }
.board-box { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.board-header {
    background: var(--primary);
    color: #fff; padding: 16px 22px;
    display: flex; align-items: center; justify-content: space-between;
}
.board-header h3 { font-family: var(--font-main); font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.board-header a { color: rgba(255,255,255,0.7); font-size: 12px; }
.board-header a:hover { color: var(--accent); }
.notice-list { max-height: 380px; overflow-y: auto; }
.notice-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 13px 18px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.15s;
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--gray-50); }
.notice-date {
    flex-shrink: 0;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 8px;
    text-align: center;
    padding: 6px 10px;
    min-width: 46px;
}
.notice-date .day { font-size: 18px; font-weight: 800; font-family: var(--font-main); line-height: 1; }
.notice-date .mon { font-size: 10px; font-weight: 600; text-transform: uppercase; }
.notice-info { flex: 1; min-width: 0; }
.notice-info a { font-size: 13.5px; color: var(--gray-700); font-weight: 500; display: block; line-height: 1.4; }
.notice-info a:hover { color: var(--accent); }
.notice-tags { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.notice-tag {
    font-size: 10px; padding: 2px 8px;
    border-radius: 3px; font-weight: 600;
    text-transform: uppercase;
}
.tag-important { background: #fee2e2; color: #b91c1c; }
.tag-new { background: #d1fae5; color: #065f46; }
.tag-general { background: var(--gray-100); color: var(--gray-600); }

/* Events list */
.event-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 13px 18px; border-bottom: 1px solid var(--gray-100);
}
.event-item:last-child { border-bottom: none; }
.event-date-badge {
    flex-shrink: 0;
    background: var(--primary);
    color: #fff; border-radius: 8px;
    text-align: center; padding: 6px 10px;
    min-width: 46px;
}
.event-date-badge .eday { font-size: 18px; font-weight: 800; font-family: var(--font-main); line-height: 1; }
.event-date-badge .emon { font-size: 10px; text-transform: uppercase; }
.event-info a { font-size: 13.5px; color: var(--gray-700); font-weight: 500; line-height: 1.35; display: block; }
.event-info a:hover { color: var(--accent); }
.event-meta { font-size: 11.5px; color: var(--gray-400); margin-top: 3px; }
.event-meta i { margin-right: 4px; }

/* ===== FEATURES / ABOUT ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 70px; height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px; color: var(--accent);
    transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; }
.feature-card h4 { font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,22,40,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    color: #fff; font-size: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== FACULTY CARDS ===== */
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faculty-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition); text-align: center;
}
.faculty-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.faculty-photo { height: 180px; overflow: hidden; }
.faculty-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.faculty-card:hover .faculty-photo img { transform: scale(1.05); }
.faculty-info { padding: 18px 16px; }
.faculty-info h4 { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.faculty-info .designation { font-size: 13px; color: var(--accent); font-weight: 600; }
.faculty-info .dept { font-size: 12px; color: var(--gray-400); margin-top: 3px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff; padding: 28px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border-left: 4px solid var(--accent);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 16px; right: 20px;
    font-size: 60px; color: var(--gray-100);
    font-family: Georgia, serif; line-height: 1;
}
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
}
.author-info .name { font-weight: 700; font-size: 14px; color: var(--primary); }
.author-info .role { font-size: 12px; color: var(--gray-400); }
.star-rating { color: #f59e0b; font-size: 13px; margin-top: 2px; }

/* ===== PLACEMENTS ===== */
.placements-section { background: var(--primary); color: #fff; }
.placements-section .section-heading h2, .placements-section .section-heading p { color: #fff; }
.placements-section .section-heading .tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.placements-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.placement-logo {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 14px 22px;
    display: flex; align-items: center; gap: 10px;
    min-width: 130px; justify-content: center;
    transition: var(--transition);
}
.placement-logo:hover { background: rgba(255,255,255,0.15); }
.placement-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); object-fit: contain; }
.placement-logo span { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.9); }

/* ===== CTA BANNER ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 60px 0; text-align: center;
}
.cta-section h2 { font-family: var(--font-main); font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 0; color: #fff; position: relative; overflow: hidden;
}
.page-banner::before {
    content: ''; position: absolute;
    right: -50px; top: -50px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-family: var(--font-main); font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; opacity: 0.75; flex-wrap: wrap; }
.breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.4); }

/* ===== NOTICES PAGE ===== */
.notices-page-layout { display: grid; grid-template-columns: 1fr 280px; gap: 28px; }
.notice-card {
    background: #fff; border-radius: var(--radius);
    padding: 18px 20px; border-left: 4px solid var(--accent);
    box-shadow: var(--shadow); margin-bottom: 14px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: var(--transition);
}
.notice-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.notice-card-date { flex-shrink: 0; text-align: center; }
.notice-card-date .nday { font-size: 22px; font-weight: 800; font-family: var(--font-main); color: var(--accent); line-height: 1; }
.notice-card-date .nmon { font-size: 11px; color: var(--gray-400); text-transform: uppercase; }
.notice-card-date .nyr { font-size: 11px; color: var(--gray-400); }
.notice-card-body { flex: 1; }
.notice-card-body h3 { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.notice-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.notice-card-meta { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.notice-dl-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: #fff;
    padding: 5px 14px; border-radius: 4px; font-size: 12px; font-weight: 600;
    transition: var(--transition);
}
.notice-dl-btn:hover { background: var(--accent-dark); }
.sidebar-widget {
    background: #fff; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); margin-bottom: 20px;
}
.sidebar-widget-header { background: var(--primary); color: #fff; padding: 14px 18px; font-size: 14px; font-weight: 700; font-family: var(--font-main); }
.sidebar-widget-body { padding: 16px; }
.cat-filter-list { list-style: none; padding: 0; margin: 0; }
.cat-filter-list li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; border-bottom: 1px solid var(--gray-100);
    font-size: 13.5px; color: var(--gray-700);
    transition: var(--transition);
}
.cat-filter-list li:last-child a { border-bottom: none; }
.cat-filter-list li a:hover, .cat-filter-list li a.active { color: var(--accent); }
.cat-filter-list li a .count { background: var(--gray-100); color: var(--gray-600); font-size: 11px; padding: 2px 8px; border-radius: 10px; }

/* ===== EVENTS PAGE ===== */
.event-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--gray-100); transition: var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-card-img { height: 200px; overflow: hidden; background: var(--gray-100); position: relative; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-img .event-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px;
}
.event-card-body { padding: 18px; }
.event-card-date {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: var(--accent); font-weight: 600;
    margin-bottom: 8px;
}
.event-card-body h3 { font-size: 15.5px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.35; }
.event-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.event-card-footer { padding: 12px 18px; border-top: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.event-card-footer .venue { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 5px; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.contact-form-box {
    background: #fff; border-radius: var(--radius-lg);
    padding: 32px; box-shadow: var(--shadow);
}
.contact-form-box h3 { font-family: var(--font-main); font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px;
    border: 2px solid var(--gray-200); border-radius: 8px;
    font-size: 14px; font-family: var(--font-body);
    color: var(--gray-700); background: #fff;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-box { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    background: #fff; border-radius: var(--radius); padding: 20px;
    box-shadow: var(--shadow); display: flex; gap: 14px; align-items: flex-start;
}
.info-icon {
    width: 44px; height: 44px;
    background: var(--accent-light); color: var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
}
.info-card h4 { font-family: var(--font-main); font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.info-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.info-card a { color: var(--accent); }
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 16px; }
.map-box iframe { display: block; }

/* ===== DEPARTMENTS / FACULTY PAGES ===== */
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dept-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow);
    border: 1px solid var(--gray-100); transition: var(--transition);
    border-top: 4px solid var(--accent);
}
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dept-card h3 { font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.dept-card .dept-head { font-size: 12.5px; color: var(--gray-400); margin-bottom: 12px; }
.dept-card .dept-stats { display: flex; gap: 14px; font-size: 12.5px; color: var(--gray-600); }
.dept-card .dept-stats span { display: flex; align-items: center; gap: 5px; }

/* ===== ADMISSION FORM ===== */
.admission-form-box {
    background: #fff; border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-md);
    max-width: 820px; margin: 0 auto;
}
.form-section { margin-bottom: 30px; padding-bottom: 24px; border-bottom: 2px solid var(--gray-100); }
.form-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-section h4 { font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 18px; padding-left: 12px; border-left: 3px solid var(--accent); }
.success-box {
    background: #f0fdf4; border: 2px solid #86efac;
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
}
.success-box .check-icon { font-size: 50px; color: #16a34a; margin-bottom: 16px; }
.success-box h3 { font-family: var(--font-main); font-size: 22px; font-weight: 700; color: var(--primary); }
.success-box .app-no { font-size: 26px; font-weight: 800; color: var(--accent); font-family: var(--font-main); margin: 10px 0; }

/* ===== FOOTER ===== */
.footer-main { background: var(--gray-900); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
.footer-col h3 { font-family: var(--font-main); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-col h4 { font-family: var(--font-main); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col .footer-about p { font-size: 13.5px; line-height: 1.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75); font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links li a::before { content: '›'; color: var(--accent); }
.footer-links li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 13px; }
.footer-contact li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0; margin-top: 44px;
    text-align: center; font-size: 12.5px;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--accent); color: #fff;
    border: none; border-radius: 50%;
    cursor: pointer; font-size: 16px;
    box-shadow: 0 4px 14px rgba(255,121,38,0.4);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ===== PAGINATION ===== */
.pagination-wrapper { display: flex; justify-content: center; margin-top: 36px; }
.pagination { display: flex; gap: 6px; list-style: none; padding: 0; }
.pagination li a, .pagination li span {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 2px solid var(--gray-200); border-radius: 8px;
    font-size: 13.5px; color: var(--gray-700);
    transition: var(--transition);
}
.pagination li.active span, .pagination li a:hover {
    background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ===== SEARCH PAGE ===== */
.search-result { padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.search-result h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.search-result h3 a { color: inherit; }
.search-result h3 a:hover { color: var(--accent); }
.search-result p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; }
.search-result .src-url { font-size: 12px; color: #16a34a; margin-top: 4px; }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger, .alert-error { background: #fef2f2; color: #7f1d1d; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e3a8a; border: 1px solid #bfdbfe; }
.alert-warning { background: #fffbeb; color: #78350f; border: 1px solid #fde68a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-menu { width: 540px; left: -60px; }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar .container { flex-direction: column; gap: 6px; }
    .top-bar-left { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .top-bar-right { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .header-main .container { flex-direction: column; gap: 14px; }
    .header-right { align-items: center; width: 100%; }
    .header-search input { width: 100%; }
    .hero-slider { height: 380px; }
    .slide-content { padding: 0 24px; }
    .slide-title { font-size: 24px; }
    .slide-subtitle { font-size: 14px; }
    .stats-grid-home { grid-template-columns: repeat(2, 1fr); }
    .notice-events-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .faculty-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .notices-page-layout { grid-template-columns: 1fr; }
    .dept-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    /* Mobile nav */
    .mobile-toggle { display: block; }
    .mobile-close { display: block; }
    .nav-menu {
        position: fixed; left: -100%; top: 0;
        width: 300px; height: 100vh;
        background: #fff; flex-direction: column;
        z-index: 9999; overflow-y: auto;
        transition: left 0.3s ease;
        padding-top: 60px;
    }
    .nav-menu.open { left: 0; }
    .nav-menu > li > a {
        color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
        padding: 14px 20px;
    }
    .nav-menu > li.active > a { color: var(--accent); border-bottom-color: var(--gray-100); }
    .dropdown-menu, .mega-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; border-radius: 0;
        background: var(--gray-50); display: none; width: 100%;
    }
    .nav-menu > li:hover .dropdown-menu,
    .nav-menu > li:hover .mega-menu { display: block; }
}

@media (max-width: 480px) {
    .stats-grid-home { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .faculty-grid { grid-template-columns: 1fr; }
    .dept-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slide-btns { flex-direction: column; }
    .admission-form-box { padding: 20px; }
}

/* ===== PRINT ===== */
@media print {
    .main-navbar, .top-bar, .news-ticker-bar, .back-to-top, .footer-main { display: none; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; }
}

/* =====================================================
   DDU GORAKHPUR UNIVERSITY - HEADER & FOOTER STYLES
   ===================================================== */

/* ===== UTILITY TOP BAR ===== */
.util-top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 2px solid var(--accent);
}
.util-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.util-top-left {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}
.util-top-left a {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 3px 12px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}
.util-top-left a:first-child { border-left: 1px solid rgba(255,255,255,0.15); }
.util-top-left a:hover { color: var(--accent); background: rgba(255,255,255,0.05); }
.util-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.font-size-controls {
    display: flex;
    gap: 2px;
}
.font-size-controls button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: var(--transition);
}
.font-size-controls button:hover { background: var(--accent); border-color: var(--accent); }
.search-icon-top {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
}
.search-icon-top:hover { color: var(--accent); }
.social-icons-top {
    display: flex;
    gap: 6px;
}
.social-icons-top a {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    transition: var(--transition);
}
.social-icons-top a:hover { background: var(--accent); }

/* ===== MAIN HEADER ===== */
.main-header-bar {
    background: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: relative;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.univ-logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
}
.logo-placeholder {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-main);
}
.univ-title-area { flex: 1; }
.univ-hindi {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2px;
}
.univ-name {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
}
.univ-badges {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}
.badge-naac {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--accent);
}
.badge-cat1 {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #059669;
}
.header-right-area {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-search-box form {
    display: flex;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    overflow: hidden;
}
.header-search-box input {
    border: none;
    outline: none;
    padding: 9px 16px;
    font-size: 13px;
    width: 220px;
    background: var(--gray-50);
    font-family: var(--font-body);
}
.header-search-box button {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 9px 16px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}
.header-search-box button:hover { background: var(--accent-dark); }
.btn-apply-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-apply-header:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,121,38,0.35); }

/* ===== MAIN NAVIGATION ===== */
.main-nav-bar {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.nav-container-full {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.main-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
}
.main-nav-list > li {
    position: relative;
}
.main-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    color: var(--nav-text, rgba(255,255,255,0.9));
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav-list > li > a:hover,
.main-nav-list > li.active > a {
    color: var(--nav-hover, var(--accent));
    background: rgba(255,255,255,0.05);
}
.main-nav-list > li.active > a {
    border-bottom: 3px solid var(--accent);
}

/* Mobile nav toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 12px 0;
}
.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 22px;
    cursor: pointer;
    padding: 14px 20px;
    position: absolute;
    top: 0;
    right: 0;
}
.nav-overlay-ddu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.nav-overlay-ddu.active { display: block; }

/* ===== DDU FOOTER ===== */
.footer-ddu {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid-ddu {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-col-ddu h4 { font-family: var(--font-main); }
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}
.footer-logo-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-main);
}
.footer-brand-text .footer-hindi {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}
.footer-brand-text h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.footer-address {
    margin-bottom: 16px;
}
.footer-address p {
    font-size: 13.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-address p i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-address a { color: rgba(255,255,255,0.7); }
.footer-address a:hover { color: var(--accent); }
.footer-social-row {
    display: flex;
    gap: 10px;
}
.footer-social-row a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}
.footer-social-row a:hover { background: var(--accent); color: #fff; }
.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.footer-col-title i { color: var(--accent); margin-right: 6px; }
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-list li { margin-bottom: 10px; }
.footer-link-list li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-link-list li a::before { content: '›'; color: var(--accent); font-size: 16px; }
.footer-link-list li a:hover { color: var(--accent); padding-left: 4px; }

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: rgba(0,0,0,0.3);
    margin-top: 50px;
    padding: 16px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
}
.footer-copyright i { margin-right: 5px; }
.footer-visitor-counter { color: rgba(255,255,255,0.5); }
.footer-visitor-counter i { margin-right: 5px; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* Back to Top */
.back-to-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(255,121,38,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ===== RESPONSIVE - DDU ===== */
@media (max-width: 1024px) {
    .footer-grid-ddu { grid-template-columns: repeat(2, 1fr); }
    .univ-name { font-size: 20px; }
    .header-search-box { display: none; }
}
@media (max-width: 768px) {
    .util-top-bar .container { flex-direction: column; gap: 8px; }
    .util-top-left { flex-wrap: wrap; justify-content: center; }
    .util-top-right { flex-wrap: wrap; justify-content: center; }
    .header-inner { flex-direction: column; gap: 12px; text-align: center; }
    .univ-badges { justify-content: center; }
    .header-right-area { width: 100%; justify-content: center; }
    .main-nav-list {
        position: fixed;
        left: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        padding-top: 60px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .main-nav-list.open { left: 0; }
    .main-nav-list > li > a {
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
        padding: 14px 20px;
    }
    .main-nav-list > li > a:hover { color: var(--accent); }
    .mobile-menu-toggle { display: block; }
    .mobile-menu-close { display: block; }
    .footer-grid-ddu { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .univ-name { font-size: 18px; }
    .btn-apply-header { padding: 8px 16px; font-size: 12px; }
}
