@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  /* background-color: #19232d; */
  width: 100%;
  background-color: whitesmoke;
  position: relative;
  font-family: "Poppins", sans-serif;
}

section {
  width: 100%;
  overflow: hidden;
}
p {
  font-size: 16px;
}
/*  LOADING VIDEO */

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}
p {
  font-size: 16px;
}

#preloader {
  position: fixed;
  inset: 0; /* top, left, right, bottom = 0 */
  width: 100%;
  height: 100dvh; /* better for mobile (dynamic viewport) */
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

/* Fade out animation */
.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Main content */
#main-content {
  display: block !important;
}

/* Video */
#loader-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 99999;
}

@media (max-width: 768px) {
  #loader-video {
    object-fit: cover; /* keep full screen */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #loader-video {
    object-fit: cover;
  }
}

@media (min-width: 1025px) {
  #loader-video {
    object-fit: cover;
  }
}

/* ====================== Modal Section =================== */
/* =============================================
   MODAL BACKGROUND
============================================= */

.custom-modal {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.7);

  display: none;

  justify-content: center;
  align-items: center;

  padding: 20px;

  z-index: 9999;

  animation: fadeIn 0.3s ease;
}

/* =============================================
   SHOW MODAL
============================================= */

.custom-modal.show {
  display: flex;
}

/* =============================================
   MODAL BOX
============================================= */

.modal-box {
  position: relative;

  width: 600px;
  max-width: 100%;

  background: #fff;

  border-radius: 22px;

  padding: 20px;
  text-align: center;
  animation: popup 0.35s ease;
}

/* =============================================
   IMAGE
============================================= */

.modal-img {
  width: 100%;
  height: auto;

  max-height: 500px;

  object-fit: cover;

  border-radius: 16px;

  display: block;
}

/* =============================================
   CLOSE BUTTON
============================================= */

.close-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;

  top: 12px;
  right: 12px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: #7e1416ab;

  color: #fff;

  font-size: 20px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  z-index: 10;

  transition: 0.3s;
}

.close-btn:hover {
  background: #7e1416;
  color: #fff;
}

/* =============================================
   BUTTON
============================================= */

.apply-btn {
  width: 50%;
  margin: 20px auto 0px;
  padding: 12px 32px;

  border: none;
  border-radius: 50px;

  background: #7e1416;

  color: #fff;

  font-size: 18px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.apply-btn:hover {
  background: #d21418;
}

/* =============================================
   LARGE DEVICE
============================================= */

@media (max-width: 1200px) {
  .modal-box {
    width: 550px;
  }

  .modal-img {
    max-height: 450px;
  }
}

/* =============================================
   TABLET
============================================= */

@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 48px;
  }

  .modal-box {
    width: 500px;
    padding: 18px;
  }

  .modal-img {
    max-height: 400px;
  }

  .apply-btn {
    font-size: 20px;
    padding: 14px;
  }
}

/* =============================================
   MOBILE
============================================= */

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 34px;
  }

  .custom-modal {
    padding: 14px;
  }

  .modal-box {
    width: 500px;
    padding: 12px;
    border-radius: 18px;
  }

  .modal-img {
    max-height: none;
    object-fit: contain;
  }

  .close-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .apply-btn {
    font-size: 18px;
    padding: 13px;
    padding: 12px 40px;
  }
}

/* =============================================
   SMALL MOBILE
============================================= */

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .modal-box {
    border-radius: 16px;
  }

  .modal-img {
    max-height: 280px;
  }

  .close-btn {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .apply-btn {
    font-size: 12px;
    padding: 10px 35px;
  }
}

/* =============================================
   ANIMATION
============================================= */

@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =============================================
   NAVBAR
   ============================================= */

header {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 1000;
}
.navbarStyle {
  background-color: #7e1416;
}

.nav-link {
  color: white !important;
  margin-left: 10px;
  font-size: 17px;
  font-weight: 600 !important;
}

.nav-link:hover {
  color: #ddb337 !important;
}
.navbar-nav .nav-link.active {
  color: #ffcc00 !important;
  font-weight: 600;
  border-bottom: 2px solid #ffcc00;
  display: inline;
}

/* NAVBAR TOGGLER */

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline: unset;
  border: unset;
  box-shadow: none;
}

