* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {

    font-family: "Great Vibes", cursive;
    font-weight: 550;
    font-style: normal;
    color: var(--primary-color);
    font-size: 1.9rem;
    text-decoration: none;


}

.container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0 auto;
    padding: 1rem 0;
}


.navbar ul li {
    list-style: none;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        position: absolute;
        top: 60px;
        right: 25px;
        width: 160px;
        padding: 15px;
        border-radius: 8px;
        z-index: 10;
    }


    .nav-links.show {
        display: flex;
    }

    .navbar ul li a {
        font-size: 20px;
        font-weight: bold;
        color: white;

    }

}


.navbar ul li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: var(--transition);
}

.navbar ul li a:hover {
    color: var(--primary-color);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 0 0 24px 24px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: var(--transition);
}


/* home page css */
.section-container {
    width: 80%;
    height: 100%;



    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.section {
    padding: 100px 0;

    width: 100%;
    height: 100vh;

}

.section-container h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.section-container p {
    font-size: 1.3rem;
    color: var(--text-dark);
    width: 100%;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-btns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;

}

.cta-btns a {
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    ;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    font-weight: bold;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;

}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    background: var(--primary-color);
    font-weight: bold;


}


#home-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
     /* background-image: url('https://readdy.ai/api/search-image?query=Modern%20high%20school%20campus%20with%20students%20walking%20between%20buildings%2C%20bright%20sunny%20day%2C%20contemporary%20architecture%2C%20educational%20environment%20with%20trees%20and%20pathways%2C%20clean%20minimalist%20background%2C%20professional%20photography%20style%2C%20high%20quality&width=1920&height=1080&seq=hero-bg&orientation=landscape');
     */
     background-size: cover;
     background-image: url(/images/school.jpeg); 
    background-position: center;
    position: relative;
    overflow: hidden;
    
}

#home-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(240, 238, 238, 0.85) 0%, rgba(255, 255, 255, 0.25) 60%, rgba(255, 255, 255, 0.10) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0;
    box-shadow: none;
}

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

/* why choose us  css */

.choose-us-container {
    width: 80%;




    margin: 0 auto;
    padding: 1rem 0;

}

.choose-us-header {
    text-align: center;
    margin-bottom: 2rem;
}

.choose-us-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Statistics Section Styles */
#statistics-section {
    padding: 5rem 0 4rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.04) 100%);
}

.statistics-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.statistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
}

@media (min-width: 768px) {
    .statistics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.statistic-item {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.statistic-item:hover {
    box-shadow: 0 20px 56px 0 rgba(31, 38, 135, 0.22), 0 6px 24px 0 rgba(0, 0, 0, 0.14);
    transform: translateY(-6px) scale(1.04);
}

.statistic-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.statistic-label {
    color: var(--text-light);
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.statistic-primary {
    color: var(--primary-color);
}

.statistic-secondary {
    color: var(--secondary-color);
}

.statistic-green {
    color: #22c55e;
}

.statistic-orange {
    color: #f59e0b;
}

/* Custom icon colors for features */
.feature-item .icon i {
    color: var(--primary-color);
}

.feature-item:nth-child(2) .icon i {
    color: var(--secondary-color);
}

.feature-item:nth-child(3) .icon i {
    color: #22c55e;
}

/* Features grid for Why Choose Us section */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 2;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.22), 0 4px 16px 0 rgba(0, 0, 0, 0.12);
}

.feature-item .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    font-size: 1.8rem;
}
  
.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}



/* about section css */
#about-section {
    padding: 100px 0;

    width: 100%;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);

}

.about-container {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    




}

.about-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.about-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: flex-start;
}


/* mission  css */
/* Mission & Vision Section Styles (About Page) */
#mission-vision {
    width: 100%;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mission-vision>div {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#mission-vision>div>div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    #mission-vision>div>div {
        grid-template-columns: 1fr 1.2fr;
        gap: 3.5rem;
    }
}

#mission-vision img {
    max-width: 900px;
    width: 60%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

#mission-vision h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.1rem;
}


