* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding-top: 94px; /* To account for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    height: 94px;
    width: 100%;
    background-color: #FDFFF5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.logo-container a {
    text-decoration: none;
    color: inherit;
}

.logo-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    line-height: 1.2;
}

.time {
    font-weight: bold;
    color: #000080;
}

.time1 {
    font-size: 0.9rem;
    color: #000080;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000080;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-menu a:hover {
    background: #000080;
    color: #FDFFF5;
}

.toggle-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000080;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(30, 67, 137, 0.7), rgba(30, 67, 137, 0.7)), url(images/1756439626204.jpg) center/cover no-repeat;
    position: relative;
    color: white;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1e4389;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ffcc00;
}

/* Contact Information */
.contact-info {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #1e4389;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #1e4389;
    margin-bottom: 10px;
}

.info-content p {
    color: #555;
    margin-bottom: 5px;
}

.office-hours {
    margin-top: 10px;
}

.office-hours p {
    display: flex;
    justify-content: space-between;
    max-width: 250px;
}

/* Contact Form */
.contact-form {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e4389;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #1e4389;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #1e4389;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #2c5cc0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    height: 100%;
    background: #e2e3f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #1e4389;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
}

/* Social Media Section */
.social-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #1e4389;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1e4389;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 2rem;
    transition: all 0.3s;
}

/* .social-icon:nth-child(1) .social-circle {
    background: #1877f2;
    color: white;
} */

#facebook:hover { color: #1877f2; }
#whatsapp:hover { color: #25d366; }
#x:hover  { color: #000000; }
#youtube:hover  { color: #ff0000; }
#instagram:hover  { color: rgb(255, 193, 231); }

.social-name {
    font-weight: 600;
}

/* Footer */
footer {
    background: #000080;
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: #ffcc00;
}

.social-icon-footer {
    display: flex;
    gap: 15px;
}

.social-icon-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.social-icon-footer a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .toggle-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 94px;
        flex-direction: column;
        background-color: #FDFFF5;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .contact-section {
        padding: 60px 0;
        
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }

    /* .contact-container {
       width: 70%;
    } */

    
}

@media (max-width: 600px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info, .contact-form {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}