.ApplyBtn button {
  padding: 5px 20px;
  border-radius: 24px;
  font-weight: 600;
  color: #7e1416;
  background-color: #ddb337;
  border: #ddb337 solid 2px;
}
.ApplyBtn button:hover {
  padding: 5px 20px;
  border-radius: 24px;
  font-weight: 600;
  color: #fff;
  background-color: #7e1416;
  border: #fff solid 2px;
}

.dropdown-menu.mega-menu {
  margin-top: 25px;
  margin-left: -300px;
  width: 900px;
  scrollbar-width: none;
  padding: 20px;
  border-radius: 10px;
  background-color: #7e1416;
  color: white;
  border: 1px solid #ddb33740;
}

.mega-menu ul {
  list-style: none;
  padding: 0;
}

.mega-menu li {
  margin-bottom: 8px;
  cursor: pointer;
  color: #ccc;
  font-size: 0.9rem;
}

.mega-menu li a {
  color: white;
  text-decoration: none;
}

.mega-menu li a:hover {
  color: #ddb337;
}

.mega-menu strong {
  color: #ddb337;
}

.mega-menu {
  padding: 15px;
}

.mega-menu::-webkit-scrollbar {
  width: 5px;
}

.mega-menu::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}
.logoContent img {
  width: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ApplyBtn button {
    padding: 5px 15px;
    border-radius: 24px;
    font-weight: 600;
    color: #7e1416;
    background-color: #ddb337;
    border: #ddb337 solid 2px;
  }
  .nav-link {
    margin-left: 0px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .dropdown-menu.mega-menu {
    margin-left: 50px;
    width: 600px;
  }
}
/* Mobile & Tablet Fix */
@media (max-width: 991px) {
  .mega-menu {
    max-height: 70vh;
    overflow-y: auto;
  }

  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dropdown-menu.mega-menu {
    margin-top: 5px;
    margin-left: 0px;
    width: 650px;
  }
  .nav-link {
    margin-left: 0px;
    font-size: 14px;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .dropdown-menu.mega-menu {
    margin-left: 00px;
    width: 650px;
  }
}
@media (max-width: 1024px) {
  .logoContent h2 {
    font-size: 25px !important;
  }
  .logoContent img {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .logoContent h2 {
    font-size: 30px !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  .logoContent h2 {
    font-size: 22px;
  }
  .logoContent img {
    width: 75px;
  }
  .nav-link {
    font-size: 15px;
    margin-left: 0px;
  }
  .ApplyBtn button {
    padding: 5px 12px;
  }
  .ApplyBtn button:hover {
    padding: 5px 12px;
  }
}

@media screen and (min-width: 320px) and (max-width: 479px) {
  .logoContent h2 {
    font-size: 22px !important;
    font-weight: 900;
  }
  .dropdown-menu.mega-menu {
    margin-top: 5px;
    margin-left: 0px;
    width: 310px;
    padding: 10px;
  }
}
@media (max-width: 376px) {
  .logoContent h2 {
    font-size: 16px !important;
  }
}
@media (max-width: 321px) {
  .logoContent h2 {
    font-size: 14px !important;
  }
  .dropdown-menu.mega-menu {
    margin-top: 5px;
    margin-left: 0px;
    width: 290px;
    padding: 10px;
  }
}

/* Hero Section */
.phraseSection {
  margin-top: 150px;
  margin-bottom: 50px;
}

.titlePhrase h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 55px;
}
.titlePhrase span {
  font-family: "DM Sans", sans-serif;
  color: #7e1416;
  font-weight: 900;
  font-size: 55px;
}
@media (max-width: 426px) {
  .titlePhrase h2 {
    font-size: 35px;
  }
  .titlePhrase span {
    font-size: 35px;
  }
}
@media (max-width: 769px) {
  .titlePhrase h2 {
    font-size: 45px;
  }
  .titlePhrase span {
    font-size: 45px;
  }
}
.titlePara p {
  font-weight: 500;
}

.carouselContent {
  margin-bottom: 80px;
}
.carouselImage {
  border-radius: 35px;
}
.carousel-item {
  width: 100%;
  height: 80vh;
}

.carousel-item img {
  width: 100%;
  object-fit: cover;
  filter: brightness(0.79);
}
.firstContent {
  top: 40%;
  text-align: start;
}
.firstContent button {
  margin-top: 20px;
  padding: 12px 32px;
  color: #fff;
  font-weight: 600;
  border: #7e1416 2px solid;
  border-radius: 12px;
  background-color: #7e1416;
  transition: 0.5s;
}
.firstContent button:hover {
  color: #fff;
  border: #fff solid 2px;
  background-color: transparent;
}
.firstContent h1 {
  font-weight: 700;
  margin-bottom: 20px;
}
.firstContent p {
  font-size: 20px;
  width: 70%;
}

@media screen and (min-width: 318px) and (max-width: 479px) {
  .carousel-item {
    width: 100%;
    height: 60vh;
  }
  .extraContent {
    display: none;
  }
  .carousel-item img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(0.79);
  }
  .carouselContent {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 70vh;
  }

  .extraContent {
    display: none;
  }
  .carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: brightness(0.79);
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .carousel-item {
    width: 100%;
    height: 80vh;
  }
  .extraContent {
    display: none;
  }

  .carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    filter: brightness(0.79);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1442px) {
  .carousel-item {
    width: 100%;
    height: 90vh;
  }

  .carousel-item img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    filter: brightness(0.79);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.smallCarousel {
  background-color: #ddb337;
  height: 20%;
  width: 50%;
}

/* ============================== About Section ======================= */
/* =============================================
   ABOUT SECTION
============================================= */

.aboutSection {
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background: #fff;
}

.aboutTop {
  margin-bottom: 60px;
}

.aboutTag {
  font-size: 22px;
  font-weight: 700;
  color: #7e1416;
  margin-bottom: 15px;
}

.aboutTitle {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.aboutTitle span {
  color: #7e1416;
}

.aboutDesc {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  width: 100%;
}

/* =============================================
   CONTENT
============================================= */

.AnimationFlight {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* =============================================
   IMAGE
============================================= */

.flightImage {
  width: 100%;
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: visible;

  position: relative;
  z-index: 20;
}

.flightImage img {
  width: 100%;
  max-width: 650px;

  object-fit: contain;

  transform: scale(1);

  transition: transform 0.1s linear;

  transform-origin: center center;

  will-change: transform;

  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.18));
}

/* =============================================
   CONTENT
============================================= */

.AboutContent {
  width: 100%;
  flex: 1;
}

.aboutHeading {
  font-size: 40px;
  font-weight: 700;
  color: #7e1416;
  margin-bottom: 25px;
}

.AboutContent p {
  font-size: 18px;
  line-height: 2;
  color: #555;
  margin-bottom: 25px;
}

/* =============================================
   LARGE DEVICE
============================================= */

@media (max-width: 1200px) {
  .aboutTitle {
    font-size: 50px;
  }

  .aboutHeading {
    font-size: 42px;
  }

  .flightImage img {
    max-width: 520px;
  }
}

/* =============================================
   TABLET
============================================= */

@media (max-width: 1024px) {
  .aboutSection {
    padding: 80px 0;
  }

  .AnimationFlight {
    flex-direction: column;
    gap: 50px;
  }

  .aboutTop {
    margin-bottom: 50px;
  }

  .aboutTitle {
    font-size: 42px;
  }

  .aboutDesc {
    font-size: 18px;
  }

  .flightImage img {
    max-width: 450px;
  }

  .aboutHeading {
    font-size: 38px;
  }

  .AboutContent p {
    font-size: 16px;
  }
}

/* =============================================
   MOBILE
============================================= */

@media (max-width: 768px) {
  .aboutSection {
    padding: 70px 0;
  }

  .aboutTop {
    margin-bottom: 40px;
  }

  .aboutTag {
    font-size: 18px;
  }

  .aboutTitle {
    font-size: 34px;
  }

  .aboutDesc {
    font-size: 16px;
    line-height: 1.8;
  }

  .AnimationFlight {
    gap: 35px;
  }

  .flightImage img {
    max-width: 320px;
  }

  .aboutHeading {
    font-size: 32px;
  }

  .AboutContent p {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* =============================================
   SMALL MOBILE
============================================= */

@media (max-width: 480px) {
  .aboutSection {
    padding: 60px 0;
  }

  .aboutTitle {
    font-size: 28px;
  }

  .aboutDesc {
    font-size: 14px;
  }

  .flightImage img {
    max-width: 240px;
  }

  .aboutHeading {
    font-size: 28px;
  }

  .AboutContent p {
    font-size: 14px;
  }
}
/* ======================= Counter Section ======================= */

.counter-section {
  background-color: #7e1416;
  padding: 3.8rem 0 2rem;
}
.counter-section h2 {
  color: #fff;
}
.counter-section p {
  color: #ddb337;
  /* text-transform: uppercase; */
}

/* =========== Carousel Text Content Section ========= */
.carouselTextContent {
  width: 100%;
  position: absolute;
  bottom: 15;
  left: 0;
  margin-left: 600px;
}
.carouselContainer {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 80px;
  background: #ddb337;
}

/* Track */

.carouselTrack {
  display: flex;
  transition: 0.5s;
}

/* Slide */

.carouselSlide {
  min-width: 100%;
  background: #ddb337;
  border-radius: 70px;
  padding: 20px 100px;
  text-align: center;
}

/* Content */

.carouselSlide h3 {
  color: #000;
  margin-bottom: 12px;
}

.carouselSlide p {
  color: #222;
}

.carouselSlide span {
  color: #7e1416;
  font-weight: bold;
}

/* Buttons */

.carouselBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.prevBtn {
  left: 35px;
}

.nextBtn {
  right: 35px;
}

/* Responsive */

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .carouselTextContent {
    bottom: 20;
    left: 0;
    margin-left: 300px;
  }
  .carouselContainer {
    width: 60%;
    position: relative;
    overflow: hidden;
    border-radius: 80px;
    background: #ddb337;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .carouselTextContent {
    bottom: 20;
    left: 0;
    margin-left: 200px;
  }
  .carouselContainer {
    width: 60%;
    position: relative;
    overflow: hidden;
    border-radius: 80px;
    background: #ddb337;
  }
}

@media (max-width: 768px) {
  .carouselTextContent {
    bottom: 0;
    left: 0;
    margin-left: 70px;
  }
  .carouselContainer {
    width: 80%;
    position: relative;
    overflow: hidden;
    border-radius: 80px;
    background: #ddb337;
  }
  .carouselSlide {
    padding: 30px 70px;
  }

  .carouselSlide h3 {
    font-size: 24px;
  }

  .carouselSlide p {
    font-size: 16px;
  }

  .carouselBtn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media screen and (min-width: 318px) and (max-width: 479px) {
  .carouselTextContent {
    position: static !important;
    padding: 0 10px;
    bottom: 0;
    width: 100%;
    margin-left: 0px;
  }
  .carouselContainer {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ddb337;
  }
  .carouselSlide {
    min-width: 100%;
    background: #ddb337;
    border-radius: 20px;
    padding: 15px 50px;
    text-align: center;
  }
  .carouselSlide h3 {
    font-size: 20px;
  }

  .carouselSlide p {
    font-size: 14px;
    margin: 0;
  }
  .prevBtn {
    left: 10px;
  }

  .nextBtn {
    right: 10px;
  }
}

/* ======================== New About Section ================= */

/* =============================================
       ACADEMIC SECTION
    ============================================= */

.academicSection {
  padding: 70px 0px;
  max-height: 750px;
}

.ac-head {
  color: #7e1416;
  font-weight: 700;
  font-size: 42px;
}

/* =============================================
       BUTTONS
    ============================================= */

.ChooseBtn {
  margin-top: 20px;
  padding: 10px 45px;
  border: #7e1416 solid 2px !important;
  color: #7e1416 !important;
  font-weight: 600;
  border-radius: 12px !important;
  background: transparent !important;
}

.ChooseBtn.active {
  background: #7e1416 !important;
  color: #fff !important;
}

/* =============================================
       SWIPER
    ============================================= */

.academicSwiper {
  padding: 50px 15px 70px;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* =============================================
       CARD
    ============================================= */

.academicCard {
  width: 100%;
  max-width: 100%;
  max-height: 450px;
  background: #fff;
  border: #8b0000 solid 1px;
  padding: 15px 10px;
  border-radius: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.academicCard:hover {
  transform: translateY(-6px);
}

/* =============================================
       IMAGE
    ============================================= */

.academicImg {
  overflow: hidden;
  border-radius: 10px;
}

.academicImg img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
}

.academicCard:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

/* =============================================
       CONTENT
    ============================================= */

.academicContent {
  text-align: center;
  padding-top: 15px;
}

.academicContent h2 {
  font-size: 20px;
  margin-bottom: 5px;
  min-height: 50px;
  color: #111;
}

.academicContent p {
  font-size: 15px;
  color: gray;
  margin-bottom: 15px;
  min-height: 75px;
}

.academicContent button {
  width: 80%;
  padding: 12px 20px;
  margin-top: 10px;
  background: transparent;
  color: #7e1416;
  border: #7e1416 solid 2px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.academicContent button:hover {
  background: #7e1416;
  color: #fff;
}

/* =============================================
       SWIPER BUTTONS
    ============================================= */

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  font-weight: bold;
  padding: 10px 22px;
  background-color: #7e1416b9;
  border-radius: 25px;
  top: 40%;
  z-index: 10 !important;
  cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #7e1416;
}

/* =============================================
       RESPONSIVE
    ============================================= */

@media screen and (min-width: 1200px) and (max-width: 1290px) {
  .academicCard {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
  }
  .academicImg {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 150px;
    margin-bottom: 0;
  }
  .academicImg img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 45%;
  }
}

@media (max-width: 1200px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 40%;
  }
  .academicImg img {
    width: 100%;
    height: 180px;
  }
}
@media (max-width: 1024px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 45%;
  }
}
/* =============================================
   TABLET RESPONSIVE
============================================= */

@media (max-width: 992px) {
  .academicSwiper {
    padding: 40px 10px 60px;
  }

  .academicCard {
    min-height: 450px;
  }

  .academicImg img {
    height: 180px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* =============================================
   MOBILE RESPONSIVE
============================================= */

@media (max-width: 768px) {
  .academicSection {
    padding: 50px 0px;
    max-height: 670px;
  }

  .ac-head {
    font-size: 28px;
  }

  .ChooseBtn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .academicSwiper {
    padding: 35px 5px 50px;
  }

  .academicCard {
    max-height: 300px;
  }

  .academicImg img {
    height: 180px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 40%;
  }
}

/* =============================================
   SMALL MOBILE
============================================= */

@media (max-width: 576px) {
  .academicSection {
    padding: 50px 0px;
    max-height: 650px;
  }
  .ac-head {
    font-size: 24px;
  }

  .academicImg img {
    height: 180px;
  }
}

@media (max-width: 425px) {
  .academicSection {
    padding: 50px 0px;
    max-height: 750px;
  }
  .ac-head {
    font-size: 24px;
  }
  .academicImg img {
    height: 180px;
  }
}

/* NEW CAMPUS */

/* TIMELINE */

/* Timeline Section */
#timeline {
  background-color: #f9f9f9;
  padding: 80px 0 60px;
}

/* Section Heading */
#timeline h2 {
  font-weight: 700;
  margin-bottom: 50px;
  color: #7e1416;
  text-align: center;
}

/* Timeline Container */
.timeline {
  position: relative;
  padding: 20px 0;
}

/* Replace timeline::before with runway */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 36px;
  background: black;
  transform: translateX(-50%);
  opacity: 0.9;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #fff 0px,
    #fff 16px,
    transparent 16px,
    transparent 28px
  );
  transform: translateX(-50%);
  z-index: 1;
}

