/* ============================================
   HSPS Website - Modern Stylesheet
   Inspired by Edutec Design
   ============================================ */

:root {
    --primary-color: #009241;
    --secondary-color: #027a3d;
    --accent-color: #f091b9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Top Header
   ============================================ */

.top-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    gap: 30px;
}

.top-header-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.top-header-left a:hover {
    opacity: 0.8;
}

.top-header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header-right > a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    padding: 5px 0;
}

.top-header-right > a:hover {
    opacity: 0.8;
}

.btn-register,
.btn-login,
.btn-app-download {
    color: var(--white);
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-app-download {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-app-download i {
    font-size: 1.1rem;
}

.btn-register:hover,
.btn-login:hover,
.btn-app-download:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   Main Header
   ============================================ */

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu .dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    display: block;
    pointer-events: none;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu .dropdown-menu a:hover,
.nav-menu .dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-menu .dropdown-menu a.active::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-enroll {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-enroll:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* ============================================
   Hero Section
   ============================================ */

/* ============================================
   Hero Banner Slider
   ============================================ */

.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    will-change: transform;
}

.slide.active .slide-bg-image {
    transform: scale(1.05);
}

.slide:not(.active) .slide-bg-image {
    transform: scale(1.15);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.4) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(245, 158, 11, 0.2) 100%);
    z-index: 1;
    transition: opacity 1.2s ease;
}

.slide:not(.active) .slide-overlay {
    opacity: 0.8;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: slideTitleIn 1s ease 0.5s both;
}

@keyframes slideTitleIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.slide-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.5;
}

.slide-subtitle {
    font-size: 1.4rem;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideSubtitleIn 1s ease 0.7s both;
}

@keyframes slideSubtitleIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.slide-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideActionsIn 1s ease 0.9s both;
}

@keyframes slideActionsIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-actions .btn {
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.slide-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.slide-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.slide-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    color: var(--white);
    border: none;
    position: relative;
    z-index: 1;
}

.slide-actions .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
}

.slide-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}

.slide-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Advanced Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.slider-nav:hover::before {
    width: 100%;
    height: 100%;
}

.slider-nav.prev {
    left: 40px;
}

.slider-nav.next {
    right: 40px;
}

.slider-nav i {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.slider-nav:hover i {
    transform: scale(1.2);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Advanced Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.slider-dots .dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
}

.slider-dots .dot.active {
    background: var(--accent-color);
    border-color: var(--white);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.slider-dots .dot.active::before {
    transform: scale(1);
}

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: inherit;
    transition: width 0.1s linear;
}

.slider-dots .dot.active .dot-progress {
    animation: dotProgress 5s linear;
}

@keyframes dotProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Progress Bar */
.slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    overflow: hidden;
}

.slider-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Responsive Design for Slider */
@media (max-width: 968px) {
    .hero-slider {
        height: 600px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .slider-nav.prev {
        left: 20px;
    }
    
    .slider-nav.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .slide-actions .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 44px;
        height: 44px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        padding: 8px 16px;
        gap: 12px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 32px;
    }
}

/* ============================================
   Statistics Section
   ============================================ */

.stats-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-content p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ============================================
   Categories Section
   ============================================ */

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
}

/* ============================================
   About Section
   ============================================ */

.content-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-text p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Programs Section
   ============================================ */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.stars {
    color: var(--accent-color);
}

.program-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.program-content > p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.program-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-instructor img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.program-instructor p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}

.program-instructor span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   Why Choose Section
   ============================================ */

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.why-choose-text .section-title {
    text-align: left;
}

.why-choose-list {
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-choose-item .number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-choose-item .content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.why-choose-item .content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Testimonials Carousel Section
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-modern {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 146, 65, 0.15);
}

.testimonial-card-modern:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.testimonial-card-modern:hover .testimonial-quote-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 146, 65, 0.35);
}

.testimonial-quote-icon i {
    font-size: 2rem;
    color: var(--white);
}

.testimonial-content-modern {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-content-modern p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.testimonial-content-modern p::before,
.testimonial-content-modern p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    position: absolute;
    line-height: 1;
}

.testimonial-content-modern p::before {
    top: -20px;
    left: -20px;
}

