/* Variables */
:root {
    --primary: #8b0000;
    --primary-dark: #600000;
    --primary-rgb: 139, 0, 0;
    --accent: #f3c993;
    --text-dark: #333;
    --text-light: #777;
    --white: #fff;
    --light-gray: #f5f5f5;
    --light-bg: #f8f9fa;
    --success: #28a745;
    --error: #dc3545;
    --dark: #222;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8d2020 !important;
    transition: box-shadow 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-right: 10px;
}

.school-name h1 {
    color: #f3c993;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.school-name p {
    color: #ffffff;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links li a {
    color: #f3c993;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffffff;
}

.login-button {
    background-color: #f3c993;
    color: #8d2020;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #ffffff;
    color: #8d2020;
}

/* Menu toggle for mobile */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #f3c993;
}

/* Add header shadow when scrolled */
.header-scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 2rem;
    background-color: #8d2020 !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 5;
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 80%;
    max-width: 900px;
    padding: 2rem;
    border-radius: 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0 auto;
    font-size: 1.1rem;
    border: 2px solid transparent;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
    transform: translateY(-3px);
}

.hero-text-wrapper {
    padding: 2rem;
    border-radius: 10px;
}

.hero-button-container {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

/* Who We Are Section */
.who-we-are {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    text-align: center;
    font-weight: 700;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.who-we-are-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--accent);
    transition: var(--transition);
    animation: fadeInUp 1s ease;
}

.who-we-are-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.who-we-are-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Messages Section */
.messages-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.message-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.message-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.message-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    position: relative;
}

.message-header h3 {
    font-size: 1.4rem;
    margin: 0;
    text-align: center;
}

.message-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.message-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.message-content p:first-child {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.message-content p:nth-child(2) {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.message-content p:nth-child(3) {
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
    text-align: justify;
}

.message-signature {
    padding: 1rem 1.5rem;
    text-align: right;
    font-style: italic;
    border-top: 1px solid #f0f0f0;
}

.director-card {
    margin-bottom: 2rem;
}

.full-width {
    grid-column: 1 / -1;
}

@media screen and (max-width: 768px) {
    .message-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .message-header h3 {
        font-size: 1.2rem;
    }
    
    .message-content p:first-child {
        font-size: 1.1rem;
    }
}

.principal-card {
    animation-delay: 0.2s;
}

.director-card {
    animation-delay: 0.4s;
}

/* School Events Section */
.school-events {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.school-events::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, rgba(var(--primary-rgb), 0.2) 70%, transparent 100%);
    opacity: 0.5;
    z-index: 0;
}

.events-container {
    position: relative;
    z-index: 1;
}

/* Event filters */
.event-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    gap: 0.5rem;
}

.event-filter-btn {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.event-filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.event-filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

/* Event cards grid */
.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background-color: rgba(141, 32, 32, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.event-icon-container i {
    font-size: 4rem;
    color: #8d2020;
    transition: all 0.3s ease;
}

.event-card:hover .event-icon-container {
    background-color: #f0f0f0;
}

.event-card:hover .event-icon-container i {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.event-date-day {
    font-size: 1.5rem;
    margin-bottom: 0.1rem;
}

.event-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
    font-weight: 600;
    line-height: 1.3;
}

.event-card-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 0.9rem;
}

.event-card-location i {
    color: var(--primary);
    font-size: 1rem;
}

.event-card-description {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.event-card-description.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    color: var(--primary);
    background: transparent;
    border: none;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

.read-more-btn:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.event-badge {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Staggered animation delays */
.event-card:nth-child(1) {
    animation-delay: 0.1s;
}

.event-card:nth-child(2) {
    animation-delay: 0.2s;
}

.event-card:nth-child(3) {
    animation-delay: 0.3s;
}

.event-card:nth-child(4) {
    animation-delay: 0.4s;
}

.event-card:nth-child(5) {
    animation-delay: 0.5s;
}

.event-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive design */
@media screen and (max-width: 1024px) {
    .event-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .event-filters {
        gap: 0.4rem;
        margin-bottom: 2rem;
    }
    
    .event-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .event-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .event-filters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .event-filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .event-card-image {
        height: 180px;
    }
    
    .event-card-title {
        font-size: 1.2rem;
    }
}

/* Updated Admission Section with Fee Structure */
.admission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.admission-section .section-title::before {
    content: '✓';
    font-size: 2rem;
    color: var(--accent);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.admission-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
    margin-top: 2rem !important;
    align-items: center !important;
}

.admission-form-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    border-top: 5px solid var(--primary);
}

.admission-form-wrapper {
    text-align: center;
    padding: 20px;
}

.admission-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.admission-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.admission-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 123, 255, 0.3);
}

