/* ============================================
   College Page Styles - Premium UI/UX Design
   ============================================ */

/* ========== Hero Slider Section ========== */
.college-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particlesFloat 60s linear infinite;
}

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

/* Hero Swiper */
.hero-swiper {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-bg img {
    transform: scale(1);
}

/* Hero Overlays */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.92) 0%,
        rgba(139, 21, 56, 0.75) 40%,
        rgba(21, 101, 192, 0.6) 100%);
}

.hero-slide-overlay.overlay-blue {
    background: linear-gradient(135deg,
        rgba(21, 101, 192, 0.92) 0%,
        rgba(13, 71, 161, 0.8) 40%,
        rgba(139, 21, 56, 0.6) 100%);
}

.hero-slide-overlay.overlay-green {
    background: linear-gradient(135deg,
        rgba(27, 94, 32, 0.92) 0%,
        rgba(46, 125, 50, 0.8) 40%,
        rgba(21, 101, 192, 0.6) 100%);
}

.hero-slide-overlay.overlay-gold {
    background: linear-gradient(135deg,
        rgba(183, 149, 11, 0.92) 0%,
        rgba(156, 39, 176, 0.8) 40%,
        rgba(139, 21, 56, 0.6) 100%);
}

/* Hero Content */
.hero-slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
}

.hero-content-wrapper {
    padding: 2rem 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1.3rem;
    color: #D4AF37;
}