.testimonial-content-modern p::after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card-modern:hover .testimonial-avatar {
    transform: scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-author-info h4 {
    color: var(--primary-color);
}

.testimonial-author-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 146, 65, 0.15);
    position: relative;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 146, 65, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn i {
    font-size: 1.25rem;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    align-items: center;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

.indicator:hover:not(.active) {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Responsive Design for Testimonials Carousel */
@media (max-width: 968px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card-modern {
        padding: 40px 30px;
    }
    
    .testimonial-content-modern p {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 20px;
    }
    
    .testimonial-card-modern {
        padding: 32px 24px;
    }
    
    .testimonial-quote-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .testimonial-quote-icon i {
        font-size: 1.5rem;
    }
    
    .testimonial-content-modern p {
        font-size: 1rem;
    }
    
    .testimonial-content-modern p::before,
    .testimonial-content-modern p::after {
        font-size: 2rem;
    }
    
    .testimonial-avatar {
        width: 64px;
        height: 64px;
    }
    
    .testimonial-author-modern {
        flex-direction: column;
        gap: 16px;
    }
    
    .testimonial-author-info {
        text-align: center;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .carousel-controls {
        gap: 20px;
        margin-top: 32px;
    }
}

/* ============================================
   Instructors Section
   ============================================ */

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.instructor-image {
    height: 250px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-content {
    padding: 25px;
    text-align: center;
}

.instructor-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.instructor-content > p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.instructor-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Events Section
   ============================================ */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-link:hover {
    gap: 12px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image-wrapper img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    min-width: 60px;
}

.event-date-badge .event-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.event-date-badge .event-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.event-meta i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s;
}

.event-card:hover .event-title {
    color: var(--primary-color);
}

.event-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 146, 65, 0.3);
}

.event-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 146, 65, 0.4);
}

.event-btn i {
    transition: transform 0.3s ease;
}

.event-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 50px;
}

/* ============================================
   Campuses Section - Modern Design
   ============================================ */

.campuses-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.campuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-label-modern {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-label-modern::before,
.section-label-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.section-label-modern::before {
    left: -40px;
}

.section-label-modern::after {
    right: -40px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.section-title-modern {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.campuses-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.campus-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}

.campus-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.campus-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 146, 65, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 146, 65, 0.25);
}

.campus-card-modern:hover::before {
    opacity: 1;
}

.campus-image-modern {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
}

.campus-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.campus-card-modern:hover .campus-image-modern img {
    transform: scale(1.12) rotate(1deg);
}

.campus-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.campus-card-modern:hover .campus-overlay-modern {
    opacity: 1;
}

.campus-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.campus-card-modern:hover .campus-shine {
    animation: shine 1.2s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.campus-badge-modern {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.campus-card-modern:hover .campus-badge-modern {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    background: var(--accent-color);
    color: var(--white);
}

.campus-badge-modern i {
    font-size: 0.875rem;
}

.campus-content-modern {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.campus-header-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.campus-icon-modern {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 146, 65, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.campus-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.campus-card-modern:hover .campus-icon-modern {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 146, 65, 0.35);
}

.campus-card-modern:hover .campus-icon-modern::before {
    width: 200%;
    height: 200%;
}

.campus-icon-modern i {
    font-size: 1.375rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.campus-content-modern h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.campus-card-modern:hover .campus-content-modern h3 {
    color: var(--primary-color);
    transform: translateX(4px);
}

.campus-description {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.8125rem;
    flex: 1;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campus-card-modern:hover .campus-description {
    color: var(--text-dark);
}

.campus-meta-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 146, 65, 0.08);
    transition: all 0.4s ease;
}

.campus-card-modern:hover .campus-meta-modern {
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: rgba(0, 146, 65, 0.2);
    transform: translateX(4px);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.8125rem;
    transition: all 0.3s ease;
}

.meta-item i {
    color: var(--primary-color);
    width: 16px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.campus-card-modern:hover .meta-item i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.meta-item span {
    flex: 1;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.campus-link-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campus-card-modern:hover .campus-link-modern {
    color: var(--secondary-color);
    border-top-color: var(--accent-color);
    gap: 12px;
    transform: translateX(4px);
}

.campus-link-modern i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.campus-card-modern:hover .campus-link-modern i {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .campuses-grid-modern {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .campuses-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .campuses-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .campus-image-modern {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
    }
    
    .campuses-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .campus-image-modern {
        height: 220px;
    }
    
    .campus-content-modern {
        padding: 20px;
    }
    
    .campus-header-modern {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .campus-icon-modern {
        width: 44px;
        height: 44px;
    }
    
    .campus-icon-modern i {
        font-size: 1.375rem;
    }
    
    .campus-content-modern h3 {
        font-size: 1.25rem;
    }
    
    .campus-description {
        -webkit-line-clamp: 4;
    }
}

/* ============================================
   Campus Pages - Modern Design
   ============================================ */

/* Modern Hero Section for Campus Pages */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.95) 0%, rgba(2, 122, 61, 0.95) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern About Section for Campus Pages */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: translateY(-8px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-text {
    position: relative;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 146, 65, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.1);
    border-color: rgba(0, 146, 65, 0.2);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.25);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 146, 65, 0.35);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text h4 {
    color: var(--primary-color);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Modern Stats Section for Campus Pages */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    border-radius: 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 146, 65, 0.15);
    border-color: rgba(0, 146, 65, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 146, 65, 0.35);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.stat-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-content p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-content p {
    color: var(--secondary-color);
}

/* Responsive Design for Campus Pages */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .about-text .section-title {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
}

/* ============================================
   Campus Pages - Additional Sections
   ============================================ */

/* Enhanced Stats Section */
.campus-stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.campus-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.campus-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.campus-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.campus-stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.campus-stat-card:hover .campus-stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.campus-stat-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.campus-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
}

.campus-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Section */
.campus-events-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.campus-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.campus-events-header {
    text-align: center;
    margin-bottom: 60px;
}

.campus-events-header .section-label-modern {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.campus-events-header .section-title-modern {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campus-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.campus-event-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.campus-event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 146, 65, 0.15);
}

.campus-event-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.campus-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-event-card:hover .campus-event-image img {
    transform: scale(1.15);
}

.campus-event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.campus-event-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campus-event-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.campus-event-card:hover .campus-event-content h3 {
    color: var(--primary-color);
}

.campus-event-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.campus-event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.campus-event-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Map Section */
.campus-map-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
}

.campus-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.campus-map-info {
    position: relative;
}

.campus-map-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campus-map-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.campus-map-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.campus-map-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.campus-map-detail-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 146, 65, 0.15);
}

.campus-map-detail-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.campus-map-detail-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.campus-map-detail-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.campus-map-detail-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.campus-map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
    background: #e5e7eb;
}

