body {
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #121212;
}

p,
.paragraph {
  font-weight: 500;
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
  font-family: 'Times New Roman', Times, serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e4b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 47px;
}

@media (max-width: 575px) {

  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-size: 40px;
}

@media (max-width: 575px) {

  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}

@media (max-width: 575px) {

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

h4,
.h4 {
  font-size: 20px;
}

@media (max-width: 575px) {

  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 15px;
}

@media (max-width: 575px) {

  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}

@media (max-width: 575px) {

  h6,
  .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #50addb;
  color: #fff;
}

.btn-primary::before {
  background: #000000;
}

.btn-primary:active {
  background: #50addb !important;
  color: #ffffff;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #000000;
  color: #50addb;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #50addb;
  border-color: #50addb;
}

.btn-secondary {
  background: #fff;
  color: #50addb;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #000000;
}

.btn-secondary:active {
  background: #000000;
  color: #fff;
  border: 1px solid #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #fff;
  border: 1px solid #000000;
}

.btn-primary-outline {
  border: 1px solid #50addb;
  color: #50addb;
  background: transparent;
}

.btn-primary-outline::before {
  background: #50addb;
}

.btn-primary-outline:hover {
  background: #50addb;
  color: #ffffff;
}

.btn-primary-outline:active {
  background: #50addb;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #50addb;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #50addb;
}

a.text-primary:hover {
  color: #50addb !important;
}

a.text-light:hover {
  color: #50addb !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #50addb;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 10px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a3742;
  opacity: .5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #50addbd9 !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffffff !important;
}

.text-color {
  color: #ffffff;
}

.text-light {
  color: #47475a !important;
}

.text-lighten {
  color: #ffffff !important;
}

.text-muted {
  color: #171717 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: 'Montserrat', sans-serif;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 250px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #50addb;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
  transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37;
  }
}

.navigation {
  background-image: linear-gradient(to right, transparent 50%, #50addb 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #50addb 30%);
  }
}

.navbar-nav {
  padding-left: 30px;
  background: #ffffff00;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.navbar-brand .logo {
  width: auto;
  height: auto;
  max-height: 88px;
  padding-right: 130px;
}

.nav-bg {
  background-color: #ffffff;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 500;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgb(47 144 243) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 600;
}

/* Active Nav Link */
.navbar-light .navbar-nav .nav-link.active {
  color: #ffffffa2;
  background-color: #96cbeb;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffffa2;
  background-color: #96cbeb;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
  color: #000000a9;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 17px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #50addb;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: unset;
    transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #50addb;
  background: transparent;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .mobile-header {
    position: relative;
    background: white;
    z-index: 1000;
  }

  .mobile-logo {
    margin: 0 auto;
    box-shadow: 0 2px 6px #b2b2b3;
  }

  .mobile-header .navbar-nav {
    padding: 15px 0;
  }

  .mobile-header .nav-link {
    padding: 12px 20px !important;
    border-bottom: 1px solid #eee;
  }

  .mobile-header .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    background: #f8f9fa;
    margin-left: 15px;
  }

  .mobile-header .dropdown-item {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .mobile-header .navbar-toggler {
    margin: 10px auto;
    border-color: rgba(0, 0, 0, 0.1);
    margin-right: 0px;
  }

  .mobile-header .text-dark {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .mobile-header h5 {
    font-size: 1.1rem;
  }

  .mobile-header small {
    font-size: 0.75rem;
  }

  .mobile-header .dropdown-menu {
    margin-left: 0;
  }
}

.hero-section {
  padding: 300px 260px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #50addb;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #50addb;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  width: auto;
  /* Ensures equal width */
  height: 58px;
  /* Ensures equal height */
  object-fit: contain;
  /* Keeps image aspect ratio */
  display: block;
  margin: 0px auto 0px;
  /* Centers the image */
}

.feature-blocks {
  margin-top: 20px;
  padding-left: 100px;
  padding-top: 60px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }

  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }

  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* Ensure equal height cards */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body {
  flex-grow: 1;
}

.card-img-top {
  object-fit: cover;
  height: 250px;
  width: 100%;
}

/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #50addb;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #50addb;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #50addb;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #50addb 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #50addb;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #091c36;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #32322f !important;
  padding-top: 50px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #50addb;
}

.filter-controls li:hover {
  color: #50addb;
}

/*# sourceMappingURL=maps/style.css.map */

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
::-webkit-scrollbar {
  display: none;
}

.fadeInDown {
  animation: fadeInDown 2s ease-in-out;
}

.fadeInUp {
  animation: fadeInUp 2s ease-in-out;
}

.fadeInLeft {
  animation: fadeInLeft 2s ease-in-out;
}