.flight-plane {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(90deg);
  font-size: 35px;
  z-index: 10;
  transition: transform 0.3s ease;
  pointer-events: none;
  color: whitesmoke;
}

/* Desktop */
.timeline::before,
.timeline::after {
  left: 50%;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline::before,
  .timeline::after {
    left: 20px;
  }
  .timeline::before {
    background: transparent;
  }
  .timeline::after {
    background: repeating-linear-gradient(
      to bottom,
      #000 0px,
      #000 16px,
      transparent 16px,
      transparent 28px
    );
  }

  .flight-plane {
    left: 20px;
    transform: translateX(-50%) rotate(90deg);
    font-size: 30px;
    color: #000;
  }
}

@media (max-width: 768px) {
  .timeline-content {
    width: calc(100% - 70px);
    margin-left: 60px;
  }

  .timeline-date {
    text-align: left;
    margin-left: 60px;
  }

  .campus-img {
    height: 180px;
    object-fit: cover;
  }
}

/* Timeline Node Row */
.timeline-nodes {
  position: relative;
  margin-bottom: 60px;
}

/* Timeline Content Box */
.timeline-content {
  border-radius: 25px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.campus-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 25px;
}

/* Alternate animation delay for left/right positioning */
.timeline-nodes:nth-child(even) .timeline-content {
  animation-delay: 0.3s;
}

