/* ================= GLOBAL FONT ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ================= BODY ================= */
body {
  font-family: 'Inter', sans-serif;
}

.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  margin: 10px 0;
}

.header-container {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  ;
}

.logo img {
  max-height: 45px;
  width: auto;
}

.contact a {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #C90416;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-height: 30px;
  }
}

@media (max-width: 768px) {
  .contact a {
    font-size: 14px;
    white-space: nowrap;
    margin-left: 10px;
  }
}

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}


.slider {
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Default hide mobile */
.slide-mob {
  display: none;
}

.slide-desktop,
.slide-mob {
  min-width: 100%;
}

.slide-desktop img,
.slide-mob img {
  width: 100%;
  /* object-fit: cover; */
}


/* 💻 Desktop */
@media (min-width: 992px) {
  .slide-desktop {
    display: block;
  }

  .slide-desktop img {
    aspect-ratio: 3/1;
  }
}

/* 📱 Tablet + Mobile */
@media (max-width: 991px) {
  .slide-desktop {
    display: none;
  }

  .slide-mob {
    display: block;
  }

  .slide-mob img {
    aspect-ratio: 3/3;
  }
}


.section-header {
  text-align: center;
  margin-bottom: 20px;
  border-radius: 12px;
}

.section-header h2 {
  color: #C90416;  
  margin-bottom: 15px;
  /* padding: 20px 15px; */
}

.course-container {
  /* max-width: 1200px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 10px 20px
}

.card {
  background: #fff;
  /* border-radius: 16px; */
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.card h3 {
  color: #182b53;
  margin-bottom: 10px;
  text-align: left
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 5px 0;
  text-align: left
}

.read-more {
  display: none

}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.btn {
  padding: 8px 14px;
  border: none;
  /* border-radius: 6px; */
  cursor: pointer;
  font-size: 13px;
}

.btn.read {
  background: #c90416;
  color: #fff;
  border-radius: 0px;
  width: 100%;
}

.btn.fee {
  background: #C90416;
  color: #fff;
  border-radius: 0px;
}

.card ul {
    text-align: left;
}

@media(max-width:1024px) {

  .container,
  .course-container {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {

  .container,
  .course-container {
    grid-template-columns: 1fr
  }


  .section-header h2{
    font-size: 22px;
  }

  .gu-recruiters h2{
font-size: 22px;
  }

  .gu-mentor h2{
    font-size: 22px;
  }

  .gu-gallery h2{
    font-size: 22px;
  }

  .gu-students h2{
    font-size: 22px;
  }

  .modal-title{
  font-size: 22px;
  } 

  .card h3{
    font-size: 20px;
  }

}


/* ===== PROGRAMS MODAL - PREMIUM UNIVERSITY STYLE ===== */
.programs-modal {
    max-height: 75vh;
    overflow-y: auto;
    padding: 20px;
    line-height: 1.7;
    background: #fff;
    border-radius: 12px;
}

/* Smooth Scroll */
.programs-modal {
    scroll-behavior: smooth;
}

/* Scrollbar */
.programs-modal::-webkit-scrollbar {
    width: 6px;
}
.programs-modal::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

/* ===== HEADINGS ===== */
.programs-modal h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
    border-left: 4px solid #C90416;
    padding-left: 12px;
    text-align: left;
}

.programs-modal h3 {
    margin-top: 28px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    position: relative;
    padding-bottom: 6px;
}

/* Underline Accent */
.programs-modal h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #C90416;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* ===== TEXT ===== */
.programs-modal p {
    font-size: 14.5px;
text-align:left;
    color: #4b5563;
    margin-top: 10px;
}

/* ===== LISTS ===== */
.programs-modal ul {
    padding-left: 0;
    margin-top: 10px;
}

.programs-modal li {
    list-style: none;
    font-size: 14.5px;
text-align:left;
    color: #374151;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

/* Custom Bullet */
.programs-modal li::before {
    content: "•";
text-align:left;
    color: #C90416;
    position: absolute;
    left: 0;
    font-size: 18px;
    top: -1px;
}

/* ===== SECTION SPACING ===== */
.programs-modal h3 + p,
.programs-modal h3 + ul {
    margin-top: 8px;
}

/* ===== CARD-LIKE SECTIONS ===== */
.programs-modal h3,
.programs-modal p,
.programs-modal ul {
    background: #fafafa;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: left;
}

/* ===== MODAL CONTAINER ===== */
.modal-content {
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}


.highlight-para {
  position: relative;
  padding: 5px;
  color: #000 !important;
  z-index: 1;
}

.highlight-para::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #C90416;
  opacity: 0.4; /* adjust opacity here */
  z-index: -1;
  border-radius: 0px; /* optional */
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .programs-modal {
        max-height: 80vh;
        padding: 20px;
    }

    .programs-modal h2 {
        font-size: 22px;
    }

    .programs-modal h3 {
        font-size: 16px;
    }

    .programs-modal p,
    .programs-modal li {
        font-size: 13.5px;
    }
}


.mainBody{max-width:1330px;width:100%;margin:auto;}
.mainBody .admission-section .form-box .custom-npf iframe{height:580px !important;}
@media screen and (max-width:640px) {
  .mainBody .admission-section .form-box .custom-npf iframe{height:620px !important;}
}

/* SECTION-RECRUITERS */

.gu-recruiters {
  padding: 10px 20px;
  text-align: center;
  background: #f8fafc;
  font-family: sans-serif;
}

.gu-recruiters h2 {
  color: #C90416;
  margin-bottom: 10px;
}

.gu-recruiters p {
  color: #666;
  margin-bottom: 20px;
}

/* SLIDER WRAPPER */
.gu-slider-container {
  position: relative;
  margin: auto;
  padding: 0 50px; /* Space for arrows */
}

.gu-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.gu-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GRID SETUP */
.gu-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  column-gap: 20px;
  row-gap: 20px; 
  padding: 10px 0;
  box-sizing: border-box;
  align-items: center; 
}

/* LOGO STYLING */
.gu-slide img {
  width: 100%;
  height: 100px; 
  object-fit: contain;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

/* ARROWS */
.gu-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #C90416;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.gu-arrow:hover {
  background: #C90416;
}

.gu-arrow.left { left: 0; }
.gu-arrow.right { right: 0; }

/* RESPONSIVE BREAKPOINTS */
@media(max-width:992px){
  .gu-slide { grid-template-columns: repeat(4, 1fr); }
}

@media(max-width:768px){
  .gu-slide { grid-template-columns: repeat(3, 1fr); }
  .gu-slider-container { padding: 0 40px; }
}

@media(max-width:480px){
  .gu-slide { grid-template-columns: repeat(2, 1fr); }
  .gu-recruiters { padding: 40px 10px; }
}


/* ================= EVENTS Gallery ================= */

.gu-gallery {
  padding: 10px 20px;
  text-align: center;
}

.gu-gallery h2 {
  margin-bottom: 25px;
  color: #C90416;
}

/* COLLAGE GRID */
.gu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}

.gu-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  /* border-radius: 10px; */
  transition: 0.3s;
}


