* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Popup box */
  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
  }
  
  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
  }
  
  /* Download Button */
  .download-btn {
    display: inline-block;
    background: #0078D7;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }
  .download-btn:hover {
    background: #005bb5;
    color: white;
  }
.topbar{
    font-size: 14px;
}
.header{
    /* position: relative; */
    height: 80px;
}
.head_menus{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
 }
 .head_menus a{
    text-decoration: none;
    color: black;
 }

 ul li a.active {
    color: #2E3D91;
    font-weight: bold;
}
 .head_menu_list{
    margin-right: 50px;
    letter-spacing: .5px;
 }
.register-btn {
    background: #2e3d91;
    color: #fff;
    border: 2px solid #2e3d91;
    padding: 10px 25px;
    border-radius: 12px 0px 12px 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.register-btn:hover{
    border: 2px solid #2e3d91;
    color: #2e3d91;
    background: transparent;
}
.nav-link.active {
    color: #2E3D91 !important;
    font-weight: bold;
  }

/* Banner Section */
.banner {
    position: relative;
    height: 835px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
  }
  
  .banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .banner-slides img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .banner-slides img.active {
    opacity: 1;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 600px;
  }
  
  .banner-content p {
    margin-top: 10px;
    font-size: 18px;
  }
  
  /* Mobile Responsive Adjustments */
  @media (max-width: 768px) {
    .banner {
      height: 700px;
    }
  
    .banner-content h1 {
      font-size: 36px;
      margin-top: 500px;
    }
  
    .banner-content p {
      font-size: 16px;
    }
  
    .banner-overlay {
      background: rgba(0, 0, 0, 0.6);
    }
  }
  
  @media (max-width: 480px) {
    .banner {
      height: 400px;
    }
  
    .banner-content h1 {
      font-size: 28px;
      margin-top: 200px;
    }
  
    .banner-content p {
      font-size: 14px;
    }
  
    .banner-overlay {
      background: rgba(0, 0, 0, 0.7);
    }
  }

/* Result Section */
/* .results {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.result-box{
    background: #fff;
    padding: 30px;
    font-size: 35px;
    font-weight: bold;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: #111;
    flex: 1;           
    min-width: 250px;   
    text-align: center;  
}
.result-box1{
    background: #2e3d91;
    padding: 30px;
    font-size: 35px;
    font-weight: bold;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    flex: 1;              
    min-width: 250px;   
    text-align: center;   
}

.result-box1.blue {
    background: #2e3d91;
    color: #fff;
} */


/* --------- Service ------- */
.services-section {
    text-align: center;
    padding: 50px 20px;
}

.services-section h2 {
    font-size: 60px;
    color: #07152F;
    margin-bottom: 20px;
    margin-top: 25px;
}

.services-section p {
    color: #6A6B6C;
    margin-bottom: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1590px;
    margin: 0 auto;
}

.service-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Circle icon */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1a2b57;
    /* navy background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border: 2px solid #1a2b57;
}

.service-icon img {
    width: 49px;
    height: 51px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* makes icons white */
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #07152F;
}

.service-box ul {
    list-style: none;
    padding-left: 20px;
    font-size: 14px;
    /* font-weight: 600; */
    line-height: 1.6;
    text-align: center;
    color: #6A6B6C;
}

.service-box:hover {
    background-color: #1a2768;
    color: white;
}

.service-box:hover h3,
.service-box:hover ul,
.service-box:hover ul li {
    color: white;
}

.service-box:hover .service-icon {
    background-color: transparent;
    border: 2px solid white;
}

.service-box:hover .service-icon img {
    filter: brightness(0) invert(1);
    /* Ensures icon turns white */
}

.service-icon,
.service-icon img,
.service-box {
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    .services-section h2 {
        font-size: 45px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    .services-section h2 {
        font-size: 40px;
    }
}


/* --------- President ------- */
.president-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left side image */
.image-container {
    flex: 1;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px 15px 0 0;
}

.image-footer {
    background-color: #294C9F;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 0 15px 15px;
}

/* Right side text */
.text-content {
    flex: 1;
    margin-top: 20px;
}

.text-content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #07152F;
}

.quote {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

/* Stats grid */
.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    border-collapse: collapse;
}

.stat-box {
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c327d;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #777;
}

/* Border logic for 2x2 grid */
.stats-wrapper .stat-box:nth-child(1),
.stats-wrapper .stat-box:nth-child(2) {
    border-bottom: 1px dashed #b3a5d6;
}

.stats-wrapper .stat-box:nth-child(1),
.stats-wrapper .stat-box:nth-child(3) {
    border-right: 1px dashed #b3a5d6;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
    .president-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Reorder elements */
    .text-content h2 {
        order: -1;
        /* Moves heading above image */
    }

    .image-container {
        order: 0;
    }

    .quote {
        order: 1;
        margin: 20px auto;
    }

    .stats-wrapper {
        order: 2;
    }
}
@media (max-width: 992px) {
    .text-content h2 {
        font-size: 45px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    .text-content h2 {
        font-size: 40px;
    }
}


/* --------- School ------- */
.schools {
    text-align: center;
    padding: 50px 20px;
    background-color: #2C3E91;
    /* Dark blue background */
    color: white;
}

.schools h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Card Layout */
.school-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 40px;
}

.card {
    width: 370px;
    height: 330px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: left;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card p {
    padding: 17px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* View More Button */
.view-more-container {
    text-align: center;
}

.view-more {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: #fff;
    color: #2C3E91;
}

/* Responsive */
@media (max-width: 768px) {
    .school-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
@media (max-width: 992px) {
    .schools h2 {
        font-size: 45px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    .schools h2 {
        font-size: 36px;
    }
}


/* --------- Students ------- */
.testimonial-section {
    padding: 60px 20px;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 60px;
    margin-bottom: 50px;
    color: #0a1a44;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1580px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: left;
    color: #333;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: #1e2a69;
    color: #fff;
    transform: translateY(-5px);
}

.testimonial-card:hover .testimonial-header span {
    color: #fff;
}

.testimonial-card:hover .stars {
    color: #FFD700;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-header span {
    font-size: 14px;
    color: #777;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #6A6B6C;
}

.testimonial-card:hover {
    background: #1e2a69;
    /* blue background */
    color: #fff;
    /* default text color turns white */
}

.testimonial-card:hover h3,
.testimonial-card:hover span,
.testimonial-card:hover p {
    color: #fff;
    transition: color 0.4s ease;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    transition: color 0.4s ease;
}
@media (max-width: 992px) {
    .testimonial-section h2 {
        font-size: 45px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    .testimonial-section h2 {
        font-size: 40px;
    }
}


/* --------- Footer ------- */
footer {
    background: #1f2c74;
    color: white;
    padding: 40px 20px 20px;
  }
  
  /* Top Section */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 140px 0 140px;
  }
  
  .footer-logo img {
    max-height: 100px;
    max-width: 210px;
    background: white;
    border-radius: 5px;
    padding: 5px;
  }
  
  .footer-contact p {
    margin: 6px 0;
    font-size: 18px;
    line-height: 1.4;
  }
  
  /* Info Section using GRID */
  .footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
    padding-top: 30px;
  }
  
  .footer-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .footer-info p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Bottom Section */
  .footer-bottom {
    position: relative;
    margin-top: 20px;
    padding: 20px 65px 0 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    margin-left: 35px;
    height: 1px;              /* height of the "line" */
    background: white;        /* line color */
}
  
  .footer-bottom p {
    font-size: 15px;
  }
  
  .social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ffd700;
  }
  .social_ico{
    text-align: end;
  }
  /* 📱 Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact p {
      font-size: 16px;
    }
    .footer-bottom {
      flex-direction: column;
      /* text-align: center; */
      margin-right: 40px;
    }
    .copy_right{
        text-align: center;
    }
    .social_ico{
        text-align: center;
    }
    .footer_top_items{
        text-align: center;
    }
    .footer_top_items_email{
        padding-top: 50px;
    }
    .footer_icons{
        margin-bottom: 20px;
    }
    .navbar-nav {
        padding-left: 0;
    }
    .result_section{
        margin: -15px 30px 30px 30px;
        font-size: 25px;
    }
    .result-box, .result-box1{
        font-size: 25px;
    }
    .banner-content h1{
        font-size: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-contact p,
    .footer-info p {
      font-size: 14px;
    }
    .social-icons a {
      font-size: 16px;
      margin: 0 8px;
    background-color: white;
    }
    
  }

  .copy_right a{
    text-decoration: none;
    color: white;
    border-radius: 50px;
    padding: 5px;
  }
  .copy_right a:hover{
    color: white;
  }





/* --------- Downloads css ------- */
.inner-banner {
    position: relative;
    background: url('images/innerbanner.jpg') center center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .inner-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Dark overlay */
  }
  
  .inner-banner .container {
    position: relative;
    z-index: 2;
  }
  
  .inner-banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .inner-banner-content p {
    font-size: 18px;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .inner-banner {
      min-height: 250px;
    }
    .inner-banner-content h1 {
      font-size: 36px;
    }
    .inner-banner-content p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .inner-banner {
      min-height: 200px;
      padding: 20px;
    }
    .inner-banner-content h1 {
      font-size: 28px;
    }
    .inner-banner-content p {
      font-size: 14px;
    }
  }



/* --------- Career css ------- */
.inner-banner1 {
    position: relative;
    background: url('images/ChatGPT Image Oct 4, 2025, 04_18_28 PM.png') center center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
  }
  
  .inner-banner1::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
  }
  
  .inner-banner1 h1,
  .inner-banner1 p {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .inner-banner1 h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
  }
  
  .inner-banner1 p {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    margin-top: 10px;
  }
  
  /* ===== CAREER CARDS ===== */
  .career-card {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .career-img-wrapper {
    background: #f9f9f9;
    padding: 15px;
    text-align: center;
  }
  
  .career-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.4s ease;
  }
  
  .career-card:hover .career-img {
    transform: scale(1.05);
  }
  
  .career-body {
    padding: 15px;
  }
  
  .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2e3d91, #4b63d4);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-download i {
    font-size: 16px;
  }
  
  .btn-download::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
  }
  
  .btn-download:hover::after {
    left: 120%;
    transition: 0.6s ease;
  }
  
  .btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(46, 61, 145, 0.4);
    color: white;
  }
  
  /* ===== RESPONSIVE FIXES ===== */
  @media (max-width: 992px) {
    .career-img {
      max-height: 350px;
    }
  }
  
  @media (max-width: 768px) {
    .inner-banner1 {
      min-height: 220px;
      background-position: center top;
      padding: 60px 15px;
    }
  
    .career-card {
      margin-bottom: 20px;
    }
  
    .career-img {
      max-height: 280px;
    }
  
    .btn-download {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .inner-banner1 {
      min-height: 180px;
      padding: 40px 10px;
    }
  
    .career-img {
      max-height: 220px;
    }
  
    .btn-download {
      font-size: 0.85rem;
      padding: 8px 14px;
    }
  }