.fadeInRight {
  animation: fadeInRight 2s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.table th {
  vertical-align: middle;
  padding: 30px;
  border: 1px solid #7bcef86b;
  background-color: #50addb;
}

.table th {
  font-weight: bold;

}

.table td {
  vertical-align: middle;
  padding: 30px;
  border: 1px solid #50addb6b;
}

/* WHATSAPP, CALL BUTTONS */

.fixed-buttons {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* WhatsApp Button Styling */
.btn-whatsapp-pulse {
  color: white;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s ease-out infinite;
  transition: transform 0.3s ease-in-out;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-pulse:hover {
  transform: scale(1.2);
}

.btn-whatsapp-pulse i {
  font-size: 22px;
}

.whatsapp-button {
  background: #00c347;
  border: 1px solid white;
}

.call-button {
  background: #000000;
  border: 1px solid white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 10px;
    right: 10px;
    gap: 15px;
  }

  .btn-whatsapp-pulse {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .btn-whatsapp-pulse i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .fixed-buttons {
    bottom: 8px;
    right: 8px;
    gap: 10px;
  }

  .btn-whatsapp-pulse {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .btn-whatsapp-pulse i {
    font-size: 18px;
  }
}

/* Facility Image Hover Effect */
.facility-image-container {
  position: relative;
  overflow: hidden;
}

.facility-image-container img {
  transition: transform 0.3s ease-in-out;
}

.facility-image-container:hover img {
  transform: scale(1.1);
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 30px;
}

.facility-image-container:hover .overlay-text {
  opacity: 1;
}

/* Styles for Our Mission Section */
.our-mission {
  position: relative;
  background-position: center;
  background-size: cover;
}

.our-mission-container {
  position: relative;
  height: 100%;
}

.overlay-box {
  opacity: 0.5;
  z-index: 2;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .our-mission {
    height: auto;
    padding: 20px 0;
  }

  .our-mission .row {
    flex-direction: column;
    text-align: center;
  }

  .our-mission-container h2 {
    margin-bottom: 20px;
  }

  .overlay-box {
    position: absolute;
    top: 20px;
    left: 5%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 0px;
    color: #000000;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  #our-mission-section {
    height: auto;
    padding: 20px 0;
  }

  #our-mission-section .bg-cover {
    background-size: cover;
    background-position: center;
  }

  #our-mission-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  #our-mission-container .content-box {
    position: relative;
    margin: 15px 0;
    z-index: 2;
    /* Ensures content overlays the background */
  }

  #our-mission-container .section-title {
    font-size: 2.2rem;
  }

  #our-mission-container .row {
    flex-direction: column;
    align-items: center;
  }
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.loader-logo {
  width: 90px;
  height: auto;
  margin-bottom: 5px;

  /* Mobile adjustment */
  @media (max-width: 768px) {
    width: 60px;
    /* Reduced logo size for mobile */
  }
}

.loader {
  width: fit-content;
  font-size: 30px;

  /* Mobile font size adjustment */
  @media (max-width: 768px) {
    font-size: 20px;
    /* Smaller text for mobile */
  }

  font-family: system-ui,
  sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #50addb00;
  -webkit-text-stroke: 1px #50addb;
  background: radial-gradient(0.71em at 50% 1em, #50acdb 99%, #50addb00 101%) calc(50% - 1em) 1em / 2em 200% repeat-x text,
  radial-gradient(0.71em at 50% -0.5em, #50addb00 99%, #50acdb 101%) 50% 1.5em / 2em 200% repeat-x text;
  animation: l10-0 0.8s linear infinite alternate,
  l10-1 4s linear infinite;
}

.loader:before {
  content: "ILAHIA LAW COLLEGE";
}

@keyframes l10-0 {
  to {
    background-position-x: 50%, calc(50% + 1em);
  }
}

@keyframes l10-1 {
  to {
    background-position-y: -0.5em, 0;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .mobile-logo {
    height: 70px !important;
    margin-right: 10px !important;
  }

  .mobile-header-text h5 {
    font-size: 1rem !important;
  }

  .mobile-header-text small {
    font-size: 0.7rem !important;
  }

  .mobile-contact {
    font-size: 0.9rem !important;
  }

  .mobile-social .fs-3 {
    font-size: 1.5rem !important;
  }

  .mobile-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }

  .fixed-buttons {
    bottom: 70px !important;
    right: 15px !important;
  }

  .btn-whatsapp-pulse {
    width: 40px !important;
    height: 40px !important;
  }

  footer .col-lg-4,
  footer .col-lg-2 {
    margin-bottom: 2rem;
  }

  footer h4 {
    font-size: 1.1rem;
  }

  footer li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .loader-logo {
    width: 60px !important;
  }

  .loader {
    font-size: 18px !important;
  }

  .mobile-header-text {
    text-align: center !important;
    margin-top: 10px;
  }

  .mobile-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    text-align: center;
  }
}

.gallery-image {
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.767);
  z-index: 7000;
  justify-content: center;
  align-items: center;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Ensure responsive image and consistent background behavior */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

/* Responsive padding to keep desktop spacing intact but adapt on smaller screens */
@media (max-width: 767px) {
  .hero-section {
    padding: 150px 0 150px;
  }

  .hero-section .col-md-8 {
    top: 0 !important;
    text-align: center;
  }

  .hero-section h1,
  .hero-section p,
  .hero-section a {
    display: block;
    margin: 0 auto;
  }
}