.admission-button i {
    transition: transform 0.3s ease;
}

.admission-button:hover i {
    transform: translateX(5px);
}

.pricing-container {
    margin-top: 40px !important;
    width: 100% !important; 
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.admission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image.png') center/cover no-repeat fixed;
    opacity: 0.05;
    z-index: 0;
}

.admission-section .container {
    position: relative;
    z-index: 1;
}

.admission-section .section-title {
    position: relative;
    margin-bottom: 3rem;
}

.admission-section .section-title::before {
    content: '✓';
    font-size: 2rem;
    color: var(--accent);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.admission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.admission-form-container {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    border-top: 5px solid var(--primary);
}

.admission-form-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(141, 32, 32, 0.2);
    animation: fadeIn 0.5s ease forwards;
    position: relative;
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-left: 1.2rem;
    display: flex;
    align-items: center;
}

.form-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent);
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(243, 201, 147, 0.3);
    background-color: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background-color: rgba(141, 32, 32, 0.05);
}

.radio-label:hover,
.checkbox-label:hover {
    background-color: rgba(141, 32, 32, 0.1);
}

.radio-label input,
.checkbox-label input {
    margin-right: 0.7rem;
    width: auto;
}

.radio-label span,
.checkbox-label span {
    font-weight: 500;
}

.form-action {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    margin-top: 2.5rem;
}

.form-submit-btn,
.form-reset-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(141, 32, 32, 0.3);
}

.form-submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(141, 32, 32, 0.4);
}

.form-reset-btn {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--medium-gray);
}

.form-reset-btn:hover {
    background-color: var(--medium-gray);
    transform: translateY(-3px);
    border-color: var(--dark);
}

/* Improved File Input Styling */
.form-group input[type="file"] {
    padding: 0.9rem;
    border: 2px dashed var(--medium-gray);
    background-color: rgba(243, 201, 147, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--accent);
    background-color: rgba(243, 201, 147, 0.1);
}