.campus-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form Section */
.campus-contact-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.campus-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.campus-contact-info {
    position: sticky;
    top: 100px;
}

.campus-contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campus-contact-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.campus-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.campus-contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 146, 65, 0.1);
    transition: all 0.3s ease;
}

.campus-contact-detail:hover {
    transform: translateX(8px);
    border-color: rgba(0, 146, 65, 0.2);
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.1);
}

.campus-contact-detail-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.campus-contact-detail-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.campus-contact-detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.campus-contact-detail-content p,
.campus-contact-detail-content a {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.campus-contact-detail-content a:hover {
    color: var(--primary-color);
}

.campus-contact-form-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.campus-contact-form-wrapper h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.campus-contact-form-wrapper .form-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1rem;
}

.campus-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.campus-form-group {
    position: relative;
}

.campus-form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.campus-form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.campus-form-group input,
.campus-form-group select,
.campus-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.campus-form-group input:focus,
.campus-form-group select:focus,
.campus-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 146, 65, 0.1);
}

.campus-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.campus-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.campus-form-submit {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 146, 65, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campus-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 146, 65, 0.4);
}

.campus-form-submit:active {
    transform: translateY(-1px);
}

/* Responsive Design for Additional Sections */
@media (max-width: 968px) {
    .campus-map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .campus-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .campus-contact-info {
        position: static;
    }
    
    .campus-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .campus-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .campus-events-grid {
        grid-template-columns: 1fr;
    }
    
    .campus-map-container {
        height: 400px;
    }
    
    .campus-contact-form-wrapper {
        padding: 32px 24px;
    }
}

