/* ===================================
   Nigerian Secondary School Website
   Custom Stylesheet - style.css
   Brand Colors: Navy Blue (#003366), Orange (#FF6600), White (#FFFFFF)
   =================================== */

/* Root Variables */
:root {
    --navy-blue: #0d3b68;
    --orange: #FF6600;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #555555;
    --border-color: #e0e0e0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   HEADER STYLES
   =================================== */

/* Header Top */
.header-top {
    background: var(--navy-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-social span {
    margin-right: 10px;
    font-weight: 500;
}

.header-top-social a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
}

.header-top-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.header-top-contact ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.header-top-contact ul li {
    margin-left: 20px;
}

.header-top-contact ul li a {
    color: var(--white);
    font-size: 13px;
}

.header-top-contact ul li a i {
    margin-right: 5px;
    color: var(--orange);
}

.header-top-contact ul li a:hover {
    color: var(--orange);
}

/* Main Navigation */
.main-navigation {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navigation .navbar {
    padding: 0;
}

.navbar-brand {
    padding: 15px 0;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 25px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 10px 0;
    margin-top: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 25px;
    color: var(--dark-gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--orange);
    color: var(--white);
    padding-left: 30px;
}

/* Mobile Menu */
.mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-mobile-icon i {
    color: var(--navy-blue);
    font-size: 24px;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.nav-right-link {
    background: none;
    border: none;
    color: var(--navy-blue);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-right-link:hover {
    color: var(--orange);
}

.theme-btn {
    background: var(--orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.theme-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
}

.carousel-item {
    height: 700px;
    position: relative;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.carousel-caption h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--orange);
    display: inline-block;
}

.btn-orange:hover {
    background: var(--navy-blue);
    color: var(--white) !important;
    border-color: var(--orange) !important;
}

.btn-navy {
    background: var(--navy-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--navy-blue);
    display: inline-block;
}

.btn-navy:hover {
    background: var(--orange) !important;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--navy-blue);
    display: inline-block;
}

.btn-outline-navy:hover {
    background: var(--navy-blue);
    color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--orange);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    background: var(--orange);
}

/* ===================================
   PRINCIPAL SECTION
   =================================== */

.principal-section {
    background: var(--white);
}

.principal-image {
    position: relative;
}

.principal-image img {
    border-radius: 10px;
}

.principal-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.principal-badge i {
    font-size: 24px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .subtitle {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    color: var(--navy-blue);
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.principal-content p {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.principal-content .lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
}

.principal-signature {
    background: var(--light-gray);
    padding: 20px;
    border-left: 4px solid var(--orange);
    margin-top: 30px;
}

.principal-signature h5 {
    color: var(--navy-blue);
    font-weight: 700;
}

/* ===================================
   QUICK INFO SECTION
   =================================== */

.quick-info-section {
    background: var(--light-gray);
}

.info-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 36px;
    color: var(--white);
}

.info-card h3 {
    color: var(--navy-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-color);
    font-size: 16px;
    margin: 0;
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background: var(--navy-blue);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--orange);
    transition: left 0.3s ease;
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-links li a:hover::before {
    left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--orange);
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom-links li a:hover {
    color: var(--orange);
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    color: var(--white);
    border: none;
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 20px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 40px 30px;
}

.announcement-content h4 {
    color: var(--navy-blue);
    font-weight: 700;
}

.announcement-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.announcement-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-color);
}

.text-orange {
    color: var(--orange);
}

.text-navy {
    color: var(--navy-blue);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
    .header-top-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .header-top-left,
    .header-top-right {
        margin: 5px 0;
    }
    
    .header-top-contact ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-top-contact ul li {
        margin: 5px 10px;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-right {
        margin-top: 15px;
        margin-left: 0;
        justify-content: center;
    }
    
    .carousel-item {
        height: 500px;
    }
    
    .carousel-caption h1 {
        font-size: 36px;
    }
    
    .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .carousel-caption p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-orange,
    .btn-navy {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .principal-badge {
        position: static;
        margin-top: 15px;
        display: inline-flex;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .header-top {
        font-size: 12px;
    }
    
    .header-top-social a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption h1 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 13px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .info-card h3 {
        font-size: 32px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
}

/* ===================================
   PAGE HEADER STYLES
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange)) !important;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    color: var(--white) !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   OUR STORY SECTION
   =================================== */

.story-images {
    position: relative;
}

.story-image-main {
    position: relative;
}

.story-image-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
}

.story-image-overlay img {
    border: 8px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background: var(--orange);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 5px 0 0 0;
    font-weight: 600;
}

.story-content p {
    margin-bottom: 15px;
}

.story-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.story-features .feature-item i {
    color: var(--orange);
    font-size: 20px;
}

.story-features .feature-item span {
    color: var(--dark-gray);
    font-weight: 500;
}

/* ===================================
   MISSION, VISION & VALUES SECTION
   =================================== */

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: width 0.3s ease;
}

.mission-card::before {
    background: var(--navy-blue);
}

.vision-card::before {
    background: var(--orange);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.mvv-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-card .mvv-icon {
    background: rgba(0, 51, 102, 0.1);
}

.vision-card .mvv-icon {
    background: rgba(255, 102, 0, 0.1);
}

.mvv-icon i {
    font-size: 32px;
}

.mission-card .mvv-icon i {
    color: var(--navy-blue);
}

.vision-card .mvv-icon i {
    color: var(--orange);
}

.mvv-card h3 {
    color: var(--navy-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Core Values Cards */
.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

.value-icon i {
    font-size: 26px;
    color: var(--white);
}

.value-card h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   BOARD OF DIRECTORS SECTION
   =================================== */

.board-member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.board-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.board-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 102, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.board-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-position {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.member-bio {
    color: var(--text-color);
    font-size: 13px;
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--orange);
    object-fit: cover;
}

.testimonial-info h5 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-info p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 16px;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
}

.quote-icon i {
    font-size: 50px;
    color: var(--orange);
}

.testimonial-control-prev,
.testimonial-control-next {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 1;
}

.testimonial-control-prev:hover,
.testimonial-control-next:hover {
    background: var(--navy-blue);
}

.testimonial-indicators {
    position: static;
    margin-top: 30px;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy-blue);
    opacity: 0.3;
}

.testimonial-indicators button.active {
    opacity: 1;
    background: var(--orange);
}

/* ===================================
   PARTNERS SECTION
   =================================== */

.partner-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.category-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 32px;
    color: var(--white);
}

.category-card h4 {
    color: var(--navy-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   CALL TO ACTION SECTION
   =================================== */

.cta-section {
    background: var(--navy-blue);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy-blue);
}

/* Animation Classes */
.animate__delay-1s {
    animation-delay: 0.5s;
}

/* Utility Classes */
.bg-navy {
    background-color: var(--navy-blue);
}

.bg-orange {
    background-color: var(--orange);
}

.text-navy {
    color: var(--navy-blue);
}

.text-orange {
    color: var(--orange);
}

/* ===================================
   CAMPUS TOUR SECTION
   =================================== */

.campus-tour-section {
    background: var(--white);
}

.tour-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-color);
}

.tour-video {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-play-btn:hover {
    background: var(--navy-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.tour-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--navy-blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.feature-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   EVENTS SECTION
   =================================== */

.events-section {
    background: var(--white);
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 25px 20px;
}

.event-content h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-content p i {
    color: var(--orange);
    width: 16px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
/* ===================================
   SIMPLE TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    background: var(--light-gray);
}

.testimonial-simple {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 4px solid var(--orange);
}

.testimonial-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.rating {
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 32px;
    color: var(--orange);
    position: absolute;
    top: -10px;
    left: -5px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.author-info h5 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-color);
    font-size: 13px;
}

/* Remove old testimonial carousel styles and replace with these */
.testimonial-item,
.testimonial-control-prev,
.testimonial-control-next,
.testimonial-indicators {
    display: none;
}

/* ===================================
   NEWS SECTION
   =================================== */

.news-section {
    background: var(--white);
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
}

.news-date span:first-child {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.news-date span:last-child {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.news-content {
    padding: 25px 20px;
}

.news-content h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-color);
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta i {
    color: var(--orange);
    margin-right: 5px;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    background: var(--light-gray);
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 102, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.gallery-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   =================================== */

@media (max-width: 991px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-img {
        margin-bottom: 10px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .feature-card {
        padding: 30px 20px;
    }
    
    .event-card,
    .news-card {
        margin-bottom: 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .tour-badge {
        position: static;
        margin-top: 15px;
        display: inline-flex;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .gallery-item {
        height: 150px;
    }
}

/* ===================================
   FAQ PAGE STYLES
   =================================== */

.faq-section {
    background: var(--white);
}

.faq-search {
    max-width: 500px;
    margin: 0 auto;
}

.faq-search .form-control {
    border: 2px solid var(--border-color);
    border-right: none;
    padding: 12px 20px;
    font-size: 16px;
}

.faq-search .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
}

.faq-search .btn {
    border: 2px solid var(--orange);
    padding: 12px 25px;
}

.faq-category {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-category:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.category-title i {
    color: var(--orange);
}

/* Accordion Styles */
.accordion-button {
    background: var(--light-gray);
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 16px;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--navy-blue);
    color: var(--white);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--orange);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-item:last-of-type {
    margin-bottom: 0;
}

.accordion-body {
    padding: 25px 20px;
    background: var(--white);
    line-height: 1.7;
}

.accordion-body p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.accordion-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.accordion-body strong {
    color: var(--navy-blue);
}

/* FAQ CTA Section */
.faq-cta {
    background: var(--light-gray);
}

.cta-card {
    border-left: 4px solid var(--orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .category-title {
        font-size: 20px;
    }
    
    .accordion-button {
        font-size: 15px;
        padding: 15px;
    }
    
    .accordion-body {
        padding: 20px 15px;
    }
    
    .cta-card {
        padding: 30px 20px !important;
    }
}

@media (max-width: 576px) {
    .faq-search .input-group {
        flex-direction: column;
    }
    
    .faq-search .form-control {
        border-right: 2px solid var(--border-color);
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .faq-search .btn {
        border-left: 2px solid var(--orange);
        border-top: none;
        width: 100%;
    }
}

/* ===================================
   NOTICE BOARD PAGE STYLES
   =================================== */

.notice-board-section {
    background: var(--white);
}

.notice-filters {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.filter-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.form-select, .form-control {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-select:focus, .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Notice Cards */
.notice-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.notice-card.urgent {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff, #ffe6e6);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.notice-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.urgent-badge {
    background: #dc3545;
    color: white;
}

.academic-badge {
    background: var(--navy-blue);
    color: white;
}

.event-badge {
    background: var(--orange);
    color: white;
}

.sports-badge {
    background: #28a745;
    color: white;
}

.pta-badge {
    background: #6f42c1;
    color: white;
}

.general-badge {
    background: #6c757d;
    color: white;
}

.notice-date {
    text-align: center;
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 70px;
}

.notice-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.notice-date .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: 2px;
}

.notice-date .year {
    display: block;
    font-size: 10px;
    color: var(--text-color);
    margin-top: 2px;
}

.notice-content {
    margin-bottom: 15px;
}

.notice-title {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.notice-excerpt {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.notice-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-color);
}

.notice-meta span {
    display: flex;
    align-items: center;
}

.notice-meta i {
    margin-right: 4px;
    opacity: 0.7;
}

.notice-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.notice-category {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-category.academic {
    background: rgba(0, 51, 102, 0.1);
    color: var(--navy-blue);
}

.notice-category.events {
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange);
}

.notice-category.sports {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.notice-category.pta {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.notice-category.general {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Notice Modal Styles */
.notice-modal-content .notice-meta {
    font-size: 14px;
    margin-bottom: 20px;
}

.notice-body h6 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.notice-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.notice-body li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.notice-body strong {
    color: var(--navy-blue);
}

.notice-footer {
    border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .notice-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .notice-date {
        align-self: flex-start;
    }
    
    .notice-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .notice-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .notice-filters .row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .notice-card {
        padding: 20px;
    }
    
    .notice-title {
        font-size: 16px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.filter-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.filter-btn i {
    font-size: 16px;
}

/* Gallery Grid */
.gallery-grid {
    position: relative;
}

.gallery-item {
    transition: all 0.5s ease;
}

.gallery-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(255, 102, 0, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.gallery-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.gallery-info {
    padding: 15px 20px;
}

.gallery-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.gallery-category i {
    font-size: 12px;
}

/* Gallery Stats Section */
.gallery-stats-section {
    background: var(--navy-blue);
    position: relative;
}

.stat-card {
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--orange);
    transform: scale(1.1) rotate(360deg);
}

.stat-icon i {
    font-size: 36px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* GLightbox Customization */
.glightbox-clean .gslide-description {
    background: var(--navy-blue);
}

.glightbox-clean .gdesc-inner {
    padding: 20px;
}

.glightbox-clean .gslide-title {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.glightbox-clean .gslide-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Gallery Styles */
@media (max-width: 991px) {
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-content h4 {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .gallery-content h4 {
        font-size: 16px;
    }
    
    .gallery-content p {
        font-size: 13px;
    }
    
    .gallery-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ===================================
   SCHOOL OFFICIALS PAGE STYLES
   =================================== */

.quick-nav-section {
    border-bottom: 1px solid var(--border-color);
}

.quick-nav .nav-link {
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-nav .nav-link.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.quick-nav .nav-link:not(.active):hover {
    border-color: var(--orange);
    color: var(--orange);
}

.officials-section {
    background: var(--white);
}

/* Official Cards */
.official-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.official-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.official-card.chairman {
    border-top: 5px solid var(--orange);
}

.official-card.vice-chairman {
    border-top: 5px solid var(--navy-blue);
}

.official-card.member {
    border-top: 5px solid var(--border-color);
}

.official-image {
    position: relative;
    margin-bottom: 20px;
}

.official-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-gray);
}

.official-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.official-info h3 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.position {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 5px;
}

.description {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-info i {
    color: var(--orange);
    width: 16px;
}

/* Staff Cards */
.staff-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border-left: 4px solid var(--border-color);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.staff-image {
    position: relative;
    margin-bottom: 15px;
}

.staff-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-gray);
}

.department-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: white;
}

.department-badge.science {
    background: var(--navy-blue);
}

.department-badge.arts {
    background: #6f42c1;
}

.department-badge.commercial {
    background: var(--orange);
}

.department-badge.languages {
    background: #28a745;
}

.staff-info h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.staff-info .position {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.qualification, .subjects {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 5px;
}

.experience {
    color: var(--navy-blue);
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.experience i {
    color: var(--orange);
}

/* Department Filters */
.department-filters {
    margin-bottom: 30px;
}

.btn-filter {
    background: var(--light-gray);
    color: var(--navy-blue);
    border: 2px solid transparent;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter.active, .btn-filter:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* Non-Teaching Staff Cards */
.non-teaching-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.non-teaching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.non-teaching-card.administrative {
    border-left: 4px solid var(--navy-blue);
}

.non-teaching-card.library {
    border-left: 4px solid #6f42c1;
}

.non-teaching-card.it {
    border-left: 4px solid var(--orange);
}

.non-teaching-card.medical {
    border-left: 4px solid #28a745;
}

.non-teaching-card .staff-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-gray);
}

.non-teaching-card .staff-info {
    flex: 1;
}

.non-teaching-card h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.non-teaching-card .department {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact p {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 3px;
}

.contact i {
    color: var(--orange);
    width: 16px;
}

/* Prefect Cards */
.prefect-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.prefect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.prefect-card.head-prefect {
    border-top: 5px solid var(--orange);
}

.prefect-card.senior-prefect {
    border-top: 5px solid var(--navy-blue);
}

.prefect-image {
    position: relative;
    margin-bottom: 15px;
}

.prefect-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-gray);
}

.prefect-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.prefect-info h3, .prefect-info h4 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.prefect-info .class {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 3px;
}

.prefect-info .house {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 10px;
}

.achievements h6 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.achievements ul {
    text-align: left;
    padding-left: 20px;
    margin: 0;
}

.achievements li {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .quick-nav .nav-link {
        padding: 10px 15px;
        font-size: 14px;
        margin: 2px;
    }
    
    .official-card, .staff-card, .prefect-card {
        padding: 20px;
    }
    
    .non-teaching-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-filter {
        padding: 8px 15px;
        font-size: 14px;
        margin: 3px;
    }
    
    .official-image img, .staff-image img, .prefect-image img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .quick-nav .nav-pills {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-nav .nav-link {
        margin: 0;
    }
    
    .department-filters .filter-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-filter {
        width: 100%;
        margin: 0;
    }
}

/* ===================================
   NEWSLETTERS PAGE STYLES
   =================================== */

.newsletters-section {
    background: var(--white);
}

.newsletter-filters {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.filter-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Session Sections */
.session-section {
    margin-bottom: 50px;
}

.session-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.session-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.session-title i {
    color: var(--orange);
}

/* Newsletter Cards */
.newsletter-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.newsletter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.newsletter-card.featured {
    border: 2px solid var(--orange);
}

.newsletter-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.newsletter-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsletter-card:hover .newsletter-image img {
    transform: scale(1.1);
}

.newsletter-content {
    padding: 25px 20px;
}

.newsletter-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.term-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.term-badge.first-term {
    background: rgba(0, 51, 102, 0.1);
    color: var(--navy-blue);
}

.term-badge.second-term {
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange);
}

.term-badge.third-term {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.date {
    color: var(--text-color);
    font-size: 12px;
}

.newsletter-title {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.newsletter-excerpt {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-color);
}

.newsletter-stats span {
    display: flex;
    align-items: center;
}

.newsletter-stats i {
    margin-right: 4px;
    opacity: 0.7;
}

.newsletter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-actions .btn {
    font-size: 13px;
    padding: 6px 12px;
}

/* Archive List */
.archive-list {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-item:hover {
    background: var(--white);
}

.archive-content h5 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.archive-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.archive-meta .badge {
    font-size: 10px;
    padding: 4px 8px;
}

.archive-actions .btn {
    font-size: 12px;
    padding: 5px 10px;
}

/* Subscription Section */
.subscription-card {
    border-left: 4px solid var(--orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subscription-form .form-control {
    border: 2px solid var(--border-color);
    padding: 12px 15px;
    font-size: 14px;
}

.subscription-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .newsletter-filters .row {
        flex-direction: column;
    }
    
    .newsletter-card {
        margin-bottom: 20px;
    }
    
    .archive-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .archive-actions {
        align-self: flex-end;
    }
    
    .newsletter-actions {
        flex-direction: column;
    }
    
    .newsletter-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-content {
        padding: 20px 15px;
    }
    
    .newsletter-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .newsletter-stats {
        flex-direction: column;
        gap: 5px;
    }
    
    .subscription-card {
        padding: 25px 20px !important;
    }
    
    .subscription-form .row {
        flex-direction: column;
    }
}

/* ===================================
   TESTIMONIALS PAGE STYLES
   =================================== */

.testimonials-page-section {
    background: var(--white);
}

/* Statistics Cards */
.testimonials-stats {
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--orange);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    color: var(--navy-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

/* Testimonials Filters */
.testimonials-filters {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.filter-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.form-select, .form-control {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-select:focus, .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.parent-testimonial {
    border-left: 4px solid var(--navy-blue);
}

.student-testimonial {
    border-left: 4px solid var(--orange);
}

.alumni-testimonial {
    border-left: 4px solid #28a745;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h5 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-role {
    color: var(--text-color);
    font-size: 13px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 14px;
}

.rating-text {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 32px;
    color: var(--orange);
    position: absolute;
    top: -15px;
    left: -10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-date {
    color: var(--text-color);
    font-size: 12px;
}

.testimonial-type.badge {
    font-size: 10px;
    padding: 4px 8px;
}

.parent-badge {
    background: var(--navy-blue);
}

.student-badge {
    background: var(--orange);
}

.alumni-badge {
    background: #28a745;
}

.testimonial-actions .btn-like {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.btn-like:hover {
    background: var(--light-gray);
    color: var(--navy-blue);
}

.btn-like.liked {
    color: var(--orange);
}

.btn-like.liked i {
    color: var(--orange);
}

/* Submit Testimonial Section */
.submit-testimonial-section {
    background: var(--light-gray);
}

.testimonial-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-form .form-group {
    margin-bottom: 20px;
}

.testimonial-form label {
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.rating-input {
    margin-top: 10px;
}

.rating-input .stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #FFB800;
}

.rating-input label.active {
    color: #FFB800;
}

.rating-text {
    color: var(--text-color);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.testimonial-form textarea {
    resize: vertical;
    min-height: 120px;
}

.testimonial-form .form-check-label {
    font-size: 14px;
    color: var(--text-color);
}

.testimonial-form .btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .testimonial-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .testimonials-filters .row {
        flex-direction: column;
    }
    
    .testimonial-form-card {
        padding: 25px 20px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .rating-input .stars {
        justify-content: center;
    }
    
    .testimonials-stats .row {
        gap: 15px;
    }
    
    .testimonials-stats .col-6 {
        flex: 0 0 calc(50% - 15px);
    }
}

/* ===================================
   EXTRACURRICULAR ACTIVITIES STYLES
   =================================== */

.activities-overview {
    background: var(--white);
}

.activities-stats {
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--orange);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    color: var(--navy-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

/* Activities Navigation */
.activities-nav {
    border-bottom: 1px solid var(--border-color);
}

.activities-categories .nav-link {
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.activities-categories .nav-link.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.activities-categories .nav-link:not(.active):hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Activities Content */
.activities-content {
    background: var(--white);
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-description {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Activity Cards */
.activity-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activity-card.sports {
    border-left: 4px solid var(--orange);
}

.activity-card.arts {
    border-left: 4px solid #6f42c1;
}

.activity-card.academic {
    border-left: 4px solid var(--navy-blue);
}

.activity-card.leadership {
    border-left: 4px solid #28a745;
}

.activity-card.community {
    border-left: 4px solid #17a2b8;
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--navy-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.activity-content {
    padding: 25px 20px;
}

.activity-title {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.activity-description {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.activity-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 13px;
}

.detail-item i {
    color: var(--orange);
    width: 16px;
    text-align: center;
}

.activity-coach {
    color: var(--navy-blue);
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 6px;
}

.activity-achievements {
    margin-bottom: 20px;
}

.activity-achievements h6 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.activity-achievements ul {
    margin: 0;
    padding-left: 18px;
}

.activity-achievements li {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 4px;
}

.activity-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.activity-actions .btn {
    font-size: 13px;
    padding: 8px 16px;
}

/* Events Section */
.activities-events {
    background: var(--light-gray);
}

.event-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: var(--orange);
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
}

.event-content h5 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-content p {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.event-time {
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
}

/* Join Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    color: var(--white);
    border: none;
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 20px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
}

.form-label {
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.form-check-label {
    font-size: 14px;
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .activities-categories .nav-pills {
        flex-direction: column;
        gap: 10px;
    }
    
    .activities-categories .nav-link {
        margin: 0;
        text-align: center;
    }
    
    .activity-card {
        margin-bottom: 20px;
    }
    
    .activity-actions {
        flex-direction: column;
    }
    
    .activity-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .category-title {
        font-size: 24px;
    }
    
    .category-description {
        font-size: 16px;
    }
    
    .activity-content {
        padding: 20px 15px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .activities-stats .row {
        gap: 15px;
    }
    
    .activities-stats .col-6 {
        flex: 0 0 calc(50% - 15px);
    }
}

/* ===================================
   TERMS & PRIVACY PAGE STYLES
   =================================== */

.legal-nav {
    border-bottom: 1px solid var(--border-color);
}

.legal-nav .nav-link {
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.legal-nav .nav-link.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.legal-nav .nav-link:not(.active):hover {
    border-color: var(--orange);
    color: var(--orange);
}

.legal-content-section {
    background: var(--white);
}

.legal-content {
    line-height: 1.8;
    color: var(--text-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--navy-blue);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section h3 {
    color: var(--navy-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.legal-section h4 {
    color: var(--navy-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-section h5 {
    color: var(--navy-blue);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.policy-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.policy-list strong {
    color: var(--navy-blue);
}

.last-updated {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.contact-info-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--navy-blue);
    margin-top: 1.5rem;
}

.contact-info-box h4,
.contact-info-box h5 {
    margin-top: 0;
}

.contact-info-box ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.quick-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.action-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.action-card h5 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
}

.action-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Print Styles */
@media print {
    .header,
    .page-header,
    .legal-nav,
    .quick-actions,
    .footer {
        display: none !important;
    }
    
    .legal-content-section {
        padding: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .last-updated {
        background: #f8f9fa !important;
        border: 1px solid #dee2e6;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .legal-nav .nav-pills {
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-nav .nav-link {
        margin: 0;
        text-align: center;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-box {
        padding: 1rem;
    }
    
    .quick-actions .row {
        gap: 15px;
    }
    
    .quick-actions .col-md-6 {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .policy-list {
        padding-left: 1rem;
    }
    
    .last-updated {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .action-card {
        padding: 1.5rem !important;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Info Cards */
.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--navy-blue), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-icon i {
    font-size: 36px;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--navy-blue);
    gap: 12px;
}

/* Contact Form Section */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form label i {
    color: var(--orange);
    font-size: 14px;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.contact-form .form-check-label {
    color: var(--text-color);
    font-size: 14px;
}

.contact-form .form-check-label a {
    color: var(--orange);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Map and Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.opening-hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.opening-hours-card h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opening-hours-card h4 i {
    color: var(--orange);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.hours-item.closed {
    border-left-color: #dc3545;
}

.hours-item .day {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
}

.hours-item .time {
    color: var(--text-color);
    font-size: 14px;
}

.hours-item.closed .time {
    color: #dc3545;
    font-weight: 600;
}

/* Social Connect Card */
.social-connect-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.social-connect-card h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-connect-card h4 i {
    color: var(--orange);
}

.social-connect-card p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 16px;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Department Cards */
.department-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dept-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.department-card:hover .dept-icon {
    transform: scale(1.1) rotate(360deg);
}

.dept-icon i {
    font-size: 32px;
    color: var(--white);
}

.department-card h5 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dept-contact {
    color: var(--text-color);
    font-size: 14px;
    line-height: 2;
    margin: 0;
}

.dept-contact i {
    color: var(--orange);
    margin-right: 5px;
    width: 18px;
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button {
    background: var(--white);
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--orange);
    color: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 20px 25px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    background: var(--white);
}

/* Responsive Contact Styles */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .contact-sidebar {
        position: static;
    }
    
    .opening-hours-card,
    .social-connect-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 30px;
    }
    
    .department-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .dept-icon {
        width: 60px;
        height: 60px;
    }
    
    .dept-icon i {
        font-size: 28px;
    }
}

/* ===================================
   ACADEMICS PAGE STYLES
   =================================== */

/* Academic Features */
.academic-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.academic-features .feature-item i {
    color: var(--orange);
    font-size: 22px;
}

.academic-features .feature-item span {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
}

/* Academic Stats */
.academic-stats {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.stat-box {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

/* Class Cards */
.class-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.class-card.featured {
    border: 3px solid var(--orange);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.class-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    padding: 35px 25px;
    text-align: center;
    color: var(--white);
}

.class-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.class-icon i {
    font-size: 32px;
}

.class-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.class-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.class-body {
    padding: 30px 25px;
}

.class-description {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 20px;
}

.subject-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subject-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subject-list li:last-child {
    border-bottom: none;
}

.subject-list li i {
    color: var(--orange);
    font-size: 14px;
}

/* Department Boxes */
.department-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.department-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dept-header {
    text-align: center;
    margin-bottom: 20px;
}

.dept-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.department-box:hover .dept-icon-large {
    transform: scale(1.1) rotate(360deg);
}

.dept-icon-large i {
    font-size: 40px;
    color: var(--white);
}

.dept-header h3 {
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.department-box > p {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 25px;
}

.dept-subjects h5,
.dept-careers h5 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.subject-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.subject-tag {
    background: var(--light-gray);
    color: var(--navy-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.subject-tag:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.dept-careers p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

/* Program Cards */
.program-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-card i {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.program-card:hover i {
    transform: scale(1.2);
    color: var(--navy-blue);
}

.program-card h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   ADMISSIONS PAGE STYLES
   =================================== */

/* Admission Status Banner */
.admission-status-banner {
    background: var(--orange);
    position: relative;
    overflow: hidden;
}

.admission-status-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.status-badge i {
    font-size: 18px;
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.pulse-button {
    transition: transform 0.2s ease;
}

/* Admission Highlights */
.admission-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.highlight-item i {
    font-size: 28px;
    color: var(--orange);
    flex-shrink: 0;
}

.highlight-item h5 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

.admission-image {
    position: relative;
}

.admission-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--orange);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.admission-badge i {
    font-size: 36px;
    margin-bottom: 10px;
}

.admission-badge h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.admission-badge p {
    font-size: 14px;
    margin: 0;
}

/* Requirement Cards */
.requirement-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.requirement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--orange);
}

.requirement-header i {
    font-size: 36px;
    color: var(--orange);
}

.requirement-header h3 {
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.requirement-list li {
    padding: 12px 0;
    color: var(--dark-gray);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirement-list li i {
    color: var(--orange);
    font-size: 18px;
}

.requirement-note {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirement-note i {
    color: var(--orange);
    font-size: 20px;
}

.requirement-note p {
    color: var(--navy-blue);
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 0 0 0 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.process-step.last {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    position: absolute;
    left: -60px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    z-index: 1;
}

.process-step.last .step-number {
    background: #28a745;
}

.step-content {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.step-content h4 {
    color: var(--navy-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 12px;
}

.step-link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.step-link:hover {
    color: var(--navy-blue);
}

.step-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--navy-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.step-badge.success {
    background: #d4edda;
    color: #155724;
}

/* Date Cards */
.date-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.date-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.date-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.date-icon i {
    font-size: 32px;
    color: var(--white);
}

.date-card h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.date-card .date {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.upcoming {
    background: #fff3cd;
    color: #856404;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* Fees & Scholarship Cards */
.fees-card,
.scholarship-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.fee-table {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row.highlight {
    background: rgba(255, 102, 0, 0.1);
}

.fee-label {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
}

.fee-amount {
    color: var(--orange);
    font-weight: 700;
    font-size: 18px;
}

.fee-note h5,
.payment-options h5 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-note i,
.payment-options i {
    color: var(--orange);
}

.fee-note ul,
.payment-options ul {
    padding-left: 20px;
    margin: 0;
}

.fee-note li,
.payment-options li {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Scholarship Types */
.scholarship-type {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
}

.scholarship-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scholarship-icon i {
    font-size: 28px;
    color: var(--white);
}

.scholarship-content h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.scholarship-content p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.scholarship-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .process-timeline {
        padding: 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        position: static;
        margin-bottom: 15px;
    }
    
    .process-step {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .admission-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .fees-card,
    .scholarship-card {
        padding: 25px 20px;
    }
}
/* ===================================
   EVENTS PAGE STYLES
   =================================== */

/* Event Filter Section */
.event-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.event-filter-btn {
    background: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-filter-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    transform: translateY(-2px);
}

.event-filter-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* Featured Event Card */
.featured-event-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--navy-blue), var(--orange));
}

.featured-event-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.featured-event-image img {
    transition: transform 0.5s ease;
}

.featured-event-card:hover .featured-event-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.featured-event-content h2 {
    color: var(--navy-blue);
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0 15px 0;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.meta-item i {
    color: var(--orange);
    font-size: 16px;
}

.featured-event-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Event Category Tags */
.event-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.event-category-tag.sports {
    background: rgba(255, 193, 7, 0.2);
    color: #f57c00;
}

.event-category-tag.academic {
    background: rgba(0, 51, 102, 0.1);
    color: var(--navy-blue);
}

.event-category-tag.cultural {
    background: rgba(156, 39, 176, 0.1);
    color: #7b1fa2;
}

/* Event Cards */
.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    width: 60px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-date-badge .day {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.event-date-badge .month {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
}

.event-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-status.upcoming {
    background: #4caf50;
    color: var(--white);
}

.event-status.past {
    background: #9e9e9e;
    color: var(--white);
}

.event-content {
    padding: 25px;
}

.event-content h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 12px 0;
    min-height: 50px;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 13px;
}

.info-item i {
    color: var(--orange);
    width: 16px;
}

.event-content p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-read-more:hover {
    background: var(--orange);
    color: var(--white);
}

/* Event Modal Styles */
.event-modal-content {
    padding: 10px;
}

.event-modal-header h3 {
    color: var(--navy-blue);
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
}

.event-modal-meta {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.event-modal-meta .meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-gray);
}

.event-modal-meta .meta-item i {
    color: var(--orange);
    margin-top: 3px;
}

.event-modal-meta .meta-item strong {
    color: var(--navy-blue);
}

.event-modal-meta .meta-item a {
    color: var(--orange);
    text-decoration: none;
}

.event-modal-meta .meta-item a:hover {
    text-decoration: underline;
}

.event-modal-description {
    margin: 25px 0;
}

.event-modal-description .lead {
    font-size: 17px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.event-modal-description h5 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px 0;
}

.event-modal-description ul,
.event-modal-description ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.event-modal-description li {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.8;
}

.event-modal-description table {
    margin: 20px 0;
}

.event-modal-description table th {
    background: var(--navy-blue);
    color: var(--white);
    padding: 12px;
}

.event-modal-description table td {
    padding: 10px 12px;
}

.event-modal-footer {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    margin-top: 30px;
}

.event-modal-footer .btn {
    flex: 1;
}

/* Modal Customization */
#eventModal .modal-content {
    border: none;
    border-radius: 15px;
}

#eventModal .modal-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    color: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

#eventModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#eventModal .modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-event-card {
        padding: 30px 25px;
    }
    
    .featured-event-content h2 {
        font-size: 26px;
    }
    
    .event-meta {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .event-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .featured-event-card {
        padding: 20px;
    }
    
    .featured-event-content h2 {
        font-size: 22px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-modal-footer {
        flex-direction: column;
    }
    
    .event-modal-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
/* ===================================
   CAREERS PAGE STYLES
   =================================== */

.careers-overview {
    background: var(--white);
}

.career-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 10px;
}

.feature-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: var(--navy-blue);
}

.careers-image {
    position: relative;
}

.careers-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Job Openings */
.job-filters {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.filter-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.form-select, .form-control {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-select:focus, .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Job Cards */
.job-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.category-title i {
    color: var(--orange);
}

.job-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: var(--orange);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.job-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-badge.full-time {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.job-badge.part-time {
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange);
}

.job-badge.contract {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.detail-item i {
    color: var(--orange);
    width: 16px;
    text-align: center;
}

.job-description {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-requirements {
    margin-bottom: 20px;
}

.job-requirements h6 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.job-requirements ul {
    margin: 0;
    padding-left: 18px;
}

.job-requirements li {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.5;
}

.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-actions .btn {
    font-size: 13px;
    padding: 8px 16px;
}

/* ===================================
   APPLICATION PROCESS STYLES
   =================================== */

.application-process {
    background: var(--white);
    position: relative;
}

.application-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--orange);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: var(--navy-blue);
}

.step-icon i {
    font-size: 40px;
    color: var(--white);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
}

.process-step h5 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.process-step:hover h5 {
    color: var(--orange);
}

.process-step p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.process-step:hover p {
    color: var(--dark-gray);
}

/* Animation for step icons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.process-step:nth-child(1) .step-icon {
    animation: pulse 2s infinite 0.5s;
}

.process-step:nth-child(2) .step-icon {
    animation: pulse 2s infinite 1s;
}

.process-step:nth-child(3) .step-icon {
    animation: pulse 2s infinite 1.5s;
}

.process-step:nth-child(4) .step-icon {
    animation: pulse 2s infinite 2s;
}

/* Responsive Styles for Application Process */
@media (max-width: 992px) {
    .application-process::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 30px;
        padding: 35px 20px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
    }
    
    .step-icon i {
        font-size: 36px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .process-step {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .step-icon i {
        font-size: 32px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: -6px;
        right: -6px;
    }
    
    .process-step h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .process-step p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .application-process .row {
        gap: 20px;
    }
    
    .application-process .col-lg-3 {
        flex: 0 0 100%;
    }
    
    .process-step {
        padding: 25px 20px;
        margin-bottom: 0;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
    
    .step-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
        top: -5px;
        right: -5px;
    }
}

/* Alternative layout for mobile */
@media (max-width: 768px) {
    .application-process .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        max-width: 400px;
        width: 100%;
    }
    
    .step-icon {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    
    .process-step-content {
        flex: 1;
    }
    
    .process-step h5 {
        margin-bottom: 8px;
    }
}

/* Print Styles */
@media print {
    .application-process::before {
        display: none;
    }
    
    .process-step {
        border: 1px solid var(--border-color);
        box-shadow: none;
        break-inside: avoid;
    }
    
    .step-icon {
        background: var(--navy-blue) !important;
    }
    
    .step-number {
        background: var(--orange) !important;
    }
}

/* Benefits Section */
.benefit-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: var(--white);
}

.benefit-card h5 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Application Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--orange));
    color: var(--white);
    border: none;
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 20px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.application-info {
    border-left: 4px solid var(--orange);
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-blue);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.form-text {
    font-size: 12px;
    color: var(--text-color);
}

.form-check-label {
    font-size: 14px;
    color: var(--text-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
}

/* No Jobs Message */
.no-jobs {
    padding: 60px 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .job-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .job-filters .row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .category-title {
        font-size: 20px;
    }
    
    .job-card {
        padding: 20px 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .application-process .row,
    .why-work-with-us .row {
        gap: 15px;
    }
    
    .application-process .col-lg-3,
    .why-work-with-us .col-lg-4 {
        flex: 0 0 100%;
    }
}

 /* Custom Styles for Admission Portal */
        .admission-portal {
            background: #f8f9fa;
        }

        .form-progress {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }

        .progress-step::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #dee2e6;
            z-index: 1;
        }

        .progress-step:last-child::after {
            display: none;
        }

        .progress-step.active::after {
            background: #003366;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #dee2e6;
            color: #6c757d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }

        .progress-step.active .step-number {
            background: #003366;
            color: white;
        }

        .step-label {
            font-size: 0.875rem;
            color: #6c757d;
            text-align: center;
        }

        .progress-step.active .step-label {
            color: #003366;
            font-weight: 600;
        }

        .form-section {
            display: none;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        .form-section.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #003366;
        }

        .section-header i {
            font-size: 2rem;
            color: #003366;
            margin-right: 1rem;
        }

        .section-header h3 {
            color: #003366;
            margin: 0;
        }

        .required-star {
            color: #dc3545;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 0.5rem;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #dee2e6;
        }

        .btn-prev, .btn-next, .btn-submit {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-prev {
            background: #6c757d;
            color: white;
        }

        .btn-prev:hover {
            background: #5a6268;
        }

        .btn-next, .btn-submit {
            background: #003366;
            color: white;
        }

        .btn-next:hover, .btn-submit:hover {
            background: #002244;
            transform: translateY(-2px);
        }

        .student-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #003366;
            padding: 3px;
        }

        .passport-upload {
            text-align: center;
            padding: 2rem;
            border: 2px dashed #dee2e6;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .passport-upload:hover {
            border-color: #003366;
        }

        .file-upload-info {
            font-size: 0.875rem;
        }

        .file-size {
            font-weight: 600;
            color: #003366;
        }

        .declaration-content {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #003366;
        }

        .text-navy {
            color: #003366;
        }

        .is-invalid {
            border-color: #dc3545;
        }

        .is-valid {
            border-color: #198754;
        }

        .password-toggle {
            color: #6c757d;
        }

        .password-toggle:hover {
            color: #003366;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .form-progress {
                flex-direction: column;
                gap: 1rem;
            }

            .progress-step::after {
                display: none;
            }

            .form-navigation {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-prev, .btn-next, .btn-submit {
                width: 100%;
            }

            .section-header {
                flex-direction: column;
                text-align: center;
            }

            .section-header i {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        /* Loading animation */
        .fa-spinner {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Success message animation */
        .alert-success {
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .legal-content {
            line-height: 1.8;
        }
        
        .legal-section {
            margin-bottom: 3rem;
        }
        
        .legal-section h2 {
            color: var(--navy-blue);
            border-bottom: 2px solid var(--orange);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .legal-section h3 {
            color: var(--navy-blue);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .policy-list {
            padding-left: 1.5rem;
        }
        
        .policy-list li {
            margin-bottom: 0.8rem;
        }
        
        .last-updated {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--orange);
            margin-bottom: 2rem;
        }
        
        .contact-info-box {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--navy-blue);
        }

        /* Event Page Styles */
.page-header-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a365d 100%);
}

.page-header-image img {
    opacity: 0.8;
}

/* Event Card Horizontal */
.event-card-horizontal {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.event-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    text-align: center;
    padding: 8px 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    line-height: 1;
}

.event-category .badge {
    font-size: 0.7rem;
    padding: 5px 10px;
}

.event-meta p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #666;
}

/* Event Filter */
.event-filter .btn {
    border-radius: 30px;
    margin: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.event-filter .btn.active {
    background-color: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* Sidebar Widgets */
.sidebar-widget {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-header {
    border-bottom: none;
}

.widget-content {
    border-top: none;
}

.upcoming-event-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.event-date-small {
    min-width: 50px;
}

.date-day {
    font-weight: 700;
    font-size: 0.9rem;
}

.date-month {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy);
}

.event-info h6 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.event-info p {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: #666;
}

.event-info a {
    font-size: 0.8rem;
}

/* Event Subscription Form */
.event-subscription-form .form-control {
    border-radius: 30px;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.event-subscription-form .btn {
    border-radius: 30px;
    padding: 10px 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, #e67e22 100%);
}

/* Pagination */
.pagination .page-link {
    color: var(--navy);
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: var(--navy);
    border-color: var(--navy);
}

.pagination .page-link:hover {
    color: var(--orange);
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-card-horizontal .row {
        flex-direction: column;
    }
    
    .event-card-horizontal .col-md-4 {
        height: 200px;
    }
    
    .event-filter .btn-group {
        display: flex;
        flex-wrap: wrap;
    }
    
    .event-filter .btn {
        margin-bottom: 5px;
    }
}

/* Event Details Page Styles */
.event-header .event-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 2.5rem;
}

.event-meta .meta-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid #e9ecef;
}

.event-image-main img {
    transition: transform 0.3s ease;
}

.event-image-main img:hover {
    transform: scale(1.01);
}

.section-title {
    color: var(--navy);
    font-weight: 600;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.description-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.description-content h5 {
    color: var(--navy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.description-content ul {
    padding-left: 1.5rem;
}

.description-content ul li {
    margin-bottom: 0.5rem;
}

.objective-item {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    border-radius: 3px;
}

.schedule-item {
    position: relative;
}

.schedule-time {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.schedule-activity {
    border-left: 3px solid var(--orange) !important;
}

.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-overlay {
    transition: opacity 0.3s ease;
}

.gallery-overlay:hover {
    opacity: 1 !important;
}

/* Sidebar Widget Enhancements */
.sidebar-widget .info-item,
.sidebar-widget .contact-item {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-widget .info-item:last-child,
.sidebar-widget .contact-item:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--orange);
}

.registration-progress .progress {
    border-radius: 10px;
}

/* Modal Styles */
.modal-header {
    border-bottom: 2px solid var(--orange);
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25);
}

/* Print Styles */
@media print {
    .page-header-section,
    .sidebar-widget,
    .btn,
    .modal,
    .navbar,
    .footer {
        display: none !important;
    }
    
    .event-details-section {
        padding: 0 !important;
    }
    
    .event-header,
    .event-description,
    .event-objectives,
    .event-schedule {
        break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-title {
        font-size: 2rem !important;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .meta-item {
        width: 100%;
        text-align: center;
    }
    
    .schedule-timeline::before {
        left: 45px;
    }
    
    .schedule-time {
        min-width: 80px !important;
        font-size: 0.8rem;
    }
    
    .objective-item {
        margin-bottom: 10px;
    }
}

.transition-all {
    transition: all 0.3s ease;
}

/* Blog Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a365d 100%);
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    line-height: 1.2;
}

.blog-date span:first-child {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-date span:last-child {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-categories .badge {
    font-size: 0.7rem;
    margin-right: 5px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Sidebar Styles */
.sidebar-widget .card {
    transition: transform 0.3s ease;
}

.sidebar-widget .card:hover {
    transform: translateY(-3px);
}

.recent-post {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.tag:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    text-decoration: none;
}

/* Blog Details Styles */
.featured-image {
    position: relative;
}

.blog-date-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    line-height: 1.2;
}

.blog-date-large span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.blog-date-large span:last-child {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

.blog-meta-details {
    font-size: 0.9rem;
    color: #6c757d;
}

.quote-block {
    position: relative;
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid var(--orange);
    border-radius: 0 8px 8px 0;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--orange);
    opacity: 0.2;
    font-size: 3rem;
}

.quote-block .blockquote {
    margin: 0;
    padding-left: 40px;
}

.blog-tags {
    border-top: 1px solid #dee2e6;
}

/* Share Buttons */
.btn-facebook {
    background: #3b5998;
    color: white;
}

.btn-twitter {
    background: #1da1f2;
    color: white;
}

.btn-linkedin {
    background: #0077b5;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-facebook:hover,
.btn-twitter:hover,
.btn-linkedin:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
    color: white;
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
}

/* Comments Section */
.comment-card {
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: translateX(5px);
}

.comment-actions .btn {
    font-size: 0.8rem;
}

/* Comment Form */
.comment-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25);
}

/* Pagination */
.page-link {
    color: var(--navy);
    border: 1px solid #dee2e6;
}

.page-link:hover {
    color: var(--orange);
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: var(--orange);
    border-color: var(--orange);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-card .row {
        flex-direction: column;
    }
    
    .blog-card .col-md-4 {
        width: 100%;
    }
    
    .blog-date-large {
        top: 10px;
        left: 10px;
        padding: 10px;
    }
    
    .blog-date-large span:first-child {
        font-size: 1.5rem;
    }
    
    .blog-date-large span:last-child {
        font-size: 0.8rem;
    }
    
    .share-buttons .d-flex {
        flex-wrap: wrap;
    }
}