@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

:focus,
:active {
  box-shadow: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.para-text {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1px;
}

.nav-text {
  /* font-family: "Lora", sans-serif; */
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0px;
}

.heading1 {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #fa5c00; /* Bootstrap 'success' green */
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* .heading2 {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
} */

body {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  /* background-color: rgb(253, 245, 235); */
  overflow-x: hidden;
}
.coustom-btn {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  padding: 14px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px 50px 50px 0;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #fa5c00;
  color: #fff !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.coustom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: left 0.4s ease;
  color: #02035d !important;
}

.coustom-btn:hover::before {
  left: 0;
  color: #02035d !important;
}
.coustom-btn:hover a {
  left: 0;
  color: #02035d !important;
}

/*===============header styling======================*/
/*================Dropdown style====================== */

@media (min-width: 992px) {
  .dropdown > .dropdown-menu {
    font-family: "Figtree", sans-serif;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    display: block;
    transition: all 0.1s ease-out;
  }
  .dropdown:hover > .dropdown-menu {
    font-family: "Figtree", sans-serif;
    visibility: visible;
    opacity: 1;
    padding: 7px 0 0 0;
    display: block;
    transition: all 0.3s ease-in-out;
  }

  .dropdown-menu {
    font-family: "Figtree", sans-serif;
    background-color: #02035d;
    border: none;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-item {
    font-family: "Figtree", sans-serif;
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    position: relative;
    border-bottom: 1px solid #cccccc68;
    transition: all 0.3s ease;
  }

  .dropdown-item::before {
    content: "// ";
    position: absolute;
    left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #000000;
  }

  .dropdown-item:hover {
    background-color: #ffffff;
    padding-left: 30px;
  }

  .dropdown-item:hover::before {
    opacity: 1;
    left: 15px;
  }

  .navbar .nav-link {
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    color: #000 !important;
    transition: all 0.3s ease-in-out;
  }

  .navbar .nav-link:hover {
    color: #fa5c00 !important;
  }
}

/* carousel */

@media (min-width: 992px) {
  /* .carousel-item {
    height: 500px;
  } */

  /* Style for carousel indicators (pagination buttons) */
  .carousel-indicators [data-bs-target] {
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 0%;
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .carousel-indicators .active {
    opacity: 1;
    background-color: #c71e01; /* Bootstrap primary color */
  }

  /* Style for next/prev arrows */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    border-radius: 50%;
    padding: 20px;
    background-size: 50% 50%;
    transition: all 0.3s ease;
  }

  .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    background-color: #952613; /* Bootstrap primary color */
  }

  /* Optional: Center vertically with some spacing */
  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 6%;
  }
}

/* Style for carousel indicators (pagination buttons) */
.carousel-indicators [data-bs-target] {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 0%;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #c71d1d; /* Bootstrap primary color */
}

/* Style for next/prev arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* dark background */
  border-radius: 50%;
  padding: 20px;
  background-size: 50% 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #952613; /* Bootstrap primary color */
}

/* top marque */
@media (min-width: 992px) {
  .top-cards-sec {
    font-family: "Figtree", sans-serif;
    position: relative;
    top: -100px;
  }

  .top-custom-row {
    font-family: "Figtree", sans-serif;
    position: relative;
    /* background: #000b6b; */
    margin-top: -60px;
    z-index: 999;
  }
}

.top-cards {
  border-radius: 50px 0px 50px 0;
  background: #fff;
  padding: 20px 30px;
}

.marquee a {
  display: inline-block;
  /* padding-left: 100%; */
  animation: marquee 10s linear infinite;
  border-left: 1px solid #fff;
}

/* about */
.about-text h1 {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 35px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}
.about-text h1 span {
  color: #fa5c00;
}

.about-text p {
  font-family: "Figtree", sans-serif;
  color: #7a7a7a;
  font-size: 14px;
  text-align: justify;
}