/* COLLAGE STYLE */
.gu-gallery-grid img:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.gu-gallery-grid img:nth-child(5) {
  grid-row: span 2;
}

.gu-gallery-grid img:nth-child(9) {
  grid-column: span 2;
}

/* LIGHTBOX */
.gu-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.gu-lightbox img {
  max-width: 90%;
  max-height: 80%;

}

/* CLOSE */
.gu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* NAV */
.gu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
}

.gu-nav.left { left: 20px; }
.gu-nav.right { right: 20px; }

/* COUNTER */
.gu-counter {
  color: #fff;
  margin-top: 15px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .gu-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gu-gallery-grid img:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.gu-gallery-grid img:nth-child(5) {
  grid-row: span 2;
}

.gu-gallery-grid img:nth-child(9) {
  grid-column: span 2;
}

}

@media(max-width:600px){
  .gu-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }


  .gu-gallery-grid img:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.gu-gallery-grid img:nth-child(5) {
  grid-row: span 1;
}

.gu-gallery-grid img:nth-child(9) {
  grid-column: span 1;
}
  
}

/*   GU-Mentor  */

.gu-mentor {
  padding: 10px 20px;
  background: #f8fafc;
  text-align: center;
}

.gu-mentor h2 {
  margin-bottom: 30px;
  color: #C90416;
}