/* Pricing Styles */
.pricing-container {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    border-top: 5px solid var(--accent);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.pricing-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.pricing-title {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.pricing-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr {
    transition: all 0.3s ease;
}

.pricing-table tr:hover {
    background-color: rgba(141, 32, 32, 0.05);
    transform: scale(1.02);
}

.pricing-table td:last-child {
    font-weight: 600;
    color: var(--primary);
}

.pricing-note {
    background-color: rgba(243, 201, 147, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
    text-align: center;
}

.pricing-note p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

.pricing-download-link {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-download-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pricing-download-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 32, 32, 0.3);
}

.pricing-download-link:hover i {
    transform: translateY(2px);
}

.pricing-info {
    font-style: italic;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    color: var(--primary) !important;
}

.admission-info {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(141, 32, 32, 0.2);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    color: var(--white);
    font-size: 1rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
    background-color: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(141, 32, 32, 0.2);
}

.info-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.info-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .admission-content {
        gap: 2rem;
    }
    
    .form-row {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .admission-form-container, 
    .pricing-container {
        padding: 2rem;
        width: 100%;
    }
    
    .form-section-title {
        font-size: 1.4rem;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .admission-content {
        gap: 2rem;
    }
    
    .pricing-container {
        position: static;
        margin-top: 2rem;
        width: 100%;
    }
    
    .form-action {
        flex-direction: column;
    }
    
    .form-submit-btn,
    .form-reset-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .radio-label,
    .checkbox-label {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .admission-section {
        padding: 4rem 0;
    }
    
    .admission-form-container, 
    .pricing-container {
        padding: 1.5rem;
        border-radius: 10px;
        width: 100%;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.3rem;
        padding-left: 1rem;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
    padding: 2rem;
    animation: fadeInUp 1s ease;
    height: fit-content;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    background-color: var(--accent);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.contact-info h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
    animation: fadeInUp 1s ease;
    animation-delay: 0.2s;
}

/* Footer Styles */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-about-text {
    margin-top: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.footer-links-column h4,
.footer-legal h4,
.footer-contact h4,
.footer-timing h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h4::after,
.footer-legal h4::after,
.footer-contact h4::after,
.footer-timing h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.8rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i,
.footer-timing i {
    margin-right: 0.8rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-timing {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-text-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.social-text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.social-text-link:hover {
    color: var(--accent);
    transform: translateY(-2px) scale(1.05);
}

.social-text-link:hover::after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    
    .social-text-link {
        width: auto;
        text-align: center;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .social-text-link {
        font-size: 1rem;
        padding: 0.2rem 0.5rem;
        margin: 0.3rem;
        display: inline-block;
        min-width: 80px;
    }
    
    .social-links {
        gap: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .admission-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        width: 90%;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        margin: 1rem;
        max-width: 90%;
        box-shadow: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
        color: var(--white) !important;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: var(--white) !important;
        display: block;
        width: 100%;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        margin-top: 1.5rem;
        display: inline-block;
    }
    
    header {
        padding: 1rem 3%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background-color: #8d2020 !important;
        padding: 2rem 0;
        gap: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        background-color: #8d2020 !important;
    }
    
    .who-we-are-content,
    .message-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .who-we-are-content p,
    .message-content p {
        font-size: 1rem;
    }
    
    .message-header h3 {
        font-size: 1.3rem;
    }
    
    .admission-content {
        gap: 1.5rem;
    }
    
    .admission-form-container,
    .pricing-container {
        padding: 1.5rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .hero-image {
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        height: 40px;
        margin-right: 0.5rem;
    }
    
    .school-name h1 {
        font-size: 1.3rem;
    }
    
    .school-name p {
        font-size: 0.7rem;
    }
    
    .hero-text-wrapper {
        padding: 1rem 0.5rem;
        background-color: transparent;
        border: none;
    }
    
    .hero-content {
        padding: 1.5rem;
        width: 92%;
        margin: 0 auto;
        background-color: transparent;
        box-shadow: none;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        line-height: 1.3;
        color: var(--white) !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 800;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        color: var(--white) !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        margin-top: 2.5rem;
        font-size: 1rem;
        display: inline-block;
        width: auto;
    }
    
    .who-we-are,
    .messages-section,
    .school-events,
    .admission-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .message-card {
        min-height: auto;
    }
    
    .admission-form-container,
    .pricing-container {
        padding: 1rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    .hero-image {
        margin-bottom: 1rem;
        max-width: 95%;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .social-links a i {
        font-size: 16px;
    }
}

/* Section Styles (placeholders) */
.about-section,
.facilities-section,
.gallery-section,
.achievements-section {
    padding: 5rem 5%;
    min-height: 50vh;
}

/* About Section Styling */
.about-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(var(--primary-rgb), 0.05);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Decorative element */
.about-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, rgba(var(--primary-rgb), 0.3) 70%, transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.2s ease-out;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.about-image-overlay span {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.about-image:hover .about-image-overlay {
    padding-bottom: 2rem;
}

.about-image:hover .about-image-overlay span {
    transform: translateY(-5px);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.9s;
}

.about-feature:nth-child(2) {
    animation-delay: 1.1s;
}

.about-feature:nth-child(3) {
    animation-delay: 1.3s;
}

.about-feature:nth-child(4) {
    animation-delay: 1.5s;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--accent);
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.about-feature span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.about-feature:hover i,
.about-feature:hover span {
    color: var(--primary-dark);
}

@media screen and (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-height: 400px;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-section::before {
        display: none;
    }
    
    .about-image {
        max-height: 350px;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .about-feature {
        padding: 0.8rem;
    }
    
    .about-feature i {
        font-size: 1.3rem;
    }
    
    .about-feature span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .about-image {
        max-height: 250px;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-image-overlay {
        padding: 1.5rem 1rem 0.8rem;
    }
    
    .about-image-overlay span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
    background-color: rgba(211, 47, 47, 0.05);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    animation: fadeIn 0.3s ease;
}

/* Form Success Styles */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success);
    background-color: rgba(56, 142, 60, 0.05);
}

.success-message {
    display: block;
    color: var(--success);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    animation: fadeIn 0.3s ease;
}

/* Info Columns Section */
.info-columns-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-column {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
    animation: fadeInUp 1s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.achievements-column {
    animation-delay: 0.1s;
}

.notice-column {
    animation-delay: 0.3s;
}

.links-column {
    animation-delay: 0.5s;
}

.info-column-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-column-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-column-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.info-column-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* View More Link */
.view-more-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    align-self: flex-end;
}

.view-more-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.view-more-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--accent);
}

.view-more-link:hover i {
    transform: translateX(5px);
}

/* Achievements Styles */
.achievement-category {
    margin-bottom: 1.5rem;
}

.achievement-category h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.8rem;
}

.achievement-category h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--accent);
}

.achievement-table-container {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.achievement-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.achievement-table th,
.achievement-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.achievement-table th {
    background-color: var(--light-gray);
    color: var(--primary);
    font-weight: 600;
}

.achievement-table tr:hover {
    background-color: var(--light-gray);
}

.achievement-table tr:last-child td {
    border-bottom: none;
}

.life-achievements {
    margin-top: 1.5rem;
}

.coming-soon {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 5px;
    color: var(--primary);
    font-style: italic;
}

/* Notice Board Styles */
.notice-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.notice-slider {
    height: 100%;
    overflow-y: hidden;
    transition: transform 0.5s ease;
}

.notice-item {
    display: flex;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
}

.notice-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.notice-date {
    background-color: var(--primary);
    color: var(--white);
    min-width: 55px;
    height: 55px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-right: 1rem;
    line-height: 1.2;
}

.notice-text {
    flex-grow: 1;
}

.notice-text h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.notice-text p {
    font-size: 0.9rem;
    margin: 0;
}

.notice-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.notice-controls button {
    background-color: var(--light-gray);
    border: none;
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.notice-controls button:hover {
    background-color: var(--accent);
}

/* Quick Links Styles */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quick-links li {
    transition: var(--transition);
}

.quick-links li:hover {
    transform: translateX(5px);
}

.quick-links a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    color: var(--primary);
    transition: var(--transition);
}

.quick-links a:hover {
    background-color: var(--accent-light);
}

.quick-links i {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
}

.quick-links a:hover i {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Additional Responsive Styles */
@media screen and (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
    }
    
    .info-column {
        margin-bottom: 1.5rem;
    }
    
    .info-column:last-child {
        margin-bottom: 0;
    }
    
    .achievement-table th,
    .achievement-table td {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .info-column-header {
        padding: 1rem;
    }
    
    .info-column-header h3 {
        font-size: 1.3rem;
    }
    
    .info-column-content {
        padding: 1rem;
    }
    
    .notice-date {
        min-width: 45px;
        height: 45px;
        font-size: 0.8rem;
    }
    
    .notice-text h4 {
        font-size: 1rem;
    }
    
    .notice-text p {
        font-size: 0.8rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.gallery-view {
    display: inline-block;
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.gallery-view:hover {
    color: var(--accent-light);
    transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border: 3px solid var(--white);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--accent);
}

/* Visitor Section Styles */
.visitor-section {
    background-color: var(--light-gray);
    padding: 6rem 0;
    overflow: hidden;
}

.visitor-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    line-height: 1.6;
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.visitor-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    padding-top: 60px;
    margin-top: 50px;
}

.visitor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.visitor-photo {
    width: 90px;
    height: 90px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    background-color: var(--white);
}

.visitor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.visitor-card:hover .visitor-photo img {
    transform: scale(1.1);
}

.visitor-info {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.visitor-name {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.visitor-event {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(243, 200, 147, 0.15);
    border-radius: 30px;
    font-size: 0.95rem;
}

.visitor-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.visitor-message {
    color: var(--dark);
    font-style: italic;
    position: relative;
    padding-top: 1rem;
    font-size: 0.95rem;
}

.visitor-message::before {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    position: absolute;
    top: -5px;
    left: 0;
    opacity: 0.2;
}

.visitor-message::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    position: absolute;
    bottom: -15px;
    right: 0;
    opacity: 0.2;
}

.see-all-container {
    text-align: center;
    margin-top: 3rem;
}

.see-all-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.see-all-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animation for visitor cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation with delays */
.visitor-card:nth-child(1) {
    animation-delay: 0.1s;
}

.visitor-card:nth-child(2) {
    animation-delay: 0.3s;
}

.visitor-card:nth-child(3) {
    animation-delay: 0.5s;
}

.visitor-card:nth-child(4) {
    animation-delay: 0.7s;
}

.visitor-card:nth-child(5) {
    animation-delay: 0.9s;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .visitor-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .visitor-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .visitor-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .visitor-card {
        padding-top: 50px;
        margin-top: 45px;
    }
    
    .visitor-photo {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    
    .visitor-name {
        font-size: 1.2rem;
    }
    
    .visitor-event {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .visitor-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto 2rem;
    }
    
    .visitor-card {
        max-width: 280px;
        margin: 45px auto 10px;
        padding-top: 45px;
    }
    
    .visitor-photo {
        width: 70px;
        height: 70px;
        top: -35px;
        border-width: 4px;
    }
}

.form-section-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.required {
    color: var(--primary);
    margin-left: 3px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label input {
    margin-top: 5px;
}

.checkbox-label span {
    line-height: 1.4;
    flex: 1;
}

#declaration + span {
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .form-section-description {
        font-size: 0.9rem;
    }
    
    #declaration + span {
        font-size: 0.85rem;
    }
}

/* Enhanced Facilities Section Styles */
.facilities-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.facilities-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.facilities-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

.facilities-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Icon Grid Styles */
.facilities-icon-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    width: 140px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.icon-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-item.active {
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(141, 32, 32, 0.2);
    transform: translateY(-5px);
}

.icon-item.active::after {
    opacity: 1;
}

.icon-item:hover:not(.active) {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.facility-mini-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.icon-item.active .facility-mini-icon {
    background-color: var(--white);
}

.facility-mini-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.icon-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.icon-item.active span {
    color: var(--white);
}

/* Detail Container Styles */
.facilities-detail-container {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.facilities-detail-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.facility-detail {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.6s ease forwards;
}

.facility-detail.active {
    display: flex;
    gap: 3rem;
}

.facility-detail-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid rgba(141, 32, 32, 0.1);
}

.facility-detail-icon i {
    font-size: 3.5rem;
    color: var(--primary);
}

.facility-detail-content {
    flex-grow: 1;
}

.facility-detail-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.facility-detail-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.facility-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.facility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.facility-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 0;
}

.facility-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .facility-detail.active {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .facility-detail-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .facility-features {
        grid-template-columns: 1fr;
    }
    
    .facility-features li {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .facilities-intro p {
        font-size: 1.1rem;
    }
    
    .facilities-icon-grid {
        gap: 0.8rem;
    }
    
    .icon-item {
        width: 120px;
        padding: 0.8rem;
    }
    
    .facility-mini-icon {
        width: 45px;
        height: 45px;
    }
    
    .facility-mini-icon i {
        font-size: 1.4rem;
    }
    
    .icon-item span {
        font-size: 0.8rem;
    }
    
    .facility-detail {
        padding: 2rem;
    }
    
    .facility-detail-icon {
        width: 100px;
        height: 100px;
    }
    
    .facility-detail-icon i {
        font-size: 2.8rem;
    }
    
    .facility-detail-content h3 {
        font-size: 1.5rem;
    }
    
    .facility-detail-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .facilities-section {
        padding: 4rem 0;
    }
    
    .facilities-intro {
        margin-bottom: 2rem;
    }
    
    .facilities-intro p {
        font-size: 1rem;
    }
    
    .facilities-icon-grid {
        gap: 0.6rem;
    }
    
    .icon-item {
        width: 100px;
        padding: 0.7rem;
    }
    
    .facility-mini-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .facility-mini-icon i {
        font-size: 1.2rem;
    }
    
    .icon-item span {
        font-size: 0.75rem;
    }
    
    .facility-detail {
        padding: 1.5rem;
    }
    
    .facility-detail-icon {
        width: 80px;
        height: 80px;
    }
    
    .facility-detail-icon i {
        font-size: 2.2rem;
    }
    
    .facility-detail-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .facility-detail-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .facility-features li {
        font-size: 0.9rem;
    }
}

/* Login Button in Nav */
.login-button {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent);
}

/* Login Form */
.login-container {
    padding: 2.5rem;
}

.login-container h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.login-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.login-form .form-group {
    margin-bottom: 1.2rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.login-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
    outline: none;
    background-color: var(--white);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--accent);
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.login-submit-btn:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.register-link p {
    color: var(--dark);
    font-size: 0.95rem;
}

.register-link a {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: var(--accent);
}

@media screen and (max-width: 768px) {
    .login-container {
        padding: 2rem 1.5rem;
    }
    
    .login-container h2 {
        font-size: 1.5rem;
    }
    
    .remember-forgot {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .forgot-password {
        display: block;
        margin-top: 0.5rem;
    }
}

/* Achievement Styles */
.achievements-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.achievements-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.main-achievements {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.achievements-header {
    background-color: var(--primary);
    padding: 1.5rem;
}

.achievements-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.achievements-title i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.achievements-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.achievement-categories {
    padding: 1.5rem;
}

.achievement-category {
    margin-bottom: 2.5rem;
}

.achievement-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.category-header i {
    color: var(--accent);
    font-size: 1.2rem;
}

.category-header h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0;
}

.category-description {
    margin-bottom: 1.5rem;
}

.category-description p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
}

.achievement-table-container {
    margin-bottom: 1rem;
    overflow-x: auto;
}

.achievement-table {
    width: 100%;
    border-collapse: collapse;
}

.achievement-table th,
.achievement-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.achievement-table th {
    background-color: var(--light-gray);
    color: var(--primary);
    font-weight: 600;
}

.achievement-table tr:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
}

.achievement-message {
    padding: 1rem;
    background-color: var(--accent-light);
    border-radius: 5px;
    font-style: italic;
    color: var(--primary);
}

.side-achievements {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-achievements-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.life-achievements {
    margin-top: 0;
}

.life-achievements h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0.8rem;
    text-align: center;
}

.life-achievements h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--accent);
}

.coming-soon {
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 5px;
    color: var(--primary);
    font-style: italic;
    font-size: 1.1rem;
}

/* Info Columns Section */
.info-columns-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 992px) {
    .achievements-container {
        grid-template-columns: 1fr;
    }
    
    .side-achievements {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
    }
    
    .info-column {
        margin-bottom: 1.5rem;
    }
    
    .info-column:last-child {
        margin-bottom: 0;
    }
}

.form-status-check {
    text-align: center;
    margin-bottom: 1.5rem;
}

.check-status-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(141, 32, 32, 0.2);
    display: inline-block;
}

.check-status-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(141, 32, 32, 0.3);
}

.check-status-button:active {
    transform: translateY(-1px);
}

/* Status Check Modal Styles */
.status-check-container {
    padding: 1.5rem;
}

.status-check-container h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.status-check-form {
    max-width: 500px;
    margin: 0 auto;
}

.or-separator {
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
    position: relative;
}

.or-separator::before,
.or-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: var(--medium-gray);
}

.or-separator::before {
    left: 0;
}

.or-separator::after {
    right: 0;
}

.check-status-submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.check-status-submit-btn:hover {
    background-color: var(--primary-dark);
}

.status-result {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success);
    margin-top: 1rem;
}

.status-message {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status-message.success {
    color: var(--success);
}

.status-message.pending {
    color: #f57c00;
}

.status-message.error {
    color: var(--error);
}

.status-details {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.status-stage {
    margin: 1rem 0;
    font-weight: 600;
    color: var(--primary);
}

.close-status-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 1.5rem auto 0;
}

.close-status-btn:hover {
    background-color: var(--primary-dark);
}

@media screen and (max-width: 768px) {
    .form-status-check {
        margin-bottom: 1rem;
    }
    
    .check-status-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .check-status-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .status-check-container h2 {
        font-size: 1.3rem;
    }
}

.side-achievements-container {
    display: flex;
    flex-direction: column;
}

.side-achievements-container .achievements-header {
    margin-bottom: 0;
}

.side-achievements {
    background-color: var(--white);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    border-top: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-achievements-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.life-achievements {
    margin-top: 0;
}

.coming-soon {
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 5px;
    color: var(--primary);
    font-style: italic;
    font-size: 1.1rem;
}

@media screen and (max-width: 992px) {
    .achievements-container {
        grid-template-columns: 1fr;
    }
    
    .side-achievements-container {
        margin-top: 1rem;
    }
}

/* Career Section Styles - Enhanced */
.career-section {
    padding: 60px 0;
    background-color: white;
    position: relative;
}

.career-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.career-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: #f3c993;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(141, 32, 32, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(141, 32, 32, 0.15);
}

.career-intro h3 {
    color: #8d2020;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
}

.career-intro p {
    color: #8d2020;
    line-height: 1.7;
    font-size: 1.05rem;
}

.career-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(141, 32, 32, 0.08), 0 1px 3px rgba(141, 32, 32, 0.05);
    border-top: 4px solid #8d2020;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-form-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(141, 32, 32, 0.12), 0 1px 3px rgba(141, 32, 32, 0.05);
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 calc(50% - 12px);
    min-width: 250px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #8d2020;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #f3c993;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background-color: white;
    color: #8d2020;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8d2020;
    box-shadow: 0 0 0 3px rgba(141, 32, 32, 0.1);
    background-color: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #8d2020;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    padding: 10px;
    border: 1px dashed #f3c993;
    border-radius: 6px;
    width: 100%;
    background-color: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

.form-group input[type="file"]:hover {
    border-color: #8d2020;
    background-color: rgba(243, 201, 147, 0.1);
}

.form-action {
    text-align: center;
    margin-top: 15px;
}

.career-submit-btn {
    background-color: #8d2020;
    color: white;
    border: none;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(141, 32, 32, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-submit-btn:hover {
    background-color: #8d2020;
    box-shadow: 0 6px 14px rgba(141, 32, 32, 0.3);
    transform: translateY(-2px);
}

.career-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(141, 32, 32, 0.2);
}

@media (max-width: 768px) {
    .career-section {
        padding: 40px 0;
    }
    
    .career-intro {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .career-form-container {
        padding: 25px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 18px;
    }
    
    .form-group {
        flex: 1 1 100%;
    }
    
    .career-submit-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Today's Highlight Styles */
.highlight-column {
    animation-delay: 0.5s;
}

.highlight-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-title {
    margin-bottom: 1rem;
}

.highlight-title h4 {
    color: #8d2020;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3c993;
}

.highlight-description {
    margin-bottom: 1.5rem;
}

.highlight-description p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.highlight-image {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.single-image-placeholder {
    width: 100%;
    height: 180px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    color: #888;
    transition: all 0.3s ease;
}

.single-image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #8d2020;
}

.single-image-placeholder:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

/* Hide the old highlight-images class styles */
.highlight-images {
    display: none;
}

/* Faculty Section Styles */
.faculty-section {
    padding: 5rem 2rem;
}

.faculty-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.faculty-card-header {
    background-color: var(--primary);
    padding: 1.5rem;
    text-align: center;
}

.faculty-card-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.faculty-card-content {
    padding: 2rem;
}

.faculty-card-content p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faculty-intro-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faculty-point {
    margin-bottom: 1.8rem;
}

.faculty-point:last-child {
    margin-bottom: 0;
}

.faculty-point h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faculty-point p {
    margin-bottom: 0;
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .faculty-card-header h3 {
        font-size: 1.5rem;
    }
    
    .faculty-point h4 {
        font-size: 1.1rem;
    }
    
    .faculty-card-content {
        padding: 1.5rem;
    }
}

/* Faculty Members Section */
.faculty-members-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.faculty-category {
    margin-bottom: 4rem;
}

.faculty-category:last-child {
    margin-bottom: 0;
}

.faculty-category-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.faculty-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--accent);
}

.faculty-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.faculty-member-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 1.5rem;
}

.faculty-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faculty-member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faculty-member-photo i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.6;
}

.faculty-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.faculty-member-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faculty-member-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media screen and (max-width: 1200px) {
    .faculty-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .faculty-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faculty-member-photo {
        width: 80px;
        height: 80px;
    }
    
    .faculty-member-photo i {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .faculty-members-section {
        padding: 3rem 1.5rem;
    }
    
    .faculty-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .faculty-category-title {
        font-size: 1.5rem;
    }
    
    .faculty-member-card {
        padding: 1.2rem;
    }
    
    .faculty-member-photo {
        width: 70px;
        height: 70px;
    }
    
    .faculty-member-photo i {
        font-size: 2rem;
    }
    
    .faculty-member-info h4 {
        font-size: 1rem;
    }
    
    .faculty-member-info p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .faculty-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .faculty-category {
        margin-bottom: 2.5rem;
    }
    
    .faculty-member-card {
        padding: 1rem;
    }
    
    .faculty-member-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }
    
    .faculty-category-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}
  