@media (min-width: 992px) {
  .about-section {
    font-family: "Figtree", sans-serif;
    background-color: #fbffff;
    color: #dcdcdc;
    font-family: "Poppins", sans-serif;
  }

  .about-container {
    font-family: "Figtree", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-text h1 {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
  }
  .about-text h1 span {
    color: #fa5c00;
  }

  .about-text p {
    font-family: "Figtree", sans-serif;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #7a7a7a;
    text-align: justify;
  }
}

/* .aim-box-first {
  background: #000;
} */

/* imp-cards */
.imp-cards {
  border-radius: 50px 0px 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  cursor: pointer;
}

.imp-cards i {
  width: 70px;
  height: 70px;
  background: #fa5c00;
  color: #fff;
}

.imp-cards h5,
p {
  color: #000000;
}

.imp-conrd-conte {
  position: absolute;
  border-radius: 50px 0px 50px 0;
  background: transparent;
  position: relative;
  padding: 20px 30px;
  bottom: 0%;
  left: 0%;
  z-index: 3 !important;
}

.hover-card {
  position: absolute;
  background: #fa5c00;
  bottom: -80%;
  left: -75%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease-out;
  z-index: 1;
}

.imp-cards:hover .hover-card {
  background: #fa5c00;
  bottom: 0%;
  left: 0%;
  width: 94%;
  height: 94%;
  margin: 10px;
  border-radius: 50px 0px 50px 0px;
  transition: 0.4s ease-out;
  z-index: 1;
}

.imp-cards .imp-icon i {
  background: #fa5c00 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s ease-out;
}

.imp-cards:hover .imp-icon i {
  background: #fff !important;
  color: #fa5c00 !important;
}

.imp-cards:hover h5 {
  color: #fff;
}
.imp-cards:hover p {
  color: #fff;
}

/* GALLERY */

.gallery-sec h1 {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 35px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.gallery-sec h1 span {
  color: #fa5c00;
}

.gallery-sec .nav-tabs {
  border-bottom: none !important;
}

.gallery-sec .nav-tabs .nav-link {
  border: none;
  border-radius: 25px 25px 25px 25px !important;
  margin-right: 13px;
  background-color: #f8f9fa;
  color: #000 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-sec .nav-tabs .nav-link:hover {
  background-color: #e2e6ea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.gallery-sec .nav-tabs .nav-link.active {
  background-color: #02035d;
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tab content box shadow */
.gallery-sec .tab-content {
  margin-top: 20px;
  padding: 0px;
  background-color: #ffffff;
  border-radius: 10px;
}

.gallery-sec.tab-pane img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-card {
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.842);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hover-box-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
}

.gallery-card:hover .hover-box-overlay {
  background: rgba(255, 128, 0, 0.879);
  bottom: 0px;
  right: 0px;
  width: 94%;
  height: 90%;
  margin: 10px;
  border-radius: 50px 0px 50px 0px;
  transition: 0.3s ease-out;
}

.view_img i {
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.gallery-card:hover .hover-box-overlay .view_img i {
  transform: rotate(330deg);
  height: 50px;
  width: 50px;
}

@media (min-width: 992px) {
  .gallery-sec h1 {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
  }

  .gallery-sec h1 span {
    color: #fa5c00;
  }

  .gallery-sec .tab-content {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
  }

  .gallery-card {
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.842);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  .gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .hover-box-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-out;
  }

  .gallery-card:hover .hover-box-overlay {
    background: rgba(255, 128, 0, 0.879);
    bottom: 0px;
    right: 0px;
    width: 94%;
    height: 90%;
    margin: 10px;
    border-radius: 50px 0px 50px 0px;
    transition: 0.3s ease-out;
  }

  .view_img i {
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease-out;
  }

  .gallery-card:hover .hover-box-overlay .view_img i {
    transform: rotate(330deg);
    height: 50px;
    width: 50px;
  }

  .gallery-sec .tab-content > .tab-pane {
    width: 100%;
  }
}

/* video */

.video-tit h1 {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 35px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.video-tit h1 span {
  color: #fa5c00;
}

@media (min-width: 992px) {
  .video-tit h1 {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
  }

  .video-tit h1 span {
    color: #fa5c00;
  }
}

.video-card {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 80px 0px 80px 0;
}

.video-card::before {
  content: "";
  position: absolute;
  background: rgba(3, 2, 7, 0.122);
  border-radius: 80px 80px 80px 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 350px;
  z-index: 100;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #02035d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #02035d;
  border-radius: 50%;
  animation: video-wave 1s linear infinite;
  transform: scale(1);
  opacity: 0.6;
}

@keyframes video-wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

#video .swiper-button-next,
#video .swiper-button-prev {
  background-color: #2189ff; /* Bootstrap 'success' green */
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#video .swiper-button-next::after,
#video .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

#video .swiper-button-next,
#video .swiper-button-prev {
  top: auto !important;
  bottom: 10px !important;
  transform: none !important;
}

#video .swiper-button-prev {
  right: 60px !important;
  left: auto !important;
}

#video .swiper-button-next {
  right: 10px !important;
}

/* facilities */

