/* navbar */

.main-header {
  background: white;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  position: relative;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  flex-wrap: wrap;
  height: 180px;
  width: 100%;
  max-width: 1200px;
  justify-self: center;
}

/* Logo Block */
.logo-center {
  text-align: center;
}

.school-logo {
  height: 120px;
  margin: 0 auto;
}

.tagline {
  font-size: 12px;
  color: #444;
}

.campus {
  font-weight: bold;
  font-size: 14px;
  color: #004f93;
  text-decoration: underline;
}

/* Links */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: space-between;
}

.nav-left a,
.nav-right a,
.dropbtn {
  font-weight: 600;
  color: #004f93;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown span::after {
  content: "\25BC";
  color: #004f93;
  font-size: 12px;
}

.dropdown:hover .dropbtn + span,
.dropdown:hover .dropbtn {
  color: #d9531e;
}

.dropdown:hover .dropbtn + span::after {
  content: "\25B2";
  color: #d9531e;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  flex-direction: column;
  width: max-content;
  border-top: 2px solid #d9531e;
}

.dropdown-content a {
  padding: 8px 12px;
  text-decoration: none;
  color: #004f93;
  border-bottom: 1px solid #c2c2c2;
  font-size: 12px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* sub-dropdown */
.sub-dropdown {
  position: relative;
  padding: 8px 12px;
  text-decoration: none;
  color: #004f93;
  border-bottom: 1px solid #c2c2c2;
  font-size: 12px;
}

.sub-dropdown-content {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: white;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  flex-direction: column;
  width: max-content;
  border-top: 2px solid #d9531e;
}

.sub-dropdown-content a {
  padding: 8px 12px;
  text-decoration: none;
  color: #004f93;
  border-bottom: 1px solid #c2c2c2;
  font-size: 12px;
}

.sub-dropdown:hover .sub-dropdown-content {
  display: flex;
}

.sub-dropbtn {
  font-weight: 600;
  color: #004f93;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  padding: 0 5px 0 0;
}

.sub-dropdown:hover .sub-dropbtn,
.sub-dropdown:hover .sub-dropbtn + span {
  color: #d9531e;
}

.sub-dropdown:hover .sub-dropbtn + span::after {
  content: "\25B2";
  color: #d9531e;
}

/* Active Dropdown Style */
.dropbtn:hover {
  color: #d9531e;
  font-weight: bold;
}

.navbar-btn {
  position: absolute;
  top: 15px;
  right: 8%;
  display: flex;
  gap: 20px;
}

/* Apply Button */
.admission-btn {
  background-color: #de490e;
  color: white !important;
  padding: 5px 15px;
  border-radius: 24px;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
}

.admission-btn a {
  color: white;
}

.admission-btn a:hover {
  color: white;
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  width: 100%;
  display: none;
  flex-direction: column;
  padding: 10px 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  padding: 10px 0;
  color: #004f93;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav .admission-btn {
  margin-top: 10px;
}

/* Utility */
.hidden {
  display: none;
}


/* === Carousel === */
.swiper-container {
  width: 90%;
  /* max-width: 1100px; */
  margin: 0 auto;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  margin: 10px 100px;
  max-width: 1100px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6) 0 0 10px inset; */
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
}

.swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid white;
  width: 14px;
  height: 14px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: white;
}

.swiper-container {
  padding-bottom: 40px; /* Create space for the pagination dots */
  position: relative;
}