/* WRAPPER */
.gu-mentor-wrapper {
  position: relative;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.gu-mentor-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  cursor: grab;
}

/* CARD */
.gu-mentor-card {
  min-width: calc((100% - 60px) / 4); /* 4 in row */
  background: #fff;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.gu-mentor-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gu-mentor-card h3{

  color: #C90416;
  font-size: 16px;
}

.gu-mentor-card p {
  padding: 10px;
  font-weight: 600;
font-size: 10px;
}

/* ARROWS */
.gu-mentor-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #C90416;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.gu-mentor-arrow.left { left: 10px; }
.gu-mentor-arrow.right { right: 10px; }

/* RESPONSIVE */
@media(max-width:992px){
  .gu-mentor-card {
    min-width: calc((100% - 40px) / 3);
  }
}

@media(max-width:600px){
  .gu-mentor-card {
    min-width: calc((100% - 20px) / 2);
  }

  .gu-mentor-card p {

  font-size: 8px;
}

}


/* SECTION */
.gu-students {
  padding: 10px 20px;
  background: #f8fafc;
  text-align: center;
}

.gu-students h2 {
  color: #C90416;
  margin-bottom: 20px;
}

/* SLIDER */
.gu-student-slider {
  position: relative;
  margin: auto;
  overflow: hidden;
}

/* TRACK */

/* CARD */
.gu-student-card {
  min-width: calc(100% / 4 - 14px);
  background: #fff;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}


.gu-student-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  margin-bottom: 12px;
}

.gu-student-card h3 {
  color: #C90416;
  font-size: 16px;
}

.gu-student-card p {
  font-size: 13px;
  color: #666;
  margin: 8px 0;
}

.gu-student-card button {
  background: #C90416;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}


#guStudentTrack:active {
  cursor: grabbing;
}

.gu-student-card img {
  pointer-events: none; 
}

  #guStudentTrack {
  pointer-events: auto;
}

/* ARROWS */
.gu-student-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #C90416;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  /* padding: 10px 14px; */
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.gu-student-arrow.left { left: 10px; }
.gu-student-arrow.right { right: 10px; }

/* RESPONSIVE */
@media(max-width:992px){
  .gu-student-card {
    min-width: calc(100% / 2 - 10px);
  }
}

@media(max-width:600px){
  .gu-student-card {
    min-width: 100%;
  }
}

/* ADD this to your existing student CSS */

.gu-student-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  cursor: grab;
}

.gu-student-track:active {
  cursor: grabbing;
}


/* Prevent breaking */
.gu-student-slider {
  overflow: hidden;
}

.gu-student-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}


.admission-section {
  background: #fff;
  margin-top: 30px;
}


.admission-heading {
  font-weight: 700;
  color: #C90416;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 22px);
  text-align: center;
}


.admission-wrapper {
  margin: 0 30px;
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(400px, 60%);
  gap: 20px;
}


.gu-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);

    align-items: center;
    justify-content: center;
}

.gu-modal.active {
    display: flex;
}

.gu-modal-content {
    background: #fff;
    /* margin: 10% auto; */
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 0px;
    position: relative;
}

.gu-close {
    position: absolute;
    right: 5px;
    top: -10px;
    /* font-size: 24px; */
    cursor: pointer;
    color: #C90416;
}


.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
    background: #fff;
    /* border-radius: 10px; */
    overflow: hidden;
}

/* Header */
.fee-table th {
    background: #C90416;
    color: #fff;
    text-align: left;
    padding: 10px;
    font-size: 15px;
}