.facilities-sec h1 {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 35px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.facilities-sec h1 span {
  color: #fa5c00;
}

.accordion-button {
  font-family: "Figtree", sans-serif;
  padding: 0;
  background-color: transparent !important;
  color: #0c0c0c;
  font-weight: 500;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  font-family: "Figtree", sans-serif;
  color: #000000;
}

.accordion-button::after {
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-item {
  font-family: "Figtree", sans-serif;
  border: none;
  border-bottom: 2px solid #000000;
  margin-bottom: 3rem;
  border-radius: 0rem;
  overflow: hidden;
}

.accordion-body {
  padding: 40px 0;
}

@media (min-width: 992px) {
  .mportant-landmarks {
    padding: 70px;
  }

  .facilities-sec h1 {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
  }

  .facilities-sec h1 span {
    color: #fa5c00;
  }

  .accordion-body {
    padding: auto;
  }

  .accordion-button {
    font-family: "Figtree", sans-serif;
    background-color: transparent !important;
    color: #0c0c0c;
    font-weight: 500;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
  }
}

#headingOne .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

/* Accordion closed - black arrow */
.accordion-button::after {
  filter: brightness(0%) saturate(100%) invert(0%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Accordion open - red arrow */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(19%) sepia(91%) saturate(7486%)
    hue-rotate(356deg) brightness(102%) contrast(109%);
}

.accordion {
  font-family: "Figtree", sans-serif;
  --bs-accordion-color: #101010;
  --bs-accordion-bg: transparent !important;
}

/* contact */

.enroll-form-header {
  font-family: "Figtree", sans-serif;
  background: #000;
  border-radius: 50px 50px 50px 0;
  padding: 20px 30px;
}

.update h1 {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 25px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.update h1 span {
  color: #fa5c00;
}

@media (min-width: 992px) {
  .enroll-form-header {
    font-family: "Figtree", sans-serif;
    background: #000;
    border-radius: 50px 50px 50px 0;
    padding: 20px 30px;
  }

  .coustom-btn {
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    padding: 14px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50px 50px 50px 0;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #fa5c00;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .coustom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: left 0.4s ease;
    color: #02035d !important;
  }

  .coustom-btn:hover::before {
    left: 0;
    color: #02035d !important;
  }
  .coustom-btn:hover {
    left: 0;
    color: #02035d !important;
  }

  .update h1 {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 35px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
  }

  .update h1 span {
    color: #fa5c00;
  }
}

/* footer */
.footer {
  font-family: "Figtree", sans-serif;
  background-color: #000;
  padding: 50px 0;
}

.footer .footer-title {
  font-family: "Figtree", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.facebook {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  color: #2189ff;
  /* border: 1px solid #2189ff !important; */
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.facebook::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2189ff;
  z-index: -1;
  transition: left 0.4s ease;
  color: #ffffff !important;
}

.facebook:hover::before {
  left: 0;
}

.facebook:hover {
  color: #ffffff !important;
}

.youtube {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  color: #b10000;
  /* border: 1px solid #2189ff !important; */
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.youtube::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b10000;
  z-index: -1;
  transition: left 0.4s ease;
  color: #ffffff !important;
}

.youtube:hover::before {
  left: 0;
}

.youtube:hover {
  color: #ffffff !important;
}

.twitter {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  color: #0dcaf0;
  /* border: 1px solid #2189ff !important; */
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.twitter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0dcaf0;
  z-index: -1;
  transition: left 0.4s ease;
  color: #ffffff !important;
}

.twitter:hover::before {
  left: 0;
}
.twitter:hover {
  color: #ffffff !important;
}

.google-plus {
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease !important;
  color: #b10000;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Background slide */
.google-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b10000;
  z-index: -1;
  transition: left 0.4s ease;
}

/* Hover effect */
.google-plus:hover::before {
  left: 0;
}

/* Change icon/text color on hover */
.google-plus:hover {
  color: #ffffff !important;
}

/* OTHER PAGE START HERE */
.bread-cram-sec {
  background: linear-gradient(#013367ed, #013367ed),
    url("../images/breadcrumb-bg-2.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* back to top */

#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #b10000;
  color: white;
  cursor: pointer;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #900000;
  transform: translateY(-3px);
}

/* whatsapp-icon */

.wave-container {
  position: fixed;
  bottom: 80px;
  left: 30px;
  width: 80px;
  height: 80px;
  z-index: 1000;
}

.whatsapp-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background-color: #25d366; */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: waveAnimation 2s infinite;
  opacity: 0.7;
}

.wave:nth-child(1) {
  animation-delay: 0s;
}
.wave:nth-child(2) {
  animation-delay: 0.5s;
}
.wave:nth-child(3) {
  animation-delay: 1s;
}

@keyframes waveAnimation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* page profile */
.page-pro-img1 img {
  border-radius: 80px 80px 0px 80px;
  height: 350px;
}

.page-pro-img2 img {
  border-radius: 0px 80px 80px 80px;
  height: 350px;
  margin-top: 100px;
}

/* page-foot */

.page-foot .foot-links a {
  border: 1px dotted #fff;
  padding: 5px 10px;
}

/* page aim */
.page-aim-img1 img {
  border-radius: 80px 80px 0px 80px;
  height: 350px;
}

.page-aim-img2 img {
  border-radius: 0px 80px 80px 80px;
  height: 350px;
}

/* page infra */

.custom-tab-container {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

/* Vertical nav pills */
.nav-pills .nav-link {
  color: #495057;
  background-color: #fff;
  border: 1px solid #fa5c00;
  border-radius: 20px 20px 20px 0px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

/* Hover effect */
.nav-pills .nav-link:hover:not(:disabled):not(.active) {
  background-color: #e9ecef;
  color: #000;
}

/* Active tab */
.nav-pills .nav-link.active {
  background-color: #fa5c00;
  color: #fff;
  border-color: #fa5c00;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
}

/* Disabled tab */
.nav-pills .nav-link:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

/* Tab content area */
.tab-content > .tab-pane {
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 20px;
  border-radius: 10px;
  min-height: 200px;
  width: 100%;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-infra-menu {
  color: #fa5c00;
  background-color: #fff;
  border: 1px solid #fa5c00;
  border-radius: 20px 20px 20px 0px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-align: center;
  padding: 5px 15px;
  cursor: pointer;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .tab-content > .tab-pane {
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 10px;
    min-height: 200px;
    width: 90%;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}

/* Document Disclosure */

.dis-doc-sec thead th {
  background-color: #fa5c00; /* dark gray */
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
}

.dis-doc-sec tbody td {
  vertical-align: middle;
}

/* Optional: Hover effect */
.dis-doc-sec tbody tr:hover {
  background-color: #f1f1f1;
}

/* Our Academics */
.our-acade-sec h2 {
  color: #fa5c00;
  text-transform: uppercase;
}

/* Curriculum Activities */
.curri-acti-sec .custom-tab-container {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.curri-acti-sec .nav-pills .nav-link {
  color: #495057;
  background-color: #fff;
  border: 1px solid #fa5c00;
  border-radius: 20px 20px 20px 0px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

.curri-acti-sec .nav-pills .nav-link:hover:not(:disabled):not(.active) {
  background-color: #e9ecef;
  color: #000;
}

.curri-acti-sec .nav-pills .nav-link.active {
  background-color: #fa5c00;
  color: #fff;
  border-color: #fa5c00;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
}

.curri-acti-sec .nav-pills .nav-link:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.curri-acti-sec .tab-content > .tab-pane {
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 20px;
  border-radius: 10px;
  min-height: 200px;
  width: 100%;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.curri-acti-sec .btn-curri-menu {
  color: #fa5c00;
  background-color: #fff;
  border: 1px solid #fa5c00;
  border-radius: 20px 20px 20px 0px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-align: center;
  padding: 5px 15px;
  cursor: pointer;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .curri-acti-sec .tab-content > .tab-pane {
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 10px;
    min-height: 200px;
    width: 100%;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .flat-item-image ul li {
    list-style: none !important;
  }
}

.curri-acti-sec .dropdown .btn-drop{
	background: #fa5c00;
    border: 2px solid #0f3e6e;
    padding: 5px 15px;
}
.curri-acti-sec .dropdown ul{
	background: #fa5c00;
    border: 2px solid #0f3e6e;
    padding: 5px 15px;
}
.curri-acti-sec .dropdown ul li{
	background: #CCCCCC;
    margin-top: 2px;
    padding: 5px;
}
.curri-acti-sec .dropdown ul li .nav-link{
	border: none;
    background: none;
    color: #202020;
}


.flat-item-image ul li {
  list-style: none !important;
}

/* online-clas-sec */
.online-clas-sec .nav-tabs .nav-link {
  color: #555;
  font-weight: 500;
  border: 1px solid #ccc;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: all 0.3s ease;
  margin-right: 5px;
}

.online-clas-sec .nav-tabs .nav-link:hover {
  background-color: #fa5c00;
  border-color: #dee2e6;
  color: #fff;
}

.online-clas-sec .nav-tabs .nav-link.active {
  background-color: #fa5c00;
  color: #fff;
  border-color: #fa5c00;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Customize tab content area */
.online-clas-sec .tab-content {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 20px;
}

.online-clas-sec h3 {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .online-clas-sec .tab-content > .tab-pane {
    width: 100% !important;
  }
}