.swiper-pagination {
  position: absolute;
  bottom: 0px !important; /* Push it below the image area */
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-slide-counter {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* === Facilities === */
.facilities {
  padding: 60px 20px;
  text-align: center;
  background-image: url("../images/school-background.webp");
  background-size: cover;
  background-attachment: fixed; /* Optional: Parallax effect */
  padding-top: 80px;
  color: white;
  position: relative;
  /* min-height: 100vh;  */
}

.facilities h2 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #004f93;
}

.facilities .desc {
  max-width: 900px;
  margin: 0 auto 30px;
  color: #004f93;
  text-align: center;
  /* Center align */
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  gap: 25px;
  width: 74%;
  /* padding: 0 20px; */
}

.facility-item {
  /* background: #f9f9f9; */
  padding: 20px;
  border-radius: 12px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.facility-item span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
  color: #e76f00;
}

.facility-item p {
  font-weight: bold;
  font-size: 14px;
  color: #1e3a8a;
}

/* === contact Contact === */
.contact {
  color: white;
  padding: 40px 20px;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.contact-item {
  max-width: 300px;
  text-align: center;
}

.contact-item .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-item a {
  color: #fff;
  text-decoration: underline;
}

/* Container */
.facility-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the items */
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Facility Item */
.facility-item {
  flex: 1 1 22%; /* Approx. 4 per row on big screens */
  min-width: 120px;
  max-width: 220px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Images inside items */
.facility-item img {
  max-width: 50px;
  margin-bottom: 10px;
}

/* Text inside items */
.facility-item p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #1e3a8a;
}

.primary-color {
  color: #004f93;
}

.swiper-container,
.swiper-slide,
.facility-item-mobile img {
  background: transparent !important;
  background-color: transparent !important;
}

/* Optional: If image inside .facility-item-mobile got extra space or border */
.facility-item-mobile img {
  display: block;
  border: none;
  box-shadow: none;
}

/* other browser suppoert */

.nav-left,
.nav-right,
.contact-box,
.facility-grid,
.facilities-mobile-grid,
.facility-item,
.swiper-wrapper,
.swiper-slide,
.swiper-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-container,
.nav-left,
.nav-right,
.mobile-nav,
.contact-box,
.facilities-mobile-grid,
.swiper-button-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.facilities {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* form-btns */
.form-btns { margin-top: 20px; }
.btn-list { list-style: none; padding: 0; margin: 0; text-align: center; }
.comment-form { text-align: left; }

.counter-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.commnet-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.commnet-form-heading h5 {
  font-size: 18px;
  font-weight: normal;
  min-width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

#clockdiv {
  color: #8e8989;
  font-size: 14px;
}

.commnet-form-heading .btn {
  height: auto !important;
  border-radius: 30px;
  font-size: 12px;
  padding: 6px 16px;
}

.commnet-form-heading .btn-warning {
  color: #fff;
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

.commnet-form-heading .btn-warning:hover,
.commnet-form-heading .btn-warning:focus {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.commnet-form-btn-view {
  text-align: left;
}

.commnet-form-btn-view.right {
  text-align: right;
}

.commnet-form-btn-view .btn {
  font-size: 12px;
  padding: 12px 20px;
}

.commnet-form .alert .close {
  background: none;
  border: 0 none;
  padding: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  z-index: 1;
}

/* our-mentors */
.our-mentors {
  color: #fff;
  background-color: var(--bs-secondary);
}

.our-mentors .sec-hader {
  max-width: 950px;
  margin: 0 auto 50px;
  text-align: center;
}

.our-mentors .sec-title {
  color: #fff;
  margin-bottom: 12px;
}

.our-mentors-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000000;
  font-size: 14px;
  height: 100%;
}

.our-mentors-card-img {
  margin: 0;
  width: 50%;
}

.our-mentors-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-mentors-card-img:hover img {
  opacity: 0.8;
}

.our-mentors-card-detail {
  width: 50%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-mentors-card a {
  color: #000000;
}

.our-mentors-card a:hover,
.our-mentors-card a:focus {
  color: var(--bs-primary);
}

.our-mentors-card .loaction-tags {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.our-mentors-card .loaction-tags li {
  margin: 0 0 5px;
  color: #141414;
}

.our-mentors-card h3 {
  font-size: 26px;
}

.our-mentors-card .read-more {
  background: none;
  border: 0 none;
  border-radius: 0;
  padding: 0;
  text-decoration: underline;
  color: var(--bs-primary);
  margin-block-end: 30px;
  text-align: left;
}

.our-mentors-card .read-more:hover,
.our-mentors-card .read-more:focus {
  text-decoration: none;
  color: var(--bs-secondary);
}

.mentorModal .pull-right {
  text-align: right;
}

.notice {
	background:var(--bs-secondary);
	width:100%;
	padding:10.5px 0;
	position: relative;
	z-index:9;
}
.notice p {
	margin-bottom: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0.3px;
}
.notice p a { color: #fff;}
.notice p a:hover { color: #dedede; text-decoration: none;}
.close-notice {
	position: absolute;
	right: 50px;
	top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.close-notice svg {
  width: 20px;
  height: 20px;
	color: #fff;
  display: block;
}

/* registration-form-section */
.registration-form-section {
  position: relative;
}

.registration-form {
  position: relative;
  color: #004f93;
}

.registration-form-heading {
  margin-block-end: 30px;
}

.registration-form-heading p {
  text-align: justify;
}

.registration-form-contents {
  position: relative;
  color: #004f93;
}

.registration-form-contents h5 {
  color: #004f93;
}

.registration-form-contents ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-heading {
  margin-block-end: 25px;
}

.main-heading h2 {
  text-transform: capitalize;
  color: #004f93;
}

.mt-cus {
  margin-top: 4rem;
}

.mb-cus-1 {
  margin-bottom: 1rem;
}
.mt-cus-1 {
  margin-top: 1rem;
}

.mb-cus {
  margin-block-end: 20px;
}

span.mb-cus {
  display: block;
}

small, .small {
  font-size: 85%;
}

.row-blue {
  background-color: #004f93;
  padding: 1.4rem 0 0.5rem;
}

.blue-color-title {
  color: #004f93;
  border-bottom: 1px solid #004f93;
  padding-bottom: 0.4rem;
  font-size: 22px;
}

.text-danger {
  color: #de490e !important;
  font-size: 12px;
}

.row-blue .text-danger {
  color: #fff !important;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group span.text-danger {
  position: absolute;
  left: 0;
  bottom: -20px;
  z-index: 1;
}

.form-group.d-flex {
  gap: 10px;
}

.registration-form {
  font-size: 14px;
}

.registration-form .form-control {
  border: 0 none;
  border-bottom: 1px solid #004f93;
  color: #666;
  height: 49px;
  background: none;
  font-size: 14px;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.registration-form .form-control::placeholder {
  color: #004f93;
}

.registration-form label {
  font-size: 14px;
  color: #004f93;
}

.registration-form .form-control[readonly] {
  /* background-color: #eee; */
  color: #004f93;
}

.registration-form .form-control[type="file"] {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.registration-form .form-control.input-white {
  background-color: #eee;
  border: 1px solid #9e9e9e;
  color: #004f93;
  border-radius: 4px;
  padding: 0 20px;
}

.registration-form .select2-container--default .select2-selection--single {
  background-color: #eee;
  border: 0 none;
  border-bottom: 1px solid #004f93;
}

.registration-form .select2-container .select2-selection--single {
  height: 49px;
  border-radius: 0;
}

.registration-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #004f93;
  line-height: 49px;
}

.registration-form .select2-container--default.select2-container--below .select2-selection--single .select2-selection__rendered {
  color: #004f93;
}

.registration-form .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
}

.registration-form .row-blue .select2-container--default .select2-selection--single {
  background-color: #eee;
  border: 1px solid #9e9e9e;
}

.registration-form .row-blue .select2-container .select2-selection--single {
  border-radius: 4px;
}

.select2-container--default .select2-results__option--disabled {
  color: #fff;
}

.registration-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 49px;
}

.registration-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-left: solid 1px #888;
  border-top: solid 1px #888;
  height: 12px;
  width: 12px;
  transform: rotate(-135deg);
  margin-top: -8px;
}

.registration-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: #888;
  border-width: 1px;
  transform: rotate(45deg);
  margin-top: -2px;
}

.cart-table-holder .table-responsive {
  border: 1px solid #ddd;
}

.reg-table > :not(caption) > * > * {
  box-shadow: none;
  border: 0 none;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #004f93;
}

.reg-table > :not(caption) > * > th {
  border-top: 0 none;
  padding: 0.5rem;
}

.reg-table > :not(caption) > * > th:first-child,
.reg-table > :not(caption) > * > td:first-child {
  text-align: center;
}

table.reg-table tbody input[type="text"], 
table.reg-table tbody select {
  height: 35px;
  border-radius: 0;
  border: 0 none;
  border-bottom: 1px solid #004f93;
  padding: 0;
  font-size: 14px;
}

table.reg-table tbody input[type="text"]:focus-visible,
.registration-form .form-control:focus-visible {
  outline-color: #004f93;
  outline: 0;
}

table.reg-table ::placeholder {
  color: #004f93;
}

.registration-form .product-disc .select2-container .select2-selection--single {
  height: 35px;
}

.registration-form .product-disc .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px;
}

.registration-form .product-disc .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
}

.registration-form .product-disc .select2-container--default .select2-selection--single .select2-selection__arrow b {
  height: 8px;
  width: 8px;
  margin-top: -6px;
}

.registration-form .product-disc .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  margin-top: -4px;
}

.form-btns {
	text-align: center;
	padding: 30px 0 0;
}
.form-btns .btn-list {
	display: inline-block;
}

.banner-section {
  min-height: calc(100vh - 230px);
  transition: 0.4s ease-in-out;
  padding-block: 80px;
}

body:has(.notice[style="display: none;"]) .banner-section {
  min-height: calc(100vh - 180px);
}

.banner-background img {
  object-fit: cover;
}

.registration-form input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 16px;
  width: 16px;
  height: 16px;
  border: 1px solid #004f93;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  margin: 0;
  box-sizing: border-box;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.registration-form input[type="checkbox"]:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,122,0,0.14);
  border-color: #de490e;
}

/* draw the check mark using ::after */
.registration-form input[type="checkbox"]::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #de490e;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .12s ease-in-out;
  pointer-events: none;
}

