/* Custom CSS for St. Wilfred's School */

:root {
    --primary-color: #274082;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

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

body {
    font-family: 'Alice', serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ===== TOP HEADER ===== */
.top-header {
    font-size: 0.9rem;
    z-index: 1030;
}

.top-header a {
    transition: opacity 0.3s ease;
}

.top-header a:hover {
    opacity: 0.8;
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    z-index: 1020;
    top: 48px;
}

.navbar-brand h4 {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: url('/uploads/building.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    margin-top: 48px;
    padding: 4rem 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

/* Hero sizing adjustments */
.hero-section .row.min-vh-100 {
    min-height: 55vh !important;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* ===== STATS SECTION ===== */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* ===== CARDS ===== */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1) !important;
}

.card-body {
    padding: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #000066;
    border-color: #000066;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* ===== FACILITIES SECTION ===== */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 1rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-card-front {
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border: 3px solid;
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* Professional theme color for all facility categories */
.flip-card .flip-card-front {
    border-color: var(--primary-color);
    border-width: 3px;
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.flip-card .flip-card-back {
    background: var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.facility-card-front {
    text-align: center;
}

.facility-card-front h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Professional text colors for front cards */
.facility-card-front h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.facility-card-back h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.facility-card-back ul {
    text-align: left;
}

.facility-card-back li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.facility-card-back i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.5rem;
}

/* Legacy facility items (keeping for compatibility) */
.facility-item {
    transition: all 0.3s ease;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 2px solid transparent;
}

.facility-item:nth-child(1) { border-color: var(--primary-color); }
.facility-item:nth-child(2) { border-color: #ff6b35; }
.facility-item:nth-child(3) { border-color: #667eea; }
.facility-item:nth-child(4) { border-color: #28a745; }
.facility-item:nth-child(5) { border-color: #ffc107; }
.facility-item:nth-child(6) { border-color: #17a2b8; }
.facility-item:nth-child(7) { border-color: var(--primary-color); }
.facility-item:nth-child(8) { border-color: #ff6b35; }
.facility-item:nth-child(9) { border-color: #667eea; }
.facility-item:nth-child(10) { border-color: #28a745; }
.facility-item:nth-child(11) { border-color: #ffc107; }
.facility-item:nth-child(12) { border-color: #17a2b8; }
.facility-item:nth-child(13) { border-color: var(--primary-color); }
.facility-item:nth-child(14) { border-color: #ff6b35; }

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    color: white;
}

.facility-item:hover .facility-icon i {
    color: white !important;
}

.facility-icon {
    margin-bottom: 1rem;
}

.facility-item h6 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1a365d);
}

.footer-widget {
    margin-bottom: 1rem;
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.contact-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color) !important;
}

/* ===== MISSION PAGE STYLES ===== */
.mission-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.mission-pillar {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.mission-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    display: inline-block;
    padding: 1.5rem;
    border-radius: 50%;
    background: rgba(39, 64, 130, 0.1);
    transition: all 0.3s ease;
}

.mission-pillar:hover .pillar-icon {
    background: var(--primary-color);
    color: white !important;
}

.mission-pillar h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-pillar p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-goals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.goal-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.goal-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.goal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== ADMISSION PROCEDURE PAGE STYLES ===== */
.admission-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.requirement-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.requirement-icon {
    display: inline-block;
    padding: 1.5rem;
    border-radius: 50%;
    background: rgba(39, 64, 130, 0.1);
    transition: all 0.3s ease;
}

.requirement-card:hover .requirement-icon {
    background: var(--primary-color);
    color: white !important;
}

.requirement-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.requirement-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.legal-requirements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.legal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

.legal-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-step {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.important-notes {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.notes-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.note-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.note-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.note-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.note-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== ADMISSION DETAIL PAGE STYLES ===== */
.class-requirement {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.class-requirement:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.class-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(39, 64, 130, 0.1);
}

.class-header h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.class-header .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.requirement-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.requirement-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.requirement-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== SCHOOL UNIFORM PAGE STYLES ===== */
.uniform-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.uniform-category {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.uniform-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(39, 64, 130, 0.1);
}

.category-header h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-header .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.uniform-details h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.uniform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uniform-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.uniform-list li:last-child {
    border-bottom: none;
}

.accessory-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.accessory-icon {
    margin-bottom: 1.5rem;
}

.accessory-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.accessory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.accessory-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.accessory-list li:last-child {
    border-bottom: none;
}

.uniform-guidelines {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.guidelines-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.guideline-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.guideline-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.guideline-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guideline-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.purchase-info {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.purchase-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.info-icon {
    margin-bottom: 1.5rem;
}

.purchase-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.purchase-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-list li:last-child {
    border-bottom: none;
}

/* ===== FEE STRUCTURE PAGE STYLES ===== */
.fee-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.fee-category {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.fee-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.fee-category .category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(39, 64, 130, 0.1);
}

.fee-category .category-header h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fee-category .category-header .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.fee-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fee-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.fee-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.fee-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.fee-amount {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.charge-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.charge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.charge-icon {
    margin-bottom: 1.5rem;
}

.charge-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.charge-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.charge-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.charge-list li:last-child {
    border-bottom: none;
}

.payment-option {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.payment-icon {
    margin-bottom: 1.5rem;
}

.payment-option h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.payment-option p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.scholarship-info {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.scholarship-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.scholarship-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.scholarship-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.scholarship-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.scholarship-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.scholarship-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== SCHOOL TIMING PAGE STYLES ===== */
.timing-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.timing-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.timing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.timing-card.summer-timing {
    border-left: 4px solid #ffc107;
}

.timing-card.winter-timing {
    border-left: 4px solid #17a2b8;
}

.timing-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.timing-card h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
}

.timing-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.timing-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.timing-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    min-width: 24px;
}

.timing-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.timing-text {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.schedule-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.schedule-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.timeline-time {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.break-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.break-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.break-icon {
    margin-bottom: 1.5rem;
}

.break-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.break-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.break-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.break-list li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.break-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.contact-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== EVALUATION ASSESSMENT PAGE STYLES ===== */
.assessment-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.assessment-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.assessment-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.assessment-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.assessment-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.assessment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assessment-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.assessment-list li:last-child {
    border-bottom: none;
}

.assessment-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.board-assessment-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.board-assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.board-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.board-assessment-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.board-assessment-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.board-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1rem;
    flex-shrink: 0;
    min-width: 16px;
}

.feature-item span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.pre-board-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.pre-board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pre-board-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pre-board-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.pre-board-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pre-board-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.board-exam-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.board-exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.board-exam-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.board-exam-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.board-exam-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.board-exam-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.marksheet-info {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.marksheet-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.marksheet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.marksheet-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.marksheet-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.marksheet-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.marksheet-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.guidelines-info {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.guidelines-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.guideline-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.guideline-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.guideline-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guideline-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== ART & CRAFT PAGE STYLES ===== */
.art-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.art-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.art-card.traditional-art {
    border-left: 4px solid #ffc107;
}

.art-card.paper-craft {
    border-left: 4px solid #17a2b8;
}

.art-card.painting-art {
    border-left: 4px solid #28a745;
}

.art-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.art-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.art-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.art-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.art-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.art-list li:last-child {
    border-bottom: none;
}

.art-list li:before {
    content: "🎨";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.art-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.art-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.art-features .feature-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.art-features .feature-item i {
    font-size: 1rem;
    flex-shrink: 0;
    min-width: 16px;
}

.art-features .feature-item span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.exhibition-info {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.exhibition-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exhibition-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(39, 64, 130, 0.05);
    transition: all 0.3s ease;
}

.exhibition-item:hover {
    background: rgba(39, 64, 130, 0.1);
    transform: translateX(5px);
}

.exhibition-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    min-width: 24px;
}

.exhibition-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.exhibition-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== NOTICE BOARD PAGE STYLES ===== */
.notice-overview {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.notice-board-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.notice-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.notice-item:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.notice-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

.notice-date {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.notice-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.notice-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.notice-actions .btn {
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
}

.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* ===== ICONS ===== */
.fas, .fab {
    transition: transform 0.3s ease;
}

.fas:hover, .fab:hover {
    transform: scale(1.1);
}

/* ===== NOTICE BOARD ===== */
.notice-board-container {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 500px;
}

.notice-board-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.notice-board-header i {
    font-size: 1.2rem;
}

.notice-board-content {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.notice-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.notice-label {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.notice-date {
    color: #6c757d;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.notice-title {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.notice-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Video Sidebar */
.video-sidebar {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 0.5rem;
}

/* Events Sidebar */
.events-sidebar {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.event-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-content {
    padding: 1.5rem;
}

.event-content h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-content p {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.event-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    background-color: var(--primary-color);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.student-avatar {
    margin-right: 1rem;
}

.student-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.student-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.student-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 0.8rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.testimonial-footer {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.testimonial-footer .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.testimonial-stats {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.testimonial-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.testimonial-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.testimonial-stats .stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* ===== APPLICATION SECTION ===== */
.application-container {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.step-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(39, 64, 130, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--primary-color);
    color: white !important;
    transform: scale(1.1);
}

.step-card:hover .step-icon i {
    color: white !important;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.application-cta {
    background: linear-gradient(135deg, var(--primary-color), #1a365d);
    color: white;
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 2rem;
}

.application-cta h3 {
    color: #FFD700 !important;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    font-size: 3rem;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
}

.application-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.application-cta .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.application-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .top-header {
        font-size: 0.8rem;
    }
    
    .top-header .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .event-card {
        min-height: 200px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    /* Notice Board Responsive */
    .notice-board-container {
        max-height: 400px;
    }
    
    .notice-board-content {
        max-height: 300px;
        padding: 1rem;
    }
    
    .notice-item {
        padding: 0.75rem 0;
    }
    
    .events-sidebar {
        margin-top: 2rem;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .video-sidebar {
        margin-top: 2rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .application-container {
        padding: 2rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .application-cta {
        padding: 2rem;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .mission-content {
        padding: 2rem;
    }
    
    .mission-pillar {
        padding: 2rem;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .goal-number {
        align-self: center;
    }
    
    .admission-overview {
        padding: 2rem;
    }
    
    .requirement-card {
        padding: 2rem;
    }
    
    .legal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-icon {
        align-self: center;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .important-notes {
        padding: 2rem;
    }
    
    .note-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .note-item i {
        align-self: center;
    }
    
    .class-requirement {
        padding: 2rem;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .requirement-item i {
        align-self: center;
    }
    
    .uniform-category {
        padding: 2rem;
    }
    
    .accessory-card {
        padding: 1.5rem;
    }
    
    .uniform-guidelines {
        padding: 2rem;
    }
    
    .guideline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .guideline-item i {
        align-self: center;
    }
    
    .purchase-info {
        padding: 2rem;
    }
    
    .fee-category {
        padding: 2rem;
    }
    
    .charge-card {
        padding: 1.5rem;
    }
    
    .payment-option {
        padding: 1.5rem;
    }
    
    .scholarship-info {
        padding: 2rem;
    }
    
    .scholarship-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .scholarship-item i {
        align-self: center;
    }
    
    .timing-card {
        padding: 2rem;
    }
    
    .schedule-card {
        padding: 2rem;
    }
    
    .break-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .timeline-time {
        align-self: center;
    }
    
    .art-card {
        padding: 2rem;
    }
    
    .exhibition-info {
        padding: 2rem;
    }
    
    .exhibition-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .exhibition-item i {
        align-self: center;
    }
    
    .notice-board-container {
        padding: 1.5rem;
        max-height: 500px;
    }
    
    .notice-item {
        padding: 1rem;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .notice-title {
        font-size: 1rem;
    }
    
    .notice-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notice-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .guidelines-info {
        padding: 2rem;
    }
    
    .guideline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .guideline-item i {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* Home Hero */
.home-hero .row.min-vh-100 { min-height: 100vh !important; }
.home-hero { padding: 0; }

@media (max-width: 992px) {
    /* ... existing responsive styles ... */
    .hero-section {
        min-height: 55vh;
    }
    
    /* ... existing responsive styles ... */
}

/* ... existing code ... */

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
    }
    
    /* ... existing responsive styles ... */
}

/* Non-home hero sizing (force smaller height) */
.hero-section:not(.home-hero) {
    min-height: 55vh;
    padding: 4rem 0;
}
.hero-section:not(.home-hero) .row.min-vh-100 {
    min-height: 50vh !important;
}

@media (max-width: 576px) {
    .hero-section:not(.home-hero) {
        min-height: 48vh;
    }
}

/* Ensure vertical centering for non-home hero rows */
.hero-section:not(.home-hero) .row.align-items-center {
    min-height: 55vh;
}
@media (max-width: 576px) {
    .hero-section:not(.home-hero) .row.align-items-center {
        min-height: 48vh;
    }
}