
/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== HEADER STYLES ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #1a4b8c;
    color: white;
}

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 50px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        
        nav a.active {
            color: #ff6b00;
        }

        /* ===== BANNER STYLES ===== */
        .page-banner {
            background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                        url('../images/events-banner.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 4rem 1rem;
        }
        
        .page-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 10px;
        }
        
        .breadcrumb a {
            color: #fff;
            text-decoration: none;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #ccc;
        }

        /* ===== MEDIA GALLERY STYLES ===== */
        .media-gallery {
            padding: 3rem 0;
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .gallery-header h2 {
            color: #1a4b8c;
            margin-bottom: 1rem;
        }
        
        .gallery-header p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Tabs Navigation */
        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid #ddd;
        }
        
        .tab-btn {
            padding: 12px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: #666;
            position: relative;
            transition: all 0.3s;
        }
        
        .tab-btn.active {
            color: #1a4b8c;
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #1a4b8c;
        }
        
        .tab-btn:hover {
            color: #1a4b8c;
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            background: white;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        
        /* Image Items */
        .image-item .thumbnail {
            height: 200px;
            overflow: hidden;
        }
        
        .image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .image-item:hover img {
            transform: scale(1.05);
        }
        
        .image-info {
            padding: 1rem;
        }
        
        .image-info h3 {
            color: #1a4b8c;
            margin-bottom: 0.5rem;
        }
        
        .image-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Video Items */
        .video-item {
            position: relative;
        }
        
        .video-item .thumbnail {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .video-item .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 107, 0, 0.8);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .video-item .play-btn:hover {
            background: rgba(255, 107, 0, 1);
        }
        
        /* PDF Items */
        .pdf-item {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .pdf-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 150px;
            background: #f9f9f9;
        }
        
        .pdf-icon i {
            font-size: 4rem;
            color: #e74c3c;
        }
        
        .pdf-info {
            padding: 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .pdf-info h3 {
            color: #1a4b8c;
            margin-bottom: 0.5rem;
        }
        
        .pdf-info p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1a4b8c;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.3s;
        }
        
        .download-btn:hover {
            background: #0d3a6d;
        }
        
        /* View More Button */
        .view-more {
            text-align: center;
            margin-top: 2rem;
        }
        
        .view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ff6b00;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .view-more-btn:hover {
            background: #e05d00;
        }
        
        /* ===== MODAL STYLES ===== */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
        }
        
        .modal-content {
            position: relative;
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            margin-top: 50px;
            animation: zoom 0.3s;
        }
        
        @keyframes zoom {
            from {transform: scale(0)}
            to {transform: scale(1)}
        }
        
        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .modal-caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
        }
        
        /* ===== FOOTER STYLES ===== */
        footer {
            background: #1a4b8c;
            color: white;
            padding: 2rem 0 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .footer-section {
            flex: 1;
            padding: 0 1rem;
        }
        
        .footer-section h4 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-section i {
            margin-right: 0.5rem;
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            text-align: center;
            padding: 1rem;
            background: #0d3a6d;
            margin-top: 2rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                margin-top: 1rem;
            }
            
            .tabs {
                flex-wrap: wrap;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 2rem;
            }
            
            .modal-content {
                width: 95%;
            }
        }
    
/* ===== BASIC RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #1a4b8c;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('../images/school-building.jpg') repeat center;
    background-size: cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    color: red;
    margin-bottom: 1rem;
}
.hero p{
    font-size: 2.5rem;
    color: red;
    margin-bottom: 1rem;
}

.cta-button {
    background: #ff6a00ba;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

/* ===== ANNOUNCEMENTS SECTION ===== */
.announcements {
    padding: 2rem;
    background: #f5f5f5;
}