/* ============================================
   Footer
   ============================================ */

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 50px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.app-download-footer {
    margin-top: 25px;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.app-download-link i {
    font-size: 1.3rem;
    color: #34a853;
}

.app-download-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-header-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Mobile Dropdown Menu */
    .nav-menu .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: var(--bg-light);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: none;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
        pointer-events: auto;
    }

    .nav-menu .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-menu .dropdown-menu a {
        padding: 12px 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .event-card-large {
        grid-template-columns: 1fr;
    }

    .event-image {
        height: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .campuses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .campus-image {
        height: 250px;
    }

    .campus-content {
        padding: 25px;
    }

    .campus-meta {
        flex-direction: column;
        gap: 8px;
    }

    /* Board Results Mobile Styles */
    .results-filter-container {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .filter-group {
        width: 100%;
        min-width: unset;
    }

    .btn-reset-filters {
        width: 100%;
        justify-content: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-card-body {
        grid-template-columns: 1fr;
    }

    .result-stat.highlight {
        grid-column: 1;
    }

    .result-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .progress-bar {
        width: 100%;
    }

    .result-status {
        align-self: flex-start;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .event-image-wrapper {
        height: 220px;
    }
    
    .event-card-content {
        padding: 20px;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Admissions Page Styles
   ============================================ */

.fee-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.fee-table {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

.fee-table h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table table tr {
    border-bottom: 1px solid #e5e7eb;
}

.fee-table table tr:last-child {
    border-bottom: none;
}

.fee-table table td {
    padding: 15px 10px;
    color: var(--text-dark);
}

.fee-table table td:first-child {
    color: var(--text-light);
}

.fee-table table td:last-child {
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
}

.fee-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-color);
}

.fee-note p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.fee-note ul {
    color: var(--text-light);
    line-height: 1.8;
}

.admission-info {
    max-width: 1000px;
    margin: 0 auto;
}

.admission-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.admission-info h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.admission-info ol,
.admission-info ul {
    color: var(--text-light);
    line-height: 2;
    margin-left: 20px;
    margin-top: 15px;
}

.admission-info ol li,
.admission-info ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .fee-structure {
        grid-template-columns: 1fr;
    }
    
    .fee-table {
        padding: 20px;
    }
    
    .fee-table table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Modern About Page Styles
   ============================================ */

.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-title span {
    color: var(--accent-color);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.about-stats {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 146, 65, 0.2);
    border-color: var(--primary-color);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: rotate(5deg) scale(1.1);
}

.stat-content-modern h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-content-modern p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mission-card,
.vision-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 146, 65, 0.15);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 30px;
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-content-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-modern {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.image-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-text-modern {
    padding: 20px 0;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 146, 65, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-modern .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text-modern p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.values-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.value-icon-wrapper {
    margin-bottom: 25px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(5deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-about {
    background: var(--bg-light);
    padding: 100px 0;
}

.why-choose-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text-modern {
    padding: 20px 0;
}

.why-choose-list-modern {
    margin-top: 40px;
}

.why-choose-item-modern {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-choose-item-modern:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 146, 65, 0.1);
    transform: translateX(5px);
}

.item-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 60px;
    opacity: 0.3;
}

.item-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.item-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-image-modern {
    position: relative;
}

.image-stack {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.floating-card h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.floating-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .about-content-modern,
    .why-choose-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }
    
    .stat-content-modern h3 {
        font-size: 2.5rem;
    }
}

/* ============================================
   Director Message Page Styles
   ============================================ */

.director-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.director-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.director-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.director-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.director-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.director-hero-title span {
    color: var(--accent-color);
}

.director-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.director-message-section {
    padding: 80px 0;
    background: var(--white);
}

.director-message-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.director-profile-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
    text-align: center;
}

.director-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.image-frame {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 146, 65, 0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 146, 65, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.director-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 146, 65, 0.4);
    white-space: nowrap;
}

.director-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.director-name {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.director-contact {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.director-contact a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s;
}

.director-contact a:hover {
    color: var(--primary-color);
}

.director-contact i {
    color: var(--primary-color);
}

.director-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.director-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.director-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.director-message-content {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.message-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.message-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 20px 0 15px;
    line-height: 1.3;
}

.message-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.message-date i {
    color: var(--primary-color);
}

.message-body {
    line-height: 1.9;
}

.greeting {
    margin-bottom: 30px;
}

.salutation {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.message-paragraph {
    margin-bottom: 25px;
}

.message-paragraph p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.message-highlight {
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.1) 0%, rgba(2, 122, 61, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 15px;
    position: relative;
}

.highlight-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.message-highlight p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.message-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-point i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.message-closing {
    margin: 40px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
}

.closing-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.signature-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.signature-line {
    width: 200px;
    height: 2px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.signature-details {
    margin-top: 20px;
}

.signature-name {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.signature-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-organization {
    color: var(--text-light);
    font-size: 0.95rem;
}

.director-vision-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text {
    padding: 20px 0;
}

.vision-text .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 20px 0 40px;
    line-height: 1.3;
}

.vision-points {
    margin-top: 40px;
}

.vision-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.vision-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 146, 65, 0.1);
    transform: translateX(5px);
}

.vision-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 60px;
    opacity: 0.3;
}

.vision-details h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.vision-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.vision-image {
    position: relative;
}

.vision-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vision-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.vision-image-wrapper:hover img {
    transform: scale(1.05);
}

.vision-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.vision-overlay-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.vision-overlay-card h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.vision-overlay-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.director-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.director-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.director-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .director-message-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .director-profile-card {
        position: relative;
        top: 0;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .message-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .director-hero-title {
        font-size: 2.5rem;
    }
    
    .director-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .director-message-content {
        padding: 30px 20px;
    }
    
    .message-header h2 {
        font-size: 2rem;
    }
    
    .director-profile-card {
        padding: 30px 20px;
    }
    
    .image-frame {
        width: 150px;
        height: 150px;
    }
    
    .vision-overlay-card {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* ============================================
   Modern Admissions Page Styles
   ============================================ */

.admissions-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.admissions-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.admissions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.admissions-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.admissions-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.admissions-hero-title span {
    color: var(--accent-color);
}

.admissions-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.admissions-quick-info {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.quick-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.quick-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.quick-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.quick-info-card:hover .quick-info-icon {
    transform: rotate(5deg) scale(1.1);
}

.quick-info-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.quick-info-content p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 146, 65, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 146, 65, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.fee-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.fee-structure-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.fee-card-modern {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.fee-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 146, 65, 0.15);
}

.fee-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.fee-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 20px;
}

.fee-card-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.fee-card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.fee-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fee-item:hover {
    background: rgba(0, 146, 65, 0.05);
    transform: translateX(5px);
}

.fee-grade {
    color: var(--text-dark);
    font-weight: 500;
}

.fee-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.fee-notes-modern {
    margin-top: 40px;
}

.fee-note-card {
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.1) 0%, rgba(2, 122, 61, 0.1) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fee-note-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.note-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.note-content ul {
    list-style: none;
    padding: 0;
}

.note-content ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.note-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.facilities-overview {
    padding: 100px 0;
    background: var(--white);
}

.facilities-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.facility-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.facility-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.facility-card-modern:hover .facility-icon-modern {
    transform: rotate(5deg) scale(1.1);
}

.facility-card-modern h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.facility-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.training-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-text {
    padding: 20px 0;
}

.training-cards {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.training-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.training-card:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 146, 65, 0.1);
    transform: translateX(5px);
}

.training-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.training-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.training-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.training-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.training-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.training-image:hover img {
    transform: scale(1.05);
}

.policies-section {
    padding: 100px 0;
    background: var(--white);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.policy-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.policy-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.admissions-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.admissions-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.admissions-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fee-structure-modern {
        grid-template-columns: 1fr;
    }
    
    .admission-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admissions-hero-title {
        font-size: 2.5rem;
    }
    
    .admissions-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admission-steps,
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Modern Facilities Page Styles
   ============================================ */

.facilities-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.facilities-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.facilities-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.facilities-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.facilities-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.facilities-hero-title span {
    color: var(--accent-color);
}

.facilities-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.facilities-intro {
    padding: 100px 0;
    background: var(--white);
}

.facilities-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    padding: 20px 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.intro-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.intro-stat:hover {
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.1) 0%, rgba(2, 122, 61, 0.1) 100%);
    transform: translateY(-5px);
}

.intro-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.intro-stat p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.image-wrapper-facility {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper-facility img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper-facility:hover img {
    transform: scale(1.05);
}

.image-badge-facility {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge-facility i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.image-badge-facility span {
    font-weight: 600;
    color: var(--text-dark);
}

.facilities-main {
    background: var(--bg-light);
    padding: 100px 0;
}

.facilities-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.facility-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.facility-detail-card:hover {
    box-shadow: 0 20px 60px rgba(0, 146, 65, 0.15);
    transform: translateY(-5px);
}

.facility-detail-card.reverse {
    direction: rtl;
}

.facility-detail-card.reverse > * {
    direction: ltr;
}

.facility-image-box {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.facility-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-detail-card:hover .facility-image-box img {
    transform: scale(1.1);
}

.facility-overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 146, 65, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facility-detail-card:hover .facility-overlay-box {
    opacity: 1;
}

.facility-detail-content {
    padding: 50px 40px;
}

.facility-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.facility-detail-card:hover .facility-icon-large {
    transform: rotate(5deg) scale(1.1);
}

.facility-detail-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.facility-detail-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.facility-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-features li:hover {
    background: rgba(0, 146, 65, 0.1);
    transform: translateX(5px);
}

.facility-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.additional-facilities {
    padding: 100px 0;
    background: var(--white);
}

.additional-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-facility-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.additional-facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.additional-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.additional-facility-card:hover .additional-icon {
    transform: rotate(5deg) scale(1.1);
}

.additional-facility-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.additional-facility-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.facilities-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.facilities-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.facilities-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .facilities-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .facility-detail-card {
        grid-template-columns: 1fr;
    }
    
    .facility-detail-card.reverse {
        direction: ltr;
    }
    
    .facility-image-box {
        min-height: 250px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .facilities-hero-title {
        font-size: 2.5rem;
    }
    
    .facilities-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .additional-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-detail-content {
        padding: 30px 25px;
    }
}

/* ============================================
   Modern Contact Page Styles
   ============================================ */

.contact-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-title span {
    color: var(--accent-color);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-methods {
    background: var(--white);
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-method-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .contact-method-icon {
    transform: rotate(5deg) scale(1.1);
}

.contact-method-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-method-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-main {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-section {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-header-left {
    margin-bottom: 35px;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 146, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    margin-top: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 146, 65, 0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.contact-info-section {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-card-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.info-card-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-card-header p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-section {
    padding-top: 25px;
    border-top: 2px solid var(--bg-light);
}

.social-section h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-links-modern {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 146, 65, 0.3);
}

.campus-locations {
    padding: 100px 0;
    background: var(--white);
}

.campus-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.campus-location-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.campus-location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.campus-location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.campus-location-card:hover .campus-location-icon {
    transform: rotate(5deg) scale(1.1);
}

.campus-location-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.campus-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.campus-contact p {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.campus-contact i {
    color: var(--primary-color);
}

.map-section {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.map-info-box {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 280px;
}

.map-info-box h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-box h3 i {
    color: var(--primary-color);
}

.map-info-box p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        position: relative;
        top: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .campus-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px 0;
    }
    
    .map-info-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-section {
        padding: 35px 25px;
    }
    
    .campus-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        height: 350px;
    }
}

/* ============================================
   Modern Events Page Styles
   ============================================ */

.events-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.events-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.events-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.events-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.events-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.events-hero-title span {
    color: var(--accent-color);
}

.events-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.events-filter {
    background: var(--white);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(0, 146, 65, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 146, 65, 0.3);
}

.events-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.events-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card-modern {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.event-image-wrapper-modern {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-image-wrapper-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card-modern:hover .event-image-wrapper-modern img {
    transform: scale(1.1);
}

.event-date-badge-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.event-day-modern {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.event-month-modern {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

.event-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 146, 65, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card-modern:hover .event-overlay-modern {
    opacity: 1;
}

.event-card-content-modern {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.event-meta-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-time-modern,
.event-location-modern {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-time-modern i,
.event-location-modern i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.event-title-modern {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.event-description-modern {
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.event-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--bg-light);
}

.event-category-badge {
    padding: 6px 15px;
    background: rgba(0, 146, 65, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-btn-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.event-btn-modern:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.event-btn-modern i {
    transition: transform 0.3s ease;
}

.event-btn-modern:hover i {
    transform: translateX(5px);
}

.activities-section {
    padding: 100px 0;
    background: var(--white);
}

.activities-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.activity-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.activity-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.activity-card-modern:hover .activity-icon-modern {
    transform: rotate(5deg) scale(1.1);
}

.activity-card-modern h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.activity-card-modern > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.activity-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
}

.activity-details span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.activity-details i {
    color: var(--primary-color);
}

.activity-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.activity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 146, 65, 0.3);
}

.events-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.events-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.events-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .events-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-hero-title {
        font-size: 2.5rem;
    }
    
    .events-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .events-grid-modern,
    .activities-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .event-image-wrapper-modern {
        height: 200px;
    }
}

/* ============================================
   Modern Alumni Page Styles
   ============================================ */

.alumni-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.alumni-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.alumni-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.alumni-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.alumni-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.alumni-hero-title span {
    color: var(--accent-color);
}

.alumni-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.alumni-intro {
    padding: 100px 0;
    background: var(--white);
}

.alumni-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text-alumni {
    padding: 20px 0;
}

.intro-stats-alumni {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box-alumni {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.stat-box-alumni h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box-alumni p {
    font-size: 1rem;
    opacity: 0.95;
}

.alumni-stories {
    padding: 100px 0;
    background: var(--bg-light);
}

.alumni-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.alumni-card-modern {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.alumni-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.alumni-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.alumni-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.alumni-card-modern:hover .alumni-image-wrapper img {
    transform: scale(1.1);
}

.alumni-overlay-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 146, 65, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alumni-card-modern:hover .alumni-overlay-card {
    opacity: 1;
}

.alumni-content-modern {
    padding: 30px;
}

.alumni-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.alumni-content-modern h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.alumni-class {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.alumni-profession {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 15px;
}

.alumni-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.alumni-achievements {
    padding-top: 15px;
    border-top: 1px solid var(--bg-light);
}

.alumni-achievements span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.alumni-network {
    padding: 100px 0;
    background: var(--white);
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.network-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.network-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.network-benefits li i {
    color: var(--primary-color);
}

.image-wrapper-network {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper-network img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper-network:hover img {
    transform: scale(1.05);
}

.image-badge-network {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge-network i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.image-badge-network span {
    font-weight: 600;
    color: var(--text-dark);
}

.alumni-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

/* ============================================
   Modern Careers Page Styles
   ============================================ */

.careers-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.careers-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.careers-hero-title span {
    color: var(--accent-color);
}

.careers-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.why-join {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.open-positions {
    padding: 100px 0;
    background: var(--bg-light);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.position-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.position-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.position-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.position-title-section {
    flex: 1;
}

.position-title-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.position-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 146, 65, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.position-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.position-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.position-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.position-details i {
    color: var(--primary-color);
}

.position-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.position-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 146, 65, 0.3);
}

.application-process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number-process {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.careers-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

/* ============================================
   Modern Achievements Page Styles
   ============================================ */

.achievements-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.achievements-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.achievements-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.achievements-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.achievements-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.achievements-hero-title span {
    color: var(--accent-color);
}

.achievements-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.achievement-stats {
    background: var(--white);
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.stats-grid-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.stat-card-achievement {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-card-achievement:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.stat-icon-achievement {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.stat-card-achievement:hover .stat-icon-achievement {
    transform: rotate(5deg) scale(1.1);
}

.stat-card-achievement h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card-achievement p {
    color: var(--text-light);
    font-weight: 600;
}

.recent-achievements {
    padding: 100px 0;
    background: var(--bg-light);
}

.achievements-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.achievement-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 146, 65, 0.15);
    border-color: var(--primary-color);
}

.achievement-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.achievement-card-modern:hover .achievement-badge {
    transform: rotate(5deg) scale(1.1);
}

.achievement-date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 146, 65, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.achievement-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.achievement-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.achievement-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 146, 65, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.academic-excellence {
    padding: 100px 0;
    background: var(--white);
}

.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.excellence-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.excellence-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.excellence-stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.excellence-stat p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.image-wrapper-excellence {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper-excellence img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper-excellence:hover img {
    transform: scale(1.05);
}

.image-badge-excellence {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge-excellence i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.image-badge-excellence span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Board Results Section
   ============================================ */

.board-results {
    padding: 100px 0;
    position: relative;
}

.results-filter-container {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.filter-group label i {
    color: var(--primary-color);
}

.filter-select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 146, 65, 0.1);
}

.btn-reset-filters {
    padding: 12px 25px;
    background: var(--text-light);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-reset-filters:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.results-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: thin;
}

.results-table-wrapper::-webkit-scrollbar {
    height: 10px;
}

.results-table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 999px;
}

.results-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 146, 65, 0.4);
    border-radius: 999px;
}

.table-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.table-scroll-hint i {
    color: var(--primary-color);
}

.results-table {
    width: max-content;
    min-width: calc(100% - 20px);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 18px;
    overflow: hidden;
}

.results-table thead {
    position: sticky;
    top: 0;
    z-index: 5;
}

.results-table thead th {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 18px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.results-table thead th:last-child {
    border-right: none;
    text-align: center;
}

.results-table tbody tr {
    background: var(--white);
    transition: background 0.3s, transform 0.3s;
}

.results-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.results-table tbody tr:hover {
    background: rgba(0, 146, 65, 0.05);
    transform: translateX(4px);
}

.results-table td {
    padding: 18px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
}

.results-table tbody tr:nth-child(even) td {
    background: #f9fafb;
}

.results-table td:last-child {
    text-align: center;
}

.results-table td.numeric {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.results-table td.rate-cell {
    min-width: 160px;
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

.table-year {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.table-year i {
    font-size: 1rem;
}

.table-class-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 146, 65, 0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.table-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-dark);
}

.table-stat i {
    color: var(--primary-color);
    opacity: 0.9;
}

.campus-cell {
    min-width: 160px;
    text-align: center;
}

.table-campus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: var(--text-dark);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 146, 65, 0.04);
    min-width: 130px;
}

.campus-lead .table-campus {
    box-shadow: 0 8px 18px rgba(0, 146, 65, 0.15);
    border-color: rgba(0, 146, 65, 0.2);
}

.table-campus.muted {
    color: var(--text-light);
    background: rgba(148, 163, 184, 0.12);
}

.campus-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: inherit;
}

.campus-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.table-campus.muted .campus-value {
    color: var(--text-light);
}

.campus-cell::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    margin: 6px auto 0;
    border-radius: 999px;
    background: rgba(0, 146, 65, 0.15);
}

.campus-cell:not(.campus-lead)::after {
    background: rgba(148, 163, 184, 0.3);
}

.pass-rate-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rate-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pass-rate-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.pass-rate-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 999px;
}

.result-row.hidden {
    display: none;
}

.result-row.show {
    animation: fadeInUp 0.35s ease forwards;
}

@media (max-width: 768px) {
    .results-table-wrapper {
        padding: 20px;
    }

    .results-table {
        min-width: 100%;
    }

    .results-table thead th,
    .results-table td {
        padding: 14px 12px;
        font-size: 0.9rem;
    }

    .rate-value {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .results-filter-container {
        padding: 20px;
    }

    .btn-reset-filters {
        width: 100%;
        justify-content: center;
    }

    .table-year {
        font-size: 1rem;
    }

    .table-class-badge {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.result-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card.hidden {
    display: none;
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.result-year {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-year i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.result-class-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-card-body {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.result-stat:hover {
    background: #e5e7eb;
    transform: translateX(5px);
}

.result-stat.highlight {
    background: linear-gradient(135deg, rgba(0, 146, 65, 0.1) 0%, rgba(0, 146, 65, 0.05) 100%);
    grid-column: 1 / -1;
}

.result-stat.highlight .stat-icon {
    background: var(--primary-color);
    color: var(--white);
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.result-card-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.result-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.result-status.excellent {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.result-status.good {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.result-status.average {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.result-status i {
    font-size: 0.9rem;
}

.no-results-message {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-results-message i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-results-message h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-results-message p {
    font-size: 1rem;
}

/* Results Grid Animation */
.result-card {
    opacity: 1;
}

.result-card.show {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.achievements-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

/* ============================================
   Modern Online Admissions (Register) Page Styles
   ============================================ */

.register-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.register-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.register-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.register-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.register-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.register-hero-title span {
    color: var(--accent-color);
}

.register-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   Login Page Styles
   ============================================ */

.login-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.login-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.login-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.login-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.login-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.login-hero-title span {
    color: var(--accent-color);
}

.login-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.login-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.login-container {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 146, 65, 0.3);
}

.login-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.login-form {
    margin-bottom: 30px;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-left: 4px solid #ef4444;
    color: #991b1b;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    animation: shake 0.5s;
}

.error-message i {
    font-size: 1.2rem;
}

.login-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.login-form label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s;
    font-family: inherit;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 146, 65, 0.1);
}

.login-form input::placeholder {
    color: #9ca3af;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.forgot-password:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-login-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 146, 65, 0.3);
}

.btn-login-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 146, 65, 0.4);
}

.btn-login-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-login-submit i {
    transition: transform 0.3s;
}

.btn-login-submit:hover:not(:disabled) i {
    transform: translateX(5px);
}

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.login-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--text-light);
    position: relative;
    font-size: 0.9rem;
}

.login-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.login-footer p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.login-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.login-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.login-help i {
    color: var(--primary-color);
}

.login-features {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.admission-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-info-box {
    background: rgba(0, 146, 65, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.form-info-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.form-info-box h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-info-box ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.form-info-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.admission-form-modern {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title i {
    color: var(--primary-color);
}

.btn-submit-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

@media (max-width: 968px) {
    .alumni-intro-content,
    .network-content,
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-stats-alumni {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .excellence-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .alumni-hero-title,
    .careers-hero-title,
    .achievements-hero-title,
    .register-hero-title,
    .login-hero-title {
        font-size: 2.5rem;
    }
    
    .alumni-hero-subtitle,
    .careers-hero-subtitle,
    .achievements-hero-subtitle,
    .register-hero-subtitle,
    .login-hero-subtitle {
        font-size: 1.1rem;
    }

    .login-container {
        padding: 35px 25px;
    }

    .login-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .login-header h2 {
        font-size: 1.75rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .alumni-grid-modern,
    .positions-grid,
    .achievements-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .admission-form-modern {
        padding: 35px 25px;
    }
    
    /* App Download Button Responsive */
    .top-header-right {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn-app-download {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    
    .btn-app-download i {
        font-size: 1rem;
    }
    
    .app-download-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .app-download-link i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .top-header-right {
        gap: 8px;
    }
    
    .btn-app-download {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .btn-app-download {
        font-size: 0.75rem;
    }
}