/* show tick when checked */
.registration-form input[type="checkbox"]:checked{
  border-color: #de490e;
  background: #fff; /* stays white */
}
.registration-form input[type="checkbox"]:checked::after{
  transform: rotate(45deg) scale(1);
}

/* .ui-datepicker */
.ui-datepicker .ui-datepicker-title select {
  padding: 4px 10px;
  font-size: 14px;
}

.ui-datepicker table {
  font-size: 12px;
}

.ui-widget-header {
  background: var(--bs-secondary);
  color: #fff;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: var(--bs-primary);
  color: #fff;
}

#char {
  color: #004f93;
}

.declar-form-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.declar-form-group input[type="checkbox"] {
  margin-block-start: 4px;
}

/* Responsive */
@media (max-width: 1399px) {
   .form-btns .btn { font-size: 16px; padding: 12px 30px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .counter-container {
    text-align: center;
    margin-top: -44px;
  }
}

@media (max-width: 1199px) {
  .our-mentors-card-img {
    width: 100%;
  }

  .our-mentors-card-detail {
    width: 100%;
    padding: 34px 40px;
  }

   .our-mentors-card .read-more {
    margin-block-end: 15px;
  }

  .registration-form-section .container {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-container {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
    /* height: 200px; */
  }

  .dropdown-menu {
    padding: 0;
    border: 0 none;
  }

  .mobile-sub-dropdown .nav-link {
    font-size: 16px;
  }

  .mobile-sub-dropdown .btn {
    font-size: 12px;
  }

  .mobile-nav .navbar-nav .btn { padding: 8px 0 8px 10px;}
  .mobile-nav .navbar-nav .nav-link.btn { padding: 8px 12px 7px; }
  .mobile-nav .nav-item:has(.btn) { padding-left: 23px; }
  .mobile-nav .mobile-sub-dropdown .nav-item:has(.btn) { padding-left: 21px; }
   .site-logo img {
    width: 122px;
  }
}

@media (min-width: 992px) {
  .swiper-slide-counter {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    position: absolute;
    z-index: 2;
    bottom: 20px;
    right: 10px;
    background-color: #004f93;
    padding: 20px;
    left: auto;
  }

  .swiper-button-container {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
  }

  .gallery {
    padding: 70px 0 0px !important;
  }
}

@media (max-width: 991px) {
  .gallery-container {
    background-image: url("../images/map-background-ipad.webp");
  }

  .swiper-button-container {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .swiper-button-prev,
  .swiper-button-next,
  .swiper-pagination {
    position: relative;
    margin-top: 0;
    top: auto;
    bottom: auto;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 30px;
  }

  .swiper-slide img {
    width: 100%;
    object-fit: cover;
    margin: 40px 20px;
    padding: 0;
    /* box-shadow: 0 0 54px rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6) 0 0 250px inset; */
  }
  .form-btns { margin-top: 16px; }
  .our-mentors-card-img {
    height: 520px;
    overflow: hidden;
  }

  .banner-section {
    min-height: calc(100vh - 210px);
    padding-block: 60px;
  }

  body:has(.notice[style="display: none;"]) .banner-section {
    min-height: calc(100vh - 160px);
  }
}

/* Responsive: Adjust background for small screens */
@media (max-width: 768px) {
  .facilities {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* min-height: 100vh;  */
  }

  .facilities-mobile-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .facility-item:nth-last-child(-n + 3) {
    flex-basis: none;
    width: 75px;
    height: 100px;
  }

  .facility-item-mobile img {
    width: 75px;
    height: 100px;
  }

  .facility-item-mobile p {
    color: #004f93;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
  }
}

/* Responsive: small screens (2 per row) */
@media screen and (max-width: 768px) {
  .facilities {
    padding: 30px 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
  }

  .facilities h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #004f93;
  }

  .facilities .desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: #004f93;
  }

  .facilities-mobile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }

  .facility-item-mobile {
    flex: 0 0 calc(50% - 10px); /* Two items per row */
    box-sizing: border-box;
    margin-bottom: 15px;
    text-align: center;
  }

  .facility-item-mobile img {
    width: 75px;
    height: 100px;
    margin-bottom: 8px;
    justify-self: center;
  }

  .facility-item-mobile p {
    font-size: 14px;
    font-weight: bold;
    color: #004f93;
    margin: 0;
    margin-top: 10px;
  }

  .swiper-button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
    /* background-color: #004f93; */
    border-radius: 50%;
    z-index: 10;
  }
 .our-mentors-card {
  height: auto;
  margin-block-end: 24px;
 }
 .our-mentors-card-img img {
  height: auto;
  }
}