.timeline-nodes:nth-child(odd) .timeline-content {
  animation-delay: 0.3s;
}

.timeline-nodes:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
}

/* tveli */
.timeline-tveli:nth-child(odd) .timeline-content {
  animation-delay: 0.3s;
}

.timeline-tveli:nth-child(even) .timeline-content {
  animation-delay: 0.3s;
}

.timeline-tveli:nth-child(odd) {
  display: flex;
  flex-direction: row-reverse;
}

/* Timeline Date */
.timeline-date {
  font-size: 1rem;
  color: black;
  text-align: center;
  margin-top: 50px;
}

/* Timeline Icons */
.timeline-icons {
  background-color: #7e1416;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: popIn 0.6s forwards;
}

.timeline h4:hover {
  color: #7e1416;
  filter: drop-shadow(0 0 5px #ccc);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

/* Button */
.campus-btn {
  padding: 10px 20px;
  border: 2px solid #7e1416;
  background-color: transparent;
  color: #7e1416;
  font-weight: 600;
  border-radius: 8px;
  /* cursor: pointer; */
  transition: 0.3s;
}

.campus-btn.active {
  background-color: #7e1416;
  color: #fff;
}

.campus-content {
  display: none;
}

.campus-content.active {
  display: block;
}

/* ===============================
   MOBILE (≤ 768px)
================================= */
@media (max-width: 768px) {
  /* Move timeline line to left */
  .timeline::before {
    left: 20px;
    width: 3px;
  }

  /* Stack all items in one direction */
  .timeline-nodes {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 40px;
  }

  .timeline-tveli {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 40px;
  }

  /* Content full width */
  .timeline-content {
    width: calc(100% - 70px);
    margin-left: 60px;
  }

  /* Icon alignment */
  .timeline-icons {
    left: 20px;
    transform: translateX(-50%) scale(1);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-top: 0;
  }

  /* Text alignment */
  .timeline-date {
    text-align: left;
    margin-top: 10px;
    margin-left: 60px;
  }

  /* Image height adjust */
  .campus-img {
    height: 180px;
    margin-left: 10px;
  }
}

@media (max-width: 426px) {
  .campus-img {
    height: 180px;
    margin-left: 0px;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1024px) {
  .timeline-icons {
    width: 40px;
    height: 40px;
  }

  .campus-img {
    aspect-ratio: 4/3;
  }
}

/* ===============================
   LARGE SCREENS (>1024px)
================================= */
@media (min-width: 1025px) {
  .campus-img {
    height: 220px;
  }
}

/* ======================== Placement Carousel ===================== */

/* Carousel section1 */
.carousels {
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.group {
  display: flex;
  gap: 20px;
  flex: 0 0 100%;
  padding-right: 20px;
  will-change: transform;
  animation: scrolling 38s linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carouselImg img {
  width: 200px;
}

/* Carousel section2 */

.carousels1 {
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.group1 {
  display: flex;
  gap: 20px;
  flex: 0 0 100%;
  padding-right: 20px;
  will-change: transform;
  animation: scrolling1 38s linear infinite;
}
@keyframes scrolling1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* latest news */

.news-title {
  color: #7e1416;
  font-weight: 700;
  font-size: 32px;
}

.img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-title {
  color: #ddb337;
  font-weight: 600;
}

.card-container img {
  transition: 0.5s ease;
}

.overlay {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.card-container:hover img {
  filter: brightness(50%);
}

.card-container:hover .overlay {
  opacity: 1;
  transform: translateY(0px);
}

.img2 {
  object-fit: cover;
}

/* Blog */

.blog-title {
  color: #7e1416;
  font-weight: bold;
  font-size: 32px;
}

/* =============================================
   NEWS SECTION (FULL RESPONSIVE FIX)
   ============================================= */

.news-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #7e1416;
}

/* CARD */
.card-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE FIX */
.img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: 0.4s;
}

/* HOVER ZOOM */
.card-container:hover .img2 {
  transform: scale(1.08);
}

/* OVERLAY */
.overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s;
  padding: 10px;
}

/* SHOW ON HOVER (desktop only) */
@media (hover: hover) {
  .card-container:hover .overlay {
    opacity: 1;
  }
}

/* TEXT */
.overlay h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
}

/* ========================= */
/* MOBILE FIX */
/* ========================= */
@media (max-width: 768px) {
  .img2 {
    aspect-ratio: 3/2; /* mobile better */
  }

  /* always visible overlay */
  .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
  }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {
  .img2 {
    aspect-ratio: 1/1; /* square look */
  }

  .overlay h3 {
    font-size: 14px;
  }
}

/* ========================= */
/* GRID SPACING FIX */
/* ========================= */
.row.g-3 {
  margin-top: 10px;
}

/* =============================================
   MAP SECTION FIX (RESPONSIVE)
   ============================================= */

.mapSection {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 16/9;
}

/* Tablet */
@media (max-width: 1024px) {
  .mapSection {
    max-width: 400px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .mapSection {
    max-width: 100%;
  }
}

/* ================== Contact Section ================== */
.ContactSection {
  margin: 50px 0px;
  padding: 60px 0px;
  background-color: #7e1416;
  color: #fff;
}
.ContactSection h3 {
  color: #ddb337;
  font-weight: 700;
  margin-bottom: 15px;
}

@media screen and (min-width: 1200px) and (max-width: 1290px) {
  .ContactSection h3 {
    color: #ddb337;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 15px;
  }
}

/* ================== Footer ==================== */
.footerSection {
  background-color: #7e1416;
  color: #fff;
  padding: 50px 0px;
}
.footerSection h3 {
  color: #ddb337;
  margin-bottom: 15px;
}
.footerSection h5 {
  color: #ddb337;
}
.footerSection i {
  font-size: 20px;
  padding: 12px;
  background-color: #fff;
  border-radius: 28px;
}

.footerSection a {
  text-decoration: none;
  color: #fff;
  line-height: 15px;
}
.footerSection a:hover {
  color: #ddb337;
}

/* ==================== Whatsapp floating =================== */
.float-image {
  position: fixed;

  bottom: 0;
  right: 0;
  margin-bottom: 80px;
  margin-right: 30px;
  z-index: 60;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #25d366;
  border-radius: 25px;
  cursor: pointer;
}
.float-image span {
  margin-left: 15px;
  color: #fff;
  font-weight: 600;
}
.float-image i {
  font-size: 25px;
}

/* PopUPs Section */

.apply-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  background-color: whitesmoke;
  border: 1px solid #7e1416;
  border-radius: 16px;
  padding: 12px 18px;
  color: black;
  cursor: pointer;
  transform: translateY(150%);
  opacity: 0;
  transition:
    transform 0.6s ease,
    opacity 0.5s ease;
  z-index: 99999;
  min-width: 240px;
  box-shadow: 0 6px 25px #7e1416;
}

.apply-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.popup-logo img {
  width: 60px;
  height: 60px;
  margin-right: 12px;
}

.popup-text {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.3;
}

.popup-close {
  background: none;
  border: none;
  color: #000000;
  font-size: 22px;
  margin-left: 10px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #7e1416;
}

.apply-popup:hover {
  box-shadow: 0 6px 25px #7e1416;
}

@media (max-width: 426px) {
  .apply-popup {
    padding: 8px 12px;
  }

  .popup-logo img {
    width: 55px;
    height: 55px;
    margin-right: 12px;
  }

  .popup-text {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.3;
  }

  .popup-close {
    background: none;
    border: none;
    color: #000000;
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.2s ease;
  }
}

/* Modal Section */

.modalContainer {
  background-color: #7e1416 !important;
}
.EnrollFormContent {
  position: fixed;
  top: 170px;
  right: -49px;
  padding: 10px 30px;
  font-weight: 600;
  color: #7e1416;
  background-color: #ddb337;
  transform: rotate(270deg);
  z-index: 1000;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 3px 3px 12px #7e1416;
  border: #7e1416 1px solid;
  transition: 0.5s;
}
.EnrollFormContent:hover {
  background-color: #fff;
  color: #7e1416;
  border: #7e1416 1px solid;
}

/* Form Content Style */
.formContent1 {
  width: 100%;
  padding: 30px 25px;
  background-color: #7e1416b9;
  border-radius: 10px;
}
.formContent1 input {
  padding: 10px 20px;
  margin: 8px auto;
  border-radius: 7px;
  border: none;
}

.formContent1 input::placeholder {
  color: black;
}

.formContent1 select {
  padding: 10px 20px;
  margin: 8px auto;
  border-radius: 7px;
  border: none;
}
.formContent1 select:focus {
  outline: none;
}

.formContent1 input:focus {
  outline: none;
}

.subBtn1 {
  margin: 0 auto;
  width: 100%;
  padding: 10px 55px;
  background-color: #ddb337;
  color: #7e1416;
  font-weight: 600;
  border: none;
  border-radius: 10px;
}
small {
  color: #ddb337;
  display: none;
}
.error1 {
  border: 1px solid #ddb337;
}