/* Rows */
.fee-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

/* Alternate Row */
.fee-table tr:nth-child(even) td {
    background: #fafafa;
}

/* Hover Effect */
.fee-table tr:hover td {
    background: #f3f4f6;
}

/* Mobile */
@media (max-width: 768px) {
    .fee-table {
        font-size: 13px;
    }
}



.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;

  margin: 0 auto 20px;
  /* center horizontally */
  gap: 15px;
}

.form-tabs button {
  padding: 10px;
  border: 2px solid #C90416;
  background: #fff;
  color: #C90416;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.form-tabs .active {
  background: #C90416;
  color: #fff;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 12px;
  border: 2px solid #C90416;
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 15px 0;
}

.mobile-field {
  display: flex;
  gap: 2px;
}

.form-box select.country-code {
  padding: 12px;
  border: 2px solid #C90416;
  width: auto;
}

.captcha-box {
  border: 2px solid #C90416;
  padding: 5px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.captcha-box span {
  font-size: 20px;
  font-weight: 400;
  padding-right: 100px;
}

.consent {
  display: inline-flex;
  font-size: 14px;
  margin: 15px 0;
}

.consent p {
  font-size: 15px;
  padding-left: 20px;
}

.form-box input[type=checkbox] {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #C90416;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: background-color .2s ease;
}

.form-box input[type=checkbox]:checked {
  background: #C90416;
}

.form-box input[type=checkbox]:checked:after {
  content: "✔";
  color: #fff;
  font-size: 20px;
}

.form-box input[type=checkbox]:focus-visible {
  outline: 2px solid #C90416;
  outline-offset: 2px;
}

.apply-btn {
  width: 100%;
  background: #C90416;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width:900px) {
  .admission-wrapper {
    grid-template-columns: 1fr;
    margin: 20px;
  }
}

@media (max-width:900px) {
  .admission-image {
    display: none;
  }
}

@media (max-width:900px) {
  .admission-image-mobile {
    display: block;
  }
}

@media (max-width:900px) {
  .admission-desc {
    padding: 0 30px;
  }
}

@media (max-width:900px) {
  .form-box input[type=checkbox] {
    width: 0;
    height: 0;
    top: 12px;
    position: relative;
  }
}

@media (max-width:600px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .admission-heading {
    font-size: 16px;
  }
}

@media (max-width:600px) {
  .apply-btn {
    font-size: 15px;
  }
}

@media (max-width:600px) {
  .form-box input[type=checkbox] {
    width: 0;
    height: 0;
    top: 12px;
    position: relative;
  }
}


.gu-footer {
  font-family: sans-serif;
  color: #fff;
}

.footer-main {
  background: #C90416;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 50px;
  padding: 25px 5% 50px;
  border-bottom: 3px solid rgba(255, 255, 255, .6);
}

.footer-accordion {
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  padding: 16px 0;
}

.footer-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
}

.footer-accordion-header span {
  font-size: 22px;
  font-weight: 700;
  transition: transform .3s ease;
}

.footer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.footer-accordion-content p {
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.6;
  margin: 10px 0 0;
  text-align: left;
}

.footer-accordion-content a {
  color: #fff;
  text-decoration: none;
}

.footer-accordion.active .footer-accordion-content {
  max-height: 500px;
}

.footer-accordion.active .footer-accordion-header span {
  transform: rotate(45deg);
}

.map-col iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.map-col p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.footer-socials {
  background: #C90416;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-socials img {
  width: 26px;
}

.footer-bottom {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 14px 5%;
  font-size: clamp(8px, 1vw, 13px);
  white-space: nowrap;
  text-align: center;
}

.footer-bottom a {
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

@media (max-width:900px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 20px 6% 40px;
  }
}

@media (max-width:900px) {
  .map-col p {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
  }
}

@media (max-width:480px) {
  .logo-track-2 img {
    height: 36px;
  }
}