#mission-vision h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
   text-align: center;
   margin-top: .5rem;
}

#mission-vision h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    margin-top: 1.2rem;
}

#mission-vision p {
    font-size: 1.13rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

/* style for staff slider */
.slider-container{
     display: flex;
      justify-content: center;
      align-items: center;
      margin: auto;
    
      
}

#staff-title{
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}
#staff-sub{
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}
.staff-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 90%;
}
#staff-overview {
    width: 100%;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.03) 100%);
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider {
      position: relative;
      width: 100%;
      max-width: 700px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.2);
      background: #fff;
      text-align: center;
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease;
    }

    .slide {
      min-width: 100%;
      padding: 20px;
    }

    .slide img {
      width: 100%;
      max-height: 350px;
      object-fit: contain;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .slide h3 {
      margin-bottom: 5px;
      font-size: 1.6rem;
      color: #333;
    }

    .slide p {
      font-size: 1rem;
      color: #666;
    }

    /* Navigation arrows */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: #fff;
      background: rgba(0,0,0,0.5);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      padding: 8px 14px;
      z-index: 10;
      transition: background 0.3s;
    }

    .nav-btn:hover {
      background: rgba(0,0,0,0.8);
    }

    .prev { left: 15px; }
    .next { right: 15px; }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 1%;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .dots span {
      width: 12px;
      height: 12px;
      background: #007BFF;
      border-radius: 50%;
      opacity: 0.4;
      cursor: pointer;
      transition: 0.3s;
    }

    .dots span.active {
      opacity: 1;
      transform: scale(1.3);
    }


/* overview css */
/* School Overview Section Styles */
#school-overview {
    width: 100%;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.03) 100%);
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.overview-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.overview-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.overview-subtitle {
    font-size: 1.18rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem;
}

@media (min-width: 900px) {
    .overview-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.overview-feature {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.13), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
}

.overview-feature:hover {
    box-shadow: 0 20px 56px 0 rgba(31, 38, 135, 0.18), 0 6px 24px 0 rgba(0, 0, 0, 0.13);
    transform: translateY(-6px) scale(1.04);
}

.overview-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    font-size: 2.1rem;
}

.overview-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.overview-feature-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

#icon-one {
    color: var(--primary-color);
}

#icon-two {
    color: var(--secondary-color);
}

#icon-three {
    color: #22c55e;
}


/* services css */

#services-section {
    padding: 100px 0;

    width: 100%;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);

}

.services-container {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    




}

.services-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.services-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: flex-start;
}

/* Services Grid Section Styles */
#services-grid-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#services-grid-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

#services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem;
}

@media (min-width: 900px) {
    #services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

#services-grid>div {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.13), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#services-grid>div:hover {
    box-shadow: 0 20px 56px 0 rgba(31, 38, 135, 0.18), 0 6px 24px 0 rgba(0, 0, 0, 0.13);
    transform: translateY(-6px) scale(1.04);
}

#services-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    margin-bottom: 1.3rem;
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.08);
}

#services-grid h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color, #2563eb);
}

#services-grid p {
    color: var(--text-light, #6b7280);
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

#services-grid button {
    background-color: var(--primary-color, #2563eb);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

#services-grid button:hover {
    background-color: var(--secondary-color, #7c3aed);
    transform: translateY(-2px) scale(1.04);
}


/* contact css */
#contact-section {
    padding: 100px 0;

    width: 100%;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);

}

.contact-container {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;






}

.contact-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: flex-start;
}

/* Contact Form Section Styles */
/* Contact Page Styles */
#contact-form-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {

    margin: 0 auto;
    padding: 0 1.5rem;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.13), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color, #2563eb);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    background: #fff;
    transition: border 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color, #2563eb);
}