/* For very small screens like phones (480px and below) */
@media screen and (max-width: 576px) {
  .facility-item-mobile {
    flex: 0 0 40%; /* One item per row */
    margin-bottom: 20px;
  }

  .facilities-mobile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 0 5px;
  }

  .facility-item-mobile {
    width: 48%;
    box-sizing: border-box;
    margin-bottom: 15px;
    text-align: center;
  }

  .facility-item-mobile img {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto;
  }

  .facility-item-mobile p {
    font-size: 12px;
    color: #004f93;
    font-weight: bold;
    margin: 0;
    margin-top: 20px;
  }

  .swiper-button-container {
    padding: 5px 0;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 26px;
    height: 26px;
  }
 .form-btns .btn { font-size: 14px; padding: 10px 24px; }
 .commnet-form-btn-view { margin-block: 6px; }
 .commnet-form-btn-view, .commnet-form-btn-view.right { text-align: center; }
 .swal2-content { font-size: 14px; }
 .swal2-title { font-size: 18px; }
  .our-mentors-card-img {
    height: 420px;
  }
  .notice {
    padding-inline: 30px;
  }
  .close-notice {
    right: 10px;
  }
}

@media screen and (max-width: 480px) {
  .facility-item-mobile {
    flex: 0 0 40%; /* One item per row */
    margin-bottom: 20px;
  }

  .facilities h2 {
    font-size: 20px;
  }

  .facility-item-mobile p {
    font-size: 13px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 25px;
    height: 25px;
  }

  .form-btns .btn-list { display: block; }
  
 .form-btns .btn { width: 50%; }
}

@media screen and (max-width: 479px) {
  .our-mentors-card-img {
    height: 320px;
  }
}

@media screen and (max-width: 320px) {
  .mobile-nav {
    padding: 10px 0px;

  }
}