@media (max-width:480px) {
  img.logo-img {
    margin-bottom: 18px !important;
  }
}

.phone-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.phone-float img {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .phone-float img {
    width: 50px;
    height: 50px;
  }
}

/* ========================
   BASE (DESKTOP)
======================== */
.admission-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  background: #f7f7f7;
  padding: 15px 25px;
}

.banner-text p {
  text-align: justify;
  line-height: 1.8em;
  font-size: 16px;
}

.banner-content p {
  font-size: 16px;
  margin-top: 20px;
  text-align: justify;
}

/* buttons container */
.banner-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  /* prevent wrapping */
  justify-content: center;
  margin-bottom: 20px;
}

/* buttons */
.banner-btn {
  flex: 1;
  /* equal width */
  text-decoration: none;
  padding: 12px 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #C90416;
  white-space: nowrap;
  border: none;
}

.banner-btn:hover {
  color: #fff;
  /* prevents blue */
  text-decoration: none;
  /* removes underline */

}




/* TABS */
.fee-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tab-btn {
  flex: 1;
  padding: 8px;
  border: none;
  background: #eee;
  cursor: pointer;
  
}

.tab-btn.active {
  background: #C90416;
  color: #fff;
}

/* CONTENT */
.fee-content {
  display: none;
  text-align: left;
}

.fee-content.active {
  display: block;
}

/* TITLE */
.modal-title {
  text-align: center;
  color: #C90416;
  margin-bottom: 20px;
}

/* GRID */
.admission-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.ad-card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  padding: 18px;
  
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
  border-top: 4px solid #C90416;
}


/* HEADING */
.ad-card h4 {
  color: #0b2a5b;
  margin-bottom: 10px;
}

/* LIST */
.ad-card ul {
  list-style: none;
  padding: 0;
}

.ad-card li {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

/* PRICE */
.ad-card li span {
  font-weight: bold;
  color: #C90416;
}

/* MOBILE */
@media(max-width:600px){
  .admission-cards {
    flex-direction: column;
  }
}



.admission-section {
  overflow: hidden;
}


/* ensure left section stays inside */
.admission-wrapper>div:first-child {
  width: 100%;
  max-width: 100%;
}

/* ========================
   LARGE TABLET / SMALL LAPTOP
   992px – 1200px
======================== */
@media (min-width:900px) and (max-width:1200px) {

  .admission-banner {
    padding: 20px 15px;
  }

  .banner-text,
  .banner-content {
    max-width: 100%;
  }

  .banner-text p {
    font-size: 16px;
    text-align: justify;
  }

  .banner-content h2 {
    font-size: 18px;
  }

  .banner-btn {
    padding: 10px 12px;
    font-size: 16px;
  }

  .banner-buttons {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

/* ========================
   TABLET
======================== */
@media (max-width:991px) {

  .admission-section {
    background: #fff;
    margin-top: 10px;
  }

  .admission-banner {
    padding: 15px 15px;
    gap: 12px;
  }

  .banner-text p {
    text-align: justify;
    font-size: 16px;
  }

  .banner-content p {
    font-size: 16px;
    margin-top: 20px;
  }

  .banner-btn {
    width: 100%;
  }

  .banner-content {
    margin-top: 20px;
  }

  .admission-section {
    background: #fff;
    margin-top: 20px;
  }

  .admission-banner hr {
    display: none;
  }

}

/* ========================
   MOBILE
======================== */
@media (max-width:600px) {

  .admission-banner {
    padding: 20px 15px;
  }

  .banner-buttons {
    gap: 12px;
  }

  .banner-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .banner-text p {
    text-align: justify;
    font-size: 14px;
  }

  .banner-content {
    margin-top: 0px;
  }

  .banner-content p {
    font-size: 14px;
    margin-top: 20px;
  }

  .admission-section {
    background: #fff;
    margin-top: 0px;
  }

}

.admission-banner hr {
  width: 100%;
  margin: 0px auto;
  border: none;
  border-top: 2px solid #C90416;
}