/* Global Styles */
:root {
    --primary-blue: #00587C;
    --secondary-blue: #00587C;
    --light-blue: #e6f0fa;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --accent-yellow: #CFAB61;
    --success-green: #28a745;
    --error-red: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}.carousel {
    margin-top: 129px!important;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.section-padding {
    padding: 100px 0;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    margin-left: 30px;
}

.logo-text h1 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
    margin-left: 20px;
}

.logo-text p {
    color: var(--dark-gray);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 20px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 22px;
    position: relative;
}

nav ul li a {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-blue);
}

nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(101, 102, 104, 0.8), rgba(7, 10, 13, 0.8)), url(https://img.freepik.com/premium-vector/back-school-background_3589-793.jpg?uid=R189997086&ga=GA1.1.1212403339.1741071236&semt=ais_hybrid&w=740) no-repeat center center / cover;
    height: 50vh;
    display: flex
;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 120px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    padding: 15px 35px;
    font-size: 1rem;
    background-color: rgb(4, 120, 209);
    color: white;
}

.hero-btns .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-btns .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}

.about-img img {
    width:100%;
    height: 600px;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
    font-weight: 600;
}

.achievements {
      background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
      color: white;
      padding: 50px 20px;
      text-align: center;
      position: relative;
    }

    .achievements::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .achievements-content {
      position: relative;
      z-index: 1;
    }

    .achievements h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
    }

    .achievements p {
      font-size: 1.1em;
      max-width: 1000px;
      margin: 0 auto 50px;
    }

    .counters {
      display: flex;
      flex-wrap: wrap;
      /*margin-left: 255px;*/
      gap:250px;
    }

    .counter-box {
      text-align: center;
      width: 20%;
    }

    .counter-box i {
      font-size: 50px;
      margin-bottom: 15px;
      display: block;
      color: white;
    }

    .counter {
      font-size: 48px;
      font-weight: bold;
      color: #FFC107;
    }

    .label {
      font-size: 18px;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
        .counter-box {
    text-align: center;
    width: auto;
}
        .gallery-grid{display: block !important;}
      .logo-text{display: none!important;}
      .counters {
        flex-direction: column;
        gap: 40px;
        /*margin-right: 750px;*/
      }
    }

/* Admissions Section */
.admissions {
    background-color: var(--white);
}

.admissions-content {
    display: flex;
    gap: 50px;
}

.admissions-info {
    flex: 1;
}

.admissions-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 30px 0;
}

.step h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.step h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-yellow);
}

.step ul,
.step ol {
    padding-left: 20px;
}

.step li {
    margin-bottom: 10px;
}

.admission-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Academics Section */
.academics {
    background-color: var(--light-gray);
}

.academics-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.academic-tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.academic-tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.academic-tab-btn:hover:not(.active) {
    color: var(--secondary-blue);
}

.academics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.academic-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.academic-img {
    height: 250px;
    overflow: hidden;
}

.academic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.academic-card:hover .academic-img img {
    transform: scale(1.1);
}

.academic-content {
    padding: 25px;
}

.academic-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.academic-content p {
    margin-bottom: 15px;
}

.academic-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.academic-content li {
    margin-bottom: 8px;
}

.academic-features {
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
    cursor: pointer;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Facilities Section */
.facilities {
    background-color: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
}

.facility-card {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.facility-img {
    flex: 1;
    
}

.facility-img img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.facility-content {
    flex: 1;
    padding: 25px;
}

.facility-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.facility-content ul {
    padding-left: 20px;
}

.facility-content li {
    margin-bottom: 10px;
}

.facility-highlights {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.highlight-item h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

/* News Section */
.news {
    background-color: var(--light-gray);
}

.news-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.news-tab-btn {
    padding: 8px 20px;
    background: none;
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.news-tab-btn:hover:not(.active) {
    background-color: var(--light-blue);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.news-content p {
    margin-bottom: 20px;
}

.calendar-highlight {
    margin-top: 50px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calendar-highlight h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.calendar-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.calendar-event {
    display: flex;
    gap: 20px;
    align-items: center;
}

.event-date {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    padding: 8px 20px;
    background: none;
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.gallery-tab-btn:hover:not(.active) {
    background-color: var(--light-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 75, 140, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: var(--white);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a4b8c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: var(--white);
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.footer-col p {
    margin-bottom: 20px;
}

.accreditations {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.accreditations img {
    height: 50px;
    width: auto;
}

.footer-links li {
    margin-bottom: 15px;
    list-style: none;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 10px 15px;
}

.newsletter-form .btn {
    padding: 10px 20px;
}
.newsletter-form button{
    background-color: rgb(3, 130, 204);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: #ddd;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 100px auto;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.modal-header img{
    width: 100px;
    height: 90px;
}

.modal-logo {
    height: 50px;
    margin-bottom: 10px;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    flex: 1;
    text-align: center;
}

.tab-btn.active {
    color: var(--primary-blue);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.remember-me input {
    width: auto;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {

    .about-content,
    .contact-container {
        flex-direction: column;
    }

    .facility-card {
        flex-direction: column;
    }

    .facility-img {
        min-height: 200px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-img img {
    width: 100%;
    height: auto!important;
}
    .facilities-grid {
    display: block!important;
}
    .header-container {
        padding: 15px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }

    nav ul li a {
        padding: 10px 0;
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        margin: 50px auto;
        width: 90%;
    }

    .admission-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .counter-box {
    text-align: center;
    width: auto;
}
    .logo-text h1 {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}