.hero-badge.blue i { color: #64B5F6; }
.hero-badge.green i { color: #81C784; }
.hero-badge.gold i { color: #FFD54F; }

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(212, 175, 55, 0.4); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #FFE082 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.gradient-text-blue {
    background: linear-gradient(135deg, #64B5F6 0%, #90CAF9 50%, #64B5F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, #81C784 0%, #A5D6A7 50%, #81C784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #FFD54F 0%, #FFE082 50%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    max-width: 580px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.feature-item i {
    color: #64B5F6;
    font-size: 1.1rem;
}

.feature-item.green i { color: #81C784; }
.feature-item.gold i { color: #FFD54F; }

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    color: white;
}

.btn-hero-primary.blue {
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
    box-shadow: 0 10px 40px rgba(25, 118, 210, 0.4);
}

.btn-hero-primary.blue:hover {
    box-shadow: 0 15px 50px rgba(25, 118, 210, 0.5);
}

.btn-hero-primary.green {
    background: linear-gradient(135deg, #388E3C 0%, #1B5E20 100%);
    box-shadow: 0 10px 40px rgba(56, 142, 60, 0.4);
}

.btn-hero-primary.green:hover {
    box-shadow: 0 15px 50px rgba(56, 142, 60, 0.5);
}

.btn-hero-primary.gold {
    background: linear-gradient(135deg, #FFA000 0%, #FF6F00 100%);
    box-shadow: 0 10px 40px rgba(255, 160, 0, 0.4);
}

.btn-hero-primary.gold:hover {
    box-shadow: 0 15px 50px rgba(255, 160, 0, 0.5);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-3px);
}

.btn-hero-outline i {
    font-size: 1.3rem;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-card.floating {
    animation: floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.hero-card-icon i {
    font-size: 2rem;
    color: white;
}

.hero-card-content h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.hero-card-content span {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
}

/* Department Showcase */
.department-showcase {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department-showcase::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotateBorder 20s linear infinite;
}

.department-showcase::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotateBorder 15s linear infinite reverse;
}

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

.dept-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

.dept-icon-circle i {
    font-size: 3rem;
    color: white;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(255,255,255,0.1); }
}

.department-showcase.blue .dept-icon-circle {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.3) 0%, rgba(13, 71, 161, 0.1) 100%);
}

.department-showcase.green .dept-icon-circle {
    background: linear-gradient(135deg, rgba(56, 142, 60, 0.3) 0%, rgba(27, 94, 32, 0.1) 100%);
}

.department-showcase.gold .dept-icon-circle {
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.3) 0%, rgba(255, 111, 0, 0.1) 100%);
}

.dept-info-floating {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: floatInfo 3s ease-in-out infinite 0.5s;
}

@keyframes floatInfo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dept-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.dept-value {
    display: block;
    color: #81C784;
    font-size: 1.8rem;
    font-weight: 900;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.hero-prev, .hero-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-prev i, .hero-next i {
    font-size: 1.5rem;
    color: white;
}

.hero-prev::after, .hero-next::after {
    display: none;
}

/* Hero Pagination */
.hero-pagination-wrapper {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.hero-pagination {
    display: flex;
    gap: 15px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    opacity: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #D4AF37;
    width: 80px;
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFE082);
    width: 0;
    animation: progressBar 7s linear infinite;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Side Info Panel */
.hero-side-info {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.side-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    white-space: nowrap;
}

.side-info-item i {
    color: #D4AF37;
}

.side-info-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Social Links */
.hero-social {
    position: absolute;
    right: 30px;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.social-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-item:hover {
    background: #D4AF37;
    transform: scale(1.15) rotate(5deg);
    border-color: #D4AF37;
    color: white;
}

.social-item i {
    font-size: 1.1rem;
}

/* Scroll Indicator - Updated */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #D4AF37;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== Responsive Styles ========== */
@media (max-width: 1200px) {
    .hero-side-info {
        display: none;
    }

    .hero-social {
        right: 15px;
    }

    .hero-prev, .hero-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 991px) {
    .hero-navigation {
        padding: 0 15px;
    }

    .hero-prev, .hero-next {
        width: 45px;
        height: 45px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stats .stat-item {
        padding: 0.8rem 1.2rem;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .hero-social {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stats .stat-item {
        padding: 0.6rem 1rem;
        flex: 1;
        min-width: 80px;
    }

    .hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.75rem;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }

    .hero-pagination-wrapper {
        bottom: 80px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 30px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 50px;
    }

    .hero-navigation {
        display: none;
    }

    .scroll-indicator {
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 1rem 0;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }
}

/* ========== Quick Links Section ========== */
.quick-links-section {
    position: relative;
    z-index: 20;
    margin-top: -60px;
}

.quick-links-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.quick-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.quick-link-item:hover::before {
    opacity: 1;
}

.quick-link-item:hover {
    color: white;
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.quick-link-item:hover .quick-link-icon {
    background: white;
}

.quick-link-icon i {
    font-size: 1.5rem;
    color: white;
    transition: color 0.4s ease;
}

.quick-link-item:hover .quick-link-icon i {
    color: var(--primary-color);
}

.quick-link-text {
    position: relative;
    z-index: 1;
}

.quick-link-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.quick-link-text span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========== Section Styles ========== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Dean Section ========== */
.dean-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.dean-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.dean-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(139, 21, 56, 0.2);
    border: 5px solid white;
}

.dean-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

.dean-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    z-index: 1;
}

.dean-content {
    padding-right: 2rem;
}

.dean-message {
    margin: 1.5rem 0;
}

.dean-message p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.dean-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(139, 21, 56, 0.1) 100%);
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
}

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

.dean-title {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========== Departments Section ========== */
.departments-section {
    padding: 100px 0;
    background: white;
}

.departments-swiper {
    padding: 20px 0 60px;
}

.department-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.department-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.department-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.department-card:hover .department-image img {
    transform: scale(1.1);
}

.department-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 21, 56, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.department-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(50%);
    position: relative;
    z-index: 2;
}

.department-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.department-content {
    padding: 50px 30px 30px;
    text-align: center;
}

.department-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.department-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.department-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--white);
}

.btn-department {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-department:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
}

/* ========== Statistics Section ========== */
.statistics-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.statistics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.statistics-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.92) 0%,
        rgba(58, 79, 99, 0.92) 100%);
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-card .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== News Section ========== */
.news-section {
    padding: 100px 0;
    background: white;
}

.news-header {
    margin-bottom: 2rem;
}