.news-item {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 1rem;
    background: #1a4b8c;
    color: white;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    /* Stack header elements vertically */
    header {
        flex-direction: column;
        padding: 1rem;
    }

    /* Hide desktop nav by default, show mobile toggle */
    nav ul {
        flex-direction: column;
        display: none;
        width: 100%;
        text-align: center;
    }

    /* Mobile menu toggle button (added via JavaScript) */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        margin-top: 10px;
    }

    /* Adjust hero section for mobile */
    .hero {
        height: 300px;
    }

    .hero h2 {
        font-size: 2rem;
    }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.page-banner {
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                url('../images/events-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.about-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.about-section {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-section {
    background: #f9f9f9;
    padding: 3rem 1rem;
    margin: 3rem 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #1a4b8c;
    margin-bottom: 1rem;
}

.principal-section {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
}

.principal-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.principal-image img {
    width: 100%;
    height: auto;
}

.principal-message {
    flex: 2;
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    border-left: 4px solid #ff6b00;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.principal-name {
    font-weight: bold;
    color: #1a4b8c;
}

.principal-name span {
    font-weight: normal;
    color: #777;
}

/* Footer enhancements */
.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.footer-section {
    flex: 1;
    padding: 0 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-section i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding: 1rem;
    background: #0d3a6d;
}

/* ===== ADMISSIONS PAGE SPECIFIC STYLES ===== */
.admissions-banner {
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                url('../images/admissions-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.admissions-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: #ff6b00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Fee Table */
.fee-structure {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.fee-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #1a4b8c;
    color: white;
}

tr:nth-child(even) {
    background: #f2f2f2;
}

.fee-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #666;
}

/* Application Form */
.application-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 3rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.full-width {
    grid-column: 1 / -1;
}

/* FAQs */
.faqs {
    margin: 3rem 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a4b8c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1rem;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* ===== TEACHERS PAGE SPECIFIC STYLES ===== */
.teachers-banner {
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                url('../images/teachers-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.teachers-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.teachers-intro {
    padding: 4rem 1rem;
    text-align: center;
    background: #f9f9f9;
}

.teachers-intro .container {
    max-width: 800px;
    margin: 0 auto;
}

.teachers-intro h3 {
    color: #1a4b8c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.teachers-intro p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.teachers-grid {
    padding: 3rem 1rem;
}

.teachers-grid .container {
    max-width: 1200px;
    margin: 0 auto;
}

.teachers-grid h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a4b8c;
    font-size: 1.8rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.teacher-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.teacher-card:hover {
    transform: translateY(-5px);
}

.teacher-image {
    height: 250px;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.05);
}

.teacher-info {
    padding: 1.5rem;
}

.teacher-info h4 {
    color: #1a4b8c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.teacher-info .subject {
    font-weight: bold;
    color: #ff6b00;
    margin-bottom: 0.5rem;
}

.teacher-info .qualification {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.teacher-info .bio {
    color: #444;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .teachers-banner h2 {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .teacher-image {
        height: 200px;
    }
}

/* ===== EVENTS PAGE SPECIFIC STYLES ===== */
.events-banner {
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                url('../images/events-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.events-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Events Filter */
.events-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #1a4b8c;
    color: white;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.event-card {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.event-date {
    background: #ff6b00;
    color: white;
    padding: 1rem;
    min-width: 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-details {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-time, .event-location {
    color: #666;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-description {
    margin: 1rem 0;
    color: #444;
}

.event-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #1a4b8c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.event-btn:hover {
    background: #0d3a6d;
}

/* Past Events Gallery */
.past-events {
    margin: 5rem 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1a4b8c;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.view-more:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem;
    }
    
    .date-day, .date-month {
        padding: 0 10px;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-banner {
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                url('../images/contact-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #1a4b8c;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form + Map Layout */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .contact-main {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #1a4b8c;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: #1a4b8c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #0d3a6d;
}

/* Map Styles */
.contact-map h3 {
    margin-bottom: 1.5rem;
    color: #1a4b8c;
}

.map-embed {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b00;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.directions-btn:hover {
    background: #e05d00;
}

/* Office Hours */
.office-hours {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.day {
    background: white;
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.day span:first-child {
    font-weight: 600;
    color: #333;
}

.day span:last-child {
    color: #666;
}

/* Social Media */
.social-media {
    text-align: center;
    margin: 3rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a4b8c;
    color: white;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #0d3a6d;
}