.form-group label {
    font-size: 1rem;
    color: var(--text-light, #6b7280);
    margin-bottom: 0.3rem;
    margin-left: 0.1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

#contact-submit {
    background-color: var(--primary-color, #2563eb);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}

#contact-submit:hover {
    background-color: var(--secondary-color, #7c3aed);
    transform: translateY(-2px) scale(1.04);
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.13), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color, #2563eb);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    font-size: 2rem;
}

.contact-info-details {
    flex: 1;
}

.contact-info-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark, #1f2937);
    margin-bottom: 0.3rem;
}

.contact-info-text {
    color: var(--text-light, #6b7280);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-info-map {
    width: 100%;
    margin-top: 2.2rem;
}

.contact-map {
    width: 100%;
    height: 16rem;
    border-radius: 14px;
    overflow: hidden;
    background: #e5e7eb;
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

/* log in css */
/* Login Section Styles */
.loginsection {
    min-height: 100vh;
    background: linear-gradient(120deg, #e0e7ff 0%, #f3e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.login-container {
    width: 80%;

    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 80%;

}

.log {
    font-family: "Great Vibes", cursive;
    font-size: 2.2rem;
    color: var(--primary-color, #2563eb);
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8fafc;
    transition: border 0.2s;
    margin-bottom: 0.7rem;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: var(--primary-color, #2563eb);
    outline: none;
}

.login-box .btn {
    width: 100%;
    padding: 0.85rem 0;
    background: linear-gradient(90deg, #2563eb 60%, #7c3aed 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.08);
    transition: background 0.2s, transform 0.2s;
}

.login-box .btn:hover {
    background: linear-gradient(90deg, #1d4ed8 60%, #6d28d9 100%);
    transform: translateY(-2px) scale(1.03);
}

#message {
    color: #ef4444;
    font-size: 1rem;
    min-height: 1.2em;
    text-align: center;
}

/* Results Box */
.results-box {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
    padding: 2rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    /* Updated width */
    margin-left: auto;
    margin-right: auto;

}

.results-box .log {
    font-size: 1.7rem;
    color: var(--secondary-color, #7c3aed);
}

.imgbox {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--primary-color, #2563eb);
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-box {
    width: 100%;
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark, #1f2937);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.04);
}

.results-box table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.04);
}

.results-box th,
.results-box td {
    padding: 0.7rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
}

.results-box th {
    background: #f3f4f6;
    color: var(--primary-color, #2563eb);
    font-weight: 600;
}

.results-box tr:last-child td {
    border-bottom: none;
}

.position-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.position-box p {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--secondary-color, #7c3aed);
    font-weight: 500;
    font-size: 1rem;
    flex: 1;
    text-align: center;
}

.results-box .btn {
    margin-top: 1rem;
    width: 100%;
    background: linear-gradient(90deg, #7c3aed 60%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.85rem 0;
    transition: background 0.2s, transform 0.2s;
}

.results-box .btn:hover {
    background: linear-gradient(90deg, #6d28d9 60%, #1d4ed8 100%);
    transform: translateY(-2px) scale(1.03);
}

/* Responsive */
@media (max-width: 600px) {
    .login-container {
        max-width: 98vw;
        padding: 1.2rem 0.5rem;
    }

    .results-box {
        padding: 1rem 0.5rem;
    }

    .details-box,
    .position-box p {
        font-size: 0.97rem;
    }

    .results-box th,
    .results-box td {
        font-size: 0.95rem;
        padding: 0.5rem 0.2rem;
    }
}



/* blog section css */
#blog-section {
    padding: 100px 0;

    width: 100%;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    

}

.blog-container {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;






}

.blog-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.blog-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: flex-start;
}

.blog-bottom {
    width: 90%;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
   
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    
    max-width: 1100px;
    margin: 0 auto;
 padding: 100px 0;
    height: 100%;
    
}

/* footer css */

.footer {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border-light);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-box h3,
.footer-box h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-box p,
.footer-box a {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

.footer-box a {
  text-decoration: none;
  transition: var(--transition);
}

.footer-box a:hover {
  color: var(--secondary-color);
}

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

.footer-box ul li {
  margin-bottom: 8px;
}

.social-links a {
  display: inline-block;
  margin: 0 8px 5px 0;
  padding: 6px 12px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-size: 13px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-light);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: var(--text-light);
}