.news-swiper {
    padding: 10px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.3);
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.news-date .month {
    font-size: 0.75rem;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

/* Swiper Navigation */
.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-swiper .swiper-button-next::after,
.news-swiper .swiper-button-prev::after {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========== Sidebar Sections ========== */
.sidebar-section {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.sidebar-header i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.sidebar-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.sidebar-content {
    padding: 1rem 1.5rem;
    max-height: 350px;
    overflow-y: auto;
}

.sidebar-more {
    display: block;
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-more:hover {
    background: rgba(139, 21, 56, 0.05);
    color: var(--primary-dark);
}

/* Announcement Items */
.announcement-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.announcement-date {
    min-width: 60px;
    text-align: center;
    background: rgba(139, 21, 56, 0.05);
    border-radius: 10px;
    padding: 8px;
}

.announcement-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.announcement-date .month {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.announcement-date .year {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.announcement-text a {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.announcement-text a:hover {
    color: var(--primary-color);
}

/* Directive Items */
.directive-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

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

.directive-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.directive-icon i {
    font-size: 1rem;
    color: white;
}

.directive-text a {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    transition: color 0.3s ease;
}

.directive-text a:hover {
    color: var(--primary-color);
}

.directive-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* ========== Dual News Section ========== */
.dual-news-section {
    padding: 80px 0;
}

.ministry-news-swiper,
.appreciation-swiper {
    padding-bottom: 50px;
}

.mini-news-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.mini-news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.mini-news-image {
    width: 120px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-news-content {
    display: flex;
    flex-direction: column;
}

.mini-news-date {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mini-news-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-news-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

/* Appreciation Cards */
.appreciation-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
}

.appreciation-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.appreciation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.appreciation-icon i {
    font-size: 1.2rem;
    color: white;
}

.appreciation-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.appreciation-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.appreciation-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* ========== Services Section ========== */
.services-section {
    padding: 100px 0;
    background: white;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.service-card:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: white;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
    transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.service-card:hover .service-title {
    color: white;
}

.service-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.4s ease;
}

.service-card:hover .service-link {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== Contact Section ========== */
.contact-section {
    padding: 100px 0;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 21, 56, 0.1);
}

.contact-form .form-floating label {
    padding: 1rem;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #D4AF37;
}

.contact-text h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.8;
}

.contact-text p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
}

.social-link i {
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--primary-color);
}

/* ========== Related Links Section ========== */
.related-links-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.related-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.related-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.1);
    border-color: rgba(139, 21, 56, 0.2);
}

.related-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-link-icon i {
    font-size: 1.5rem;
    color: white;
}

.related-link-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.related-link-text span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========== Swiper Pagination ========== */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .college-hero-title {
        font-size: 3rem;
    }

    .quick-link-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .quick-link-text h5 {
        font-size: 0.85rem;
    }

    .dean-decoration {
        display: none;
    }

    .dean-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .college-hero-section {
        min-height: 80vh;
    }

    .college-hero-title {
        font-size: 2.5rem;
    }

    .college-hero-description {
        font-size: 1rem;
    }

    .college-hero-actions {
        flex-direction: column;
    }

    .quick-links-section {
        margin-top: -40px;
    }

    .quick-link-icon {
        width: 40px;
        height: 40px;
    }

    .quick-link-icon i {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .department-stats {
        gap: 1rem;
    }

    .mini-news-card {
        flex-direction: column;
    }

    .mini-news-image {
        width: 100%;
        height: 150px;
    }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
.sidebar-content::-webkit-scrollbar {
    width: 5px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* ========== Faculty Swiper Section ========== */
.faculty-swiper {
    padding-bottom: 50px;
}

.faculty-swiper .swiper-slide {
    height: auto;
}

.faculty-swiper .faculty-card-new {
    height: 100%;
}

.faculty-pagination.swiper-pagination-bullets {
    bottom: 0;
}

.faculty-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color, #8b1538);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.faculty-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}
