* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  ;
  overflow-x: hidden;
  background-color: #FFF9F1;
  font-size: 17px;
  line-height: 1.8 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
nav a {
  font-family: "Roboto", sans-serif;
  ;
}

p {
  font-size: 18px;
}

.text-justify {
  text-align: justify;
}

.txt-color {
  color: #7a1b1b;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1500px;
  }
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 12px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: transparent;
  z-index: 10;
}

.logo img {
  width: 85px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: crimson;
}

/* Base Navbar */
.navbar {
  position: relative;
  /* Sticky behavior */
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: transparent;
  z-index: 99;
  transition: all 0.3s ease;
  /* Smooth transition on scroll */
}

/* When navbar is scrolled */
.navbar.scrolled {
  position: fixed;
  padding: 10px 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo stays same or shrinks if needed */
.logo img {
  width: 85px;
  transition: width 0.3s ease;
}

.navbar.scrolled .logo img {
  width: 70px;
}


.hero-section {
  height: 85vh;
  width: 98%;
  position: relative;
  overflow: hidden;
  margin: auto;
  border-radius: 30px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


/* Scroll Box Css start here */
.scroll-box {
  width: 40px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-box .dot {
  width: 15px;
  height: 17px;
  background-color: #a62c2c;
  /* dark red */
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  /* Pulse animation */
}

.scroll-box .scroll-line {
  width: 1px;
  height: 15px;
  background-color: #333;
  animation: drawLine 2s forwards;
  /* Line drawing animation */
}

.scroll-box .scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Roboto", sans-serif;
  ;
  font-size: 13px;
  letter-spacing: 2px;
  color: #111;
  margin-top: auto;
}

/* Pulse animation for the dot */
@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  50% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(0.7);
    opacity: 1;
  }
}

/* Scroll Box Css end here */



/* SERVICES Learning-Process Css START  */
.services-item-inner {
  position: relative;
}


.service-description p {
  /* font-family: 'prompt', sans-serif; */
  font-family: "Roboto", sans-serif;
  ;
}

/* LINE DEFAULT STYLES */
.line {
  position: absolute;
  background: #fff;
  z-index: 1;
}

.line-top,
.line-bottom {
  height: 2px;
  width: 0;
  left: 0;
  right: 0;
}

.line-left,
.line-right {
  width: 2px;
  height: 0;
  top: 0;
  bottom: 0;
}

.line-top {
  top: 0;
}

.line-bottom {
  bottom: 0;
}

.line-left {
  left: 0;
}

.line-right {
  right: 0;
}

/* LINE ANIMATION CLASSES */
.line-animate .line-top {
  animation: lineTopAnim 1s forwards;
  /* was 0.6s */
}

.line-animate .line-left {
  animation: lineLeftAnim 1s 1s forwards;
  /* was 0.6s 0.6s */
}

.line-animate .line-bottom {
  animation: lineBottomAnim 1s 2s forwards;
  /* was 0.6s 1.2s */
}

.line-animate .line-right {
  animation: lineRightAnim 1s 3s forwards;
  /* was 0.6s 1.8s */
}

@keyframes lineTopAnim {
  to {
    width: 110%;
  }
}

@keyframes lineLeftAnim {
  to {
    height: 110%;
  }
}

@keyframes lineBottomAnim {
  to {
    width: 110%;
  }
}

@keyframes lineRightAnim {
  to {
    height: 110%;
  }
}

/* SLIDE UP ANIMATION FOR SERVICES ITEM */
.services-item {
  opacity: 0;
  transform: translateY(30px);
}

.services-item.animate {
  animation: slideUpAnim 0.6s forwards;
}

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


/* SERVICES Learning-Process Css END */


/* Counter css start here */

.stats-section {
  background-color: #7a1b1b;
  padding: 30px 0;
  position: relative;
  margin: 0 1rem;
  border-radius: 30px;
}

/* .stats-section:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/book.png');
  background-repeat: no-repeat;
  background-position: left bottom;
} */
.education-icon {
  width: fit-content;
  position: absolute;
  right: 5%;
}

.mySwiper .swiper-slide:hover {
  transform: scale(1.1);
  transition: all 0.8s linear;
}

.mySwiper .swiper-slide {
  transition: all 0.8s linear;
}

.mySwiper.swiper,
.mySwiper .swiper-container {
  padding: 0 1rem;
}

.education-icon img {
  width: 55px;
  rotate: 20deg;
}

.circle-icon {
  position: absolute;
  bottom: -4%;
  left: -1%;
  width: fit-content;
}

.circle-icon img {
  width: 150px;
  rotate: 20deg;
}

.stats-item {
  position: relative;
  padding: 60px 10px;
}

.stats-item img {
  width: 50%;
  filter: invert(1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  pointer-events: none;
}

.stats-item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 80%;
  width: 1px;
  background-color: #F7C971;
}

.stats-item:last-child::after {
  display: none;
}

.stats-number {
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
}

.stats-text {
  /* font-family: 'Prompt', sans-serif; */
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  /* font-style: italic; */
  margin-top: 10px;
  color: #f7c971;
}

/* Counter css end here */


/* Chairperson css start here */

.message-section {
  position: relative;
  background-color: #7a1b1b;
  /* padding: 100px 0px; */
  border-radius: 30px;
  margin: 0 1rem;
}

.bg-ylw-clr {
  /* background-color: #d28529; */
  background-image: url('../home-images/dottes-chr.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 50px 0px;
}

.message-box {
  color: #000000;
  /* height: 570px; */
  /* opacity: 0; */
  /* transform: translateY(30px); */
  transition: all 1s ease;
  padding: 50px;
  background: #fff9f1;
  border-radius: 20px;
  box-shadow: 0 0 20px -5px #fff9f152;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-box.animate {
  opacity: 1;
  transform: translateY(0);
}

.message-box h6 {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

.message-box h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
}

.message-box h2 {
  font-weight: bold;
  /* font-size: 26px; */
  margin-bottom: 20px;
}

.message-box p {
  font-family: "Roboto", sans-serif;
  ;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

/* .message-content {
  width: 50%;
  padding-top: 7rem;
} */

.chairman-img-wrapper {
  position: relative;
  top: 0;
  right: 0;
  z-index: 0;
  /* transform: scale(0.5); */
  /* opacity: 0; */
  transition: all 1s ease;
  height: 100%;
}

.chairman-img-wrapper.animate {
  transform: scale(1);
  opacity: 1;
}

.chairman-img-border {
  position: absolute;
  top: 25px;
  left: -30px;
  width: 90%;
  height: 100%;
  border: 2px solid #f7c971;
  border-radius: 20px;
  z-index: -1;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawBorder 2s forwards ease;
  animation-delay: 1s;
}

.right .chairman-img-border {
  right: -30px;
  left: auto;
}

@keyframes drawBorder {
  from {
    stroke-dashoffset: 800;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.chairman-img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 992px) {
  .chairman-img-wrapper {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 30px;
    text-align: center;
  }

  .message-box {
    border-radius: 10px;
    padding: 30px 20px;
  }
}

/* Chairperson css end here */


/* Faculty css start here */


.main-title {
  font-size: 28px;
  font-weight: bold;
  color: #7a1b1b;
}

.faculty-section .swiper-slide {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.37);
}

.faculty-section .swiper-wrapper {
  padding: 20px 0 50px;
}

.card-custom {
  position: relative;
}

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

.faculty-section {
  position: relative;
  background-color: #FFF9F1;
  background-image: url('../home-images/faculty-img/wave.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 30px 0;
}

.earth-icon {
  width: fit-content;
  position: absolute;
  right: 5rem;
  top: 18rem;
}

.book-icon {
  width: fit-content;
  position: absolute;
  left: 5rem;
  top: 5rem;
}

.card-body-custom {
  padding: 10px 16px;
  position: absolute;
  bottom: 15px;
  background-color: #FFF;
  width: 90%;
  left: 5%;
  border-radius: 12px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-body-custom.animate {
  opacity: 1;
  transform: translateY(0);
}

.card-label {
  font-family: "Roboto", sans-serif;
  ;
  font-size: 12px;
  color: #7a1b1b;
  font-weight: 600;
}

.card-title {
  font-weight: 600;
  color: #000;
  font-family: "Roboto", sans-serif;
  ;
  font-size: 16px;
  margin: 4px 0 0;
}

.swiper-pagination-bullet {
  border: 1px solid #7a1b1b;
  opacity: 1;
  background-color: #00000000;
  width: 15px;
  height: 15px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #7a1b1b;
  opacity: 1;
  width: 15px;
  height: 15px;
}

/* Faculty css end here */

/* Compus css start here */

.campus-section {
  background-color: #FFF9F1;
  /* padding-bottom: 100px; */
}

/* .campus-container-bg {
  background-color: #7a1b1b;
  color: white;
  padding: 30px 0;
  position: relative;
 background-image: url(../home-images/Campus-img/circle-campus.svg)!important;
  background-repeat: no-repeat;
  margin: 0 1rem;
  border-radius: 30px;
} */

.campus-section .swiper-wrapper {
  padding-bottom: 10px;
}

.campus-title {
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
}

.tabs-container {
  gap: 7px;
  padding-top: 50px;
}

.campus-subtitle {
  font-style: italic;
  position: relative;
  padding-left: 40px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  ;
}


.campus-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: white;
}

.uniqueCampusSwiper {
  position: relative;
  margin-bottom: -180px;
}

.state-btn {
  margin: 0.3rem;
  border-radius: 30px;
  border: 1px solid #fff;
  background: transparent;
  color: white;
  padding: 0.5rem 1.5rem;
  font-family: "Roboto", sans-serif;
  ;
  font-size: 17px;
}

.state-btn.active {
  background-color: white;
  color: #981c20;
  border: 1px solid #981c20;
}

.campus-section .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s linear;
}

.campus-section .swiper-slide:hover {
  transform: translateY(-10px);
  transition: all 0.5s linear;
}

.uniqueCampusSwiper.swiper,
.uniqueCampusSwiper .swiper-container {
  padding-top: 1rem;
}

.campus-img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.campus-name-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.campus-name {
  font-family: "Roboto", sans-serif;
  ;
  font-weight: 600;
  color: black;
  padding: 15px 0;
  font-size: 16px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.campus-button-prev.swiper-button-prev {
  position: absolute;
  top: 7rem;
  left: auto;
  right: 25rem;
}

.campus-button-next.swiper-button-next {
  position: absolute;
  top: 7rem;
  left: auto;
  right: 20rem;
}


@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.state-btn {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.state-btn.zoom-in {
  animation: zoomIn 0.4s forwards;
}

/* Compus css end here */


/* Gallery Css start here */

.activity-swiper-container {
  padding: 10px 0;
  background-color: #FFF9F1;
  /* optional: orange border bg effect */
}

.my-activity-swiper {
  width: 100%;
  height: auto;
}

.my-activity-swiper .swiper-slide {
  background: #FFF9F1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: auto;
}

.my-activity-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 4px 4px 10px #a9a9a9;
}


/* Gallery Css end here */


/* Testimonial Css start here */
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.testimonial-section {
  background-color: #FFF9F1;
  padding: 30px 0 30px;
}

.testimonial-card {
  background-image: url(../home-images/testimonial-img/bg-testimonial.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 630px;
  background-size: 65%;
  position: relative;

}

.testimonialSwiper {
  position: relative;
  padding: 20px 40px;
  background-image: url(../home-images/testimonial-img/testimonial-content.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 100%;
  left: 164px;
}

.tstm-img {
  width: 100%;
  border-radius: 20px;
  outline: 5px solid #D3881A;
  outline-offset: -16px;
}

.testimonial-content {
  position: absolute;
  top: 38%;
}

.testimonial-content p {
  text-align: center;
  font-size: 19px;
  /* font-family: 'Prompt', sans-serif; */

}

.testimonial-name {
  position: absolute;
  bottom: 3rem;
  right: 32px;
  text-align: center;
}

.testimonial-name h6 {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  ;
  color: #7a1b1b;
  font-weight: 600;
  font-style: italic;
}

.testimonial-name p {
  font-size: 14px;
  /* font-family: 'Prompt', sans-serif; */
  color: #000;
  font-style: italic;

}

.testimonialSwiper .swiper-button-next::after,
.testimonialSwiper .swiper-button-prev::after {
  display: none;
}

.testimonial-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 15%;
  left: 32rem;
}

.testimonial-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 15%;
  right: 30px;
}

.testimonial-button-prev img {
  width: 50px;
  /* or adjust as needed */
  height: 50px;
}

.testimonial-button-next img {
  width: 50px;
  height: 50px;
}



/* Testimonial Css end here */

/* Map css start from here */
.bar {
  width: 100px;
  background-color: transparent;
  border: 2px solid #fff;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  transition: height 1s ease-in-out;
}

.bar-label {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  ;
  font-weight: 700;
}

.chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 320px;
  gap: 25px;
}

.label-content {
  gap: 80px;
  justify-content: center;
  margin-top: 10px;
}

.business-hd {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  ;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#FFFF 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto 10px;
  position: relative;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4), inset 1px -2px 1px rgba(0, 0, 0, 0.3), 0px 0px 2px rgba(0, 0, 0, 0.6), 1px 4px 2px rgba(0, 0, 0, 0.2), 2px 9px 4px rgba(0, 0, 0, 0.1), inset 2px 2px 1px #ffffff8c;
  border: 1px solid #7a1b1b;
}

.circle::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: #fff;
  border-radius: 50%;
  top: 12px;
  /* border: 1px solid #7a1b1b; */
  left: 12px;
  z-index: 1;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 32%);
}

.circle span {
  position: relative;
  z-index: 2;
  color: #000;
}

#map {
  height: 550px;
  width: 100%;
  padding: 20px;
  border-radius: 40px;
  /* border: 20px solid #7a1b1b; */
}

.Map-section {
  position: relative;
  padding: 100px 0px;
  background-color: #7a1b1b;
  background-image: url('../home-images/left-circle.svg');
  background-repeat: no-repeat;
  background-position: top right;
  margin: 0 1rem;
  border-radius: 30px;
  overflow: hidden;
}

.Map-icon {
  position: absolute;
  top: 5rem;
  left: 30px;
}

.Map-ed-icon {
  position: absolute;
  bottom: 10rem;
  right: 5rem;
}

.school-business {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.school-business h2 {
  font-weight: 800;
  font-size: 65px;
}

.school-business span {
  font-weight: 500;
  font-size: 22px;
  padding-left: 10px;
}

.school-num h2 {
  font-weight: 800;
  font-size: 65px;
}

.school-num span {
  font-weight: 500;
  font-size: 22px;
}

.bar span {
  color: #ffffff;
  font-size: 15px;
  display: flex;
  justify-content: center;
  font-weight: 800;
  padding-top: 7px;
  font-family: "Roboto", sans-serif;
  ;
}

.below10 p {
  margin-bottom: 0;
  font-size: 15px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  ;
}

/* Map css end here */

/* Footer css start here */
/* .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 70px 20px 20px;
  position: relative;
  background-image: url('../home-images/Footer-img/school-line-art.svg')!important;
  background-repeat: no-repeat!important;
  background-position: center center!important;
} */

.footer .box {
  width: 90%;
  text-align: center;
  padding: 10px;
  /* background: #ffffff42; */
  border-radius: 10px;
  box-shadow: 0 0 4px #e6e6e6;
  margin: 0 auto 30px;
}

.footer .box:hover a {
  text-decoration: none;
}

.footer .box img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 5px;
  filter: invert(1);
}

.sub-heading {
  font-family: "Roboto", sans-serif;
  ;
}

.footer .logo img {
  width: 100px;
  margin-bottom: 15px;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  ;
}

/* .logo {
  margin-bottom: 20px;
} */
.footer p,
.footer a {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  ;
}

.social-icons img {
  width: 25px;
  height: 25px;
}

.footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer .bottom-bar {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

.footer .social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
}

.footer .social-icons a:hover {
  color: #ccc;
}

.icon-text img {
  width: 36px;
  height: 30px;
}

.footer .icon-text {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  ;
}

.icon-text p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-bg {
  /*background-image: url('https://i.imgur.com/FCfAiGf.png'); /* Optional faded background */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Footer css end here */

.Floating {
  animation: floatUpDown 3s ease-in-out infinite;
}

.vision-mission-section .section>div {
  width: 80%;
  margin: 20px 0;
}

.vision-mission-section {
  position: relative;
  color: #fff;
  border-right: 1px dashed #ffffff;
}

.vision-mission-section img {
  width: 45px;
  border-radius: 5px;
  animation: pulse 3s ease-in-out infinite;
}

.vision-mission-section .icon {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7c971;
  border-radius: 50%;
  position: relative;
}

.vision-mission-section .icon:before {
  content: '';
  height: 90%;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  border: 2px dashed #7a1b1b;
  transform-origin: center;
  /* animation: rotate 8s linear infinite forwards; */
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.desc {
  width: calc(100% - 150px);
}

.news-section {
  position: relative;
  /* padding: 100px 0px; */
  background-color: #f9f9f9;
  /* color: #fff; */
  border-radius: 30px;
  margin: 0 1rem;
}


.news-swiper .swiper-slide img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s linear;
}

.ne-img {
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s linear;
}

.news-swiper .swiper-slide:hover img {
  transform: scale(1.1);
  transition: all 0.5s linear;
}

.news-swiper .swiper-slide:hover .arrow {
  color: #000000;
  background-color: #f6f3ed;
}

.news-swiper .swiper-slide:hover .arrow::after {
  transform: translateX(10px);

}

/* .news-swiper .swiper-slide:hover .title {
  text-decoration: underline;
  transition: all 0.5s linear;
} */

.date {
  margin: 8px 0;
  color: #7a1b1b !important;
  position: absolute;
  transform: rotate(270deg);
  left: -35px;
  top: 35px;
  text-transform: uppercase;
  font-size: 18px;
}

.title {
  padding-left: 50px;
  margin-top: 10px;
  font-size: 20px;
  min-height: 45px;
}

.news-swiper button {
  margin-left: 50px;
}


.arrow {
  color: #0c5449;
  background-color: #f6f3ed;
}

.arrow::after {
  display: inline-block !important;
  padding-left: 8px !important;
  content: "➞" !important;
  transition: transform 0.3s ease-out !important;

}

.arrow:hover {
  background-color: transparent !important;
}

nav li.active a,
nav li:hover a,
nav li:focus a,
nav li:active a {
  color: #7a1b1b;
  font-weight: 500;
}

nav li.active:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background: #7a1b1b;
}

nav li:hover:after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background: #7a1b1b;
  transition: all 0.5s linear;
  animation: lineTopAnim 1s forwards;
}

nav li {
  position: relative;
  transition: all 0.5s linear;

}

.arrow:hover::after {
  transform: translateX(10px);
}

.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: 2px solid #7a1b1b;
  color: #7a1b1b;
  font-size: 20px;
}

.news-swiper .swiper-button-next {
  right: -70px;
}

.news-swiper .swiper-button-prev {
  left: -70px;
}

/* .news-swiper {
  overflow: visible;
} */

.alumni-testimonial .swiper-slide {
  /* background: #f7c97169; */
  overflow: hidden;
  border-radius: 10px;
  height: auto;
}

.alumni-testimonial .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.alumni-testimonial .play-btn {
  display: flex;
  /* left: auto;
  right: -12%;
  outline: 2px solid #f7c971;
  outline-offset: 3px;
  font-size: 40px;
  height: 65px;
  width: 65px; */
}

.alumni-testimonial p {
  margin: 20px;
  font-size: 20px;
  position: relative;
}

.alumni-testimonial h5 {
  margin: 0 10px 10px 25px;
  color: var(--theme-color);
}

.alumni-testimonial h5 span {
  font-size: 12px;
}

.alumni-testimonial .content-box {
  width: 80%;
  text-align: center;
}

.testimonial-section .swiper-wrapper {
  margin-bottom: 30px;
}

img.quotes-top,
img.quotes-bottom {
  width: 40px !important;
  margin: auto;
}

.logo-section {
  height: 200px;
  width: 200px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  /* box-shadow: -7px 7px 5px #0000006b; */
  position: relative;
}

/* .logo-section:before {
  content: '';
  height: 145%;
  width: 145%;
  border-radius: 50%;
  border-right: 3px dashed #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotate 10s linear infinite forwards;
} */

.logo-section img {
  width: 120px;
}

.vision-mission-section .section:first-child,
.vision-mission-section .section:last-child {
  margin-left: -120px;
}


.abt-sec {
  padding: 100px 0;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


@media (min-width: 1440px) and (max-width: 1440px) {
  h4.title-block.mb-15 {}

  .testimonial-card {
    background-size: 50%;
  }
}

/*Sidebar Enquiry*/
.enqiry-form {
  position: fixed;
  /*z-index: 9999;*/
  z-index: 99;
  /*top: 50%;*/
  top: 400px;
  transform: translateY(-50%);
  left: calc(100% - 55px);
  width: 450px;
  display: flex;
  justify-content: center;
  right: 0;
  color: #000;
  transition: all .3s linear;
}

.equiry-title {
  /* background: red; */
  /* display: inline; */
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: self-start;
  position: relative;
}

.equiry-title span {
  background: #F7c971;
  padding: 15px 10px;
  transform: rotate(270deg);
  display: block;
  width: 140px;
  color: #7a1b1b;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  box-shadow: -3px -3px 10px #727272;
  position: absolute;
  text-align: center;
  top: 38px;
  left: -31px;
  cursor: pointer;
}

.equiry-title span.close {
  display: none;
}

.enquiry-body {
  background: #fff;
  padding: 15px 25px;
  border-radius: 0 0 0 10px;
  box-shadow: 0 0 5px gray;
  width: calc(100% - 60px);
}

.enqiry-form label {
  color: #7a1b1b;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.enqiry-form input,
textarea,
select {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 3px;
  border: 1px solid #ffffff;
  padding: 5px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  background: #fef8ee;
  border-radius: 8px;
  box-shadow: 1px 1px 1px 0px #e4e4e4;
}

.enqiry-form .submit-btn a {
  display: inline-block;
  background: #F7c971;
  text-decoration: none;
  padding: 16px 28px;
  font-size: 15px;
  text-transform: uppercase;
  color: #7a1b1b;
  font-weight: 600;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  transition: 0.5s;
  width: 100%;
  text-align: center;
}



.list-group {
  flex-direction: row;
}

.list-group img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #dadada;
  margin-right: 15px;
  padding: 5px;
  float: left;
}

.nav-link {
  color: #000;
}

#v-pills-tab .nav-link {
  margin: 0 20px;
  text-align: left;
  width: 100%;
}

#v-pills-tab {
  background: #7a1b1b;
  border-radius: 10px;
  padding: 15px 0;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.tab-content {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

#v-pills-tab .nav-link.active,
#v-pills-tab .show>.nav-link {
  color: #7a1b1b;
  background-color: #fff;
}

#v-pills-tab .nav-link:focus,
#v-pills-tab .nav-link:hover {
  color: #7a1b1b;
  background-color: #fff;
}

#v-pills-tab .nav-link {
  color: #dfdfdf;
}

.list-group-item {
  border: none;
  line-height: 48px;
  border-bottom: var(--bs-list-group-border-width) solid #7a1b1b;
  border-radius: 0 !important;
}

.dropdown-mega>a {
  padding: 15px;
  background: #7a1b1b;
  border-radius: 8px;
}

.dropdown-mega>a {
  color: #fff;
}

.dropdown-mega:hover>a {
  color: #fff;
}

nav li.dropdown-mega:hover:after {
  display: none;
}

.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle:hover {
  color: #7a1b1b;
}

.dropdown-mega .nav-link.dropdown-toggle:focus,
.dropdown-mega .nav-link.dropdown-toggle:hover {
  color: #fff;
}

nav .dropdown-menu li:hover:after {
  display: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #7a1b1b;
}

.dropdown-item.active,
.dropdown-item:active {
  background: transparent !important;
  border: none;
}

.button-section .button {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px !important;
  background-color: #fff;
  border-radius: 50%;
}

.button img {
  height: 100%;
  width: auto;
}

.logo-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.logo {
  width: 100px;
  height: 80px;
  z-index: 9;
}

footer .logo {
  width: 100px;
  height: 100px;
}

.text {
  position: absolute;
  width: 90%;
  height: 90%;
  font-family: var(--title-font);
  color: #fff;
  font-size: 17px;
  animation: textRotation 8s linear infinite;
  transform-origin: center;
  letter-spacing: 80px;
}

@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

.text span {
  position: absolute;
  left: 50%;
  font-size: 18px;
  transform-origin: 0px 135px;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
}

.button-section .circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto 10px;
  position: relative;
  border: none;
  background: transparent;
  box-shadow: none;
}

.button-section .circle img {
  width: 100%;
  animation: none;
}

.button-section .circle::after {
  display: none;
}

.button-section .logo {
  width: 180px;
  height: 180px;
  z-index: 9;
  background: #fff;
  border-radius: 50%;
  padding: 20px;
}

.mega-content .accordion {
  width: 25%;
  background: #7a1b1b;
  border-radius: 10px;
  padding: 15px 0;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.mega-content .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.mega-content .accordion-flush .accordion-collapse {
  border-width: 0;
  position: absolute;
  top: 0;
  width: 73%;
  right: 0;
}

.mega-content .accordion-button {
  width: 90%;
  margin: auto;
  padding: .5rem 1rem;
  font-size: 1rem;
  border-radius: 0.375rem !important;
  background-color: transparent;
  color: #fff;
}

.mega-content .accordion-button:not(.collapsed) {
  color: #7a1b1b;
  background-color: #fff;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.mega-content .accordion-item {
  background-color: transparent;
  border: none;
}

.mega-content .accordion-button::after {
  display: none;
}

svg#indiaMap {
  width: 100%;
  height: 60vh;
  display: block;
}

.state {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  cursor: pointer;
  transition: stroke 0.3s;
}

.state.active {
  stroke: #1976d2;
  stroke-width: 2;
}

.pin {
  fill: crimson;
  stroke: white;
  stroke-width: 1px;
}

.pin-count {
  font-size: 10px;
  fill: #000;
  text-anchor: middle;
  pointer-events: none;
}

.testimonial-title {
  text-align: center;
  margin-bottom: 10px;
  color: #7a1b1b;
  font-weight: 500;
  font-size: 20px;
}

.accordion {
  --bs-accordion-btn-padding-y: 1.5rem;
}

.hero-banner {
  position: relative;
  height: 40vh!important;
  overflow: hidden;
  transition: transform 0.4s ease-out;
  transform-origin: center;
  border-radius: 30px;
  width: 98%;
  margin: auto;
  padding: 0;
}

.hero-banner img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: left;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: #fff;
  border: none;
  border-bottom: 1px solid var(--bs-accordion-border-color);
}

.accordion-button {
  background-color: #fff;
}

.accordion-header:hover,
.accordion-header:focus {
  outline: none;
  border-color: transparent
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #7a1b1b;
  background-color: #fff;
  box-shadow: none;
  font-weight: 600;
  /* padding-bottom: 0px; */
}

#map_holder {
  height: 100% !important;
}

#map_inner {
  height: 100% !important;
}

#map_inner svg {
  height: 100% !important;
}

#map_inner svg rect {
  height: 100% !important;
}

#map_background {
  height: 100% !important;
}


#map_access {
  display: none !important;
}

section {
  padding: 50px 0;
}

.about-boxes {
  background-color: #7a1b1b;
  margin: 0 1rem;
  border-radius: 30px;
  padding: 50px 0;
}

.info.box {
  padding: 30px;
  background: #fff9f1;
  border-radius: 15px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.box h4 {
  color: #7a1b1b;
  font-weight: 600;
  margin-bottom: 20px;
}

.info.box img {
  width: 85px;
  position: absolute;
  top: -30px;
  right: 20px;
}

.info.box a {
  color: #000;
  text-decoration: none;
}

.info.box a:hover {
  color: #7a1b1b;
  text-decoration: none;
}

.certificate {
  height: 280px;
}

.certificate .swiper-3d .swiper-slide-shadow {
  background: transparent;
}

/* .faculty-section.excellence {
  background-color: #7a1b1b;
  margin: 0 1rem;
  border-radius: 30px;
  background-image: url(../home-images/faculty-img/wave-2.png);
} */

section.bg-color,
section.experts {
  background-color: #7a1b1b;
  position: relative;
  background-image: url(../home-images/Campus-img/circle-campus.svg);
  background-repeat: no-repeat;
  margin: 0 1rem;
  border-radius: 30px;
}



.experts .swiper-pagination-bullet {
  border: 1px solid #fff;
}

.experts .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.experts .expertsSwiper {
  padding: 20px 0 50px;
}

.experts .card-custom {
  background: #f7f7f7;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  padding: 0;
  padding-top: 10px;
  height: auto;
}

.experts img {
  height: 180px;
  width: 180px;
  margin: auto;
  border-radius: 50%;
}

.experts .card-body-custom {
  position: relative;
  background: transparent;
  box-shadow: none;
  top: auto;
  bottom: auto;
  width: 100%;
}

.experts .card-label {
  font-size: 18px;
}

.experts .card-title {
  font-size: 14px;
  font-weight: 400;
}

.dropdown-menu.show {
  overflow: auto;
  background: #ffffff69;
}

.events-img {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

.events-img img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.event-date {
  color: #ffffff;
  margin-bottom: 0px;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 20px;
  line-height: 25px;
  padding: 7px;
  font-weight: 600;
  border-radius: 9px;
  text-align: center;
  background: #7a1b1bd4;
  min-width: 60px;
}

input.input-field,
textarea.input-field {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: none;
  background: #ffffffcc;
}

::placeholder {
  font-size: 14px;
  color: rgb(218, 218, 218);
}

button.submit-btn {
  padding: 8px 30px;
  border-radius: 7px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
}

button.submit-btn:hover {
  border: 1px solid #fff;
  color: #7a1b1b;
  background: #fff;
}

input[type=file] {
  position: relative;
  padding: 15px 20px;
}

input[type=file]::-webkit-file-upload-button {
  display: none;
}

input[type=file]::file-selector-button {
  display: none;
}

.uploadBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
  z-index: 1;
  padding: 10px 20px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 5px;
}

.map {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-popup .popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: unset;
  border-radius: 50%;
  object-position: top;
}

.experts .card-custom {
  background: #ffffff;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  padding: 20px 30px;
  /* padding-top: 10px; */
  height: auto;
}

.alumni-testimonial .swiper-slide img {
  outline: 4px solid #f7c971;
  outline-offset: 6px;
  height: 200px;
  width: 200px;
  object-position: top;
}

.experts .play-btn {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
  height: 55px;
  width: 55px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--theme-color);
  background: #f7c971;
  display: none;
  margin: auto;
}

.experts .video-youtube {
  text-decoration: none;
}

.alumni-testimonial .swiper-slide {
  height: fit-content;
}

.testimonial-slider .swiper-slide img {
  outline: 4px solid #f7c971;
  outline-offset: 6px;
  height: 200px;
  width: 200px;
  object-position: top;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cust-box {
  padding: 30px;
  width: 100%;
  background: #f0f0f0;
  border-radius: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px #dcdcdc;
}

.cust-box .img-section {
  width: 120px;
  height: 120px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  outline: 2px dashed #f7c971;
  outline-offset: 8px;
  background: #f7c971;
  margin: auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cust-box .img-section img {
  height: 55%;
  width: 55%;
  /* border-radius: 50%; */
}

.cust-box:hover {
  background: #7a1b1b;
}

.cust-box:hover .img-section {
  outline: 2px dashed #ffffff;
  outline-offset: 8px;
  background: #ffffff;
}

.cust-box:hover .card-title {
  color: #fff;
}

.white .swiper-pagination-bullet {
  border: 1px solid #ffffff;
}

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


.about .message-box {
  width: 110%;
  padding-right: 15%;
}

.about .chairman-img-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
}

.about .chairman-img-wrapper.animate {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-primary {
  background-color: #7a1b1b !important;
}


@media screen and (max-width: 992px) {
  .about .chairman-img-wrapper {
    position: relative;
    top: 0%;
    transform: translateY(0%);
    height: 100%;
  }

  .about .chairman-img-wrapper.animate {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }

  .chairman-img-wrapper {
    margin-bottom: 50px;
  }

  .about .message-box {
    width: 100%;
    padding-right: 20px;
  }
}

@media screen and (max-width: 992px) {
  .message-box {
    margin-top: 0;
  }
}

@media (max-width: 1050px) {
  .navbar {
    padding: 20px;
  }

  nav ul {
    gap: 10px;
    padding-inline-start: 0;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .vision-mission-section {
    border-right: none;
  }
}


@media (max-width: 768px) {
  #right-map {
    height: 500px !important;
  }

  .mega-content .accordion-flush .accordion-collapse {
    position: relative;
    top: 0;
    width: 95%;
    margin: auto;
    right: auto;
    background: #fff;
  }

  #map {
    padding: 0;
  }

  #map_inner svg {
    height: 100% !important;
    width: 100% !important;
  }

  .mega-content .accordion {
    width: 100%;
    height: 100vh;
    overflow: auto;
    max-height: 95vh;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  .mega-content .accordion-button {
    width: 95%;
    border-radius: 0 !important;
  }

  .mega-content .accordion-button::after {
    display: flex;
    filter: invert(1);
  }

  .mega-content {
    padding: 0px !important;
  }

  .alumni-testimonial .content-box {
    width: 100%;
  }

  .alumni-testimonial .play-btn {
    /* right: auto;
    left: 50%;
    top: 50%; */
  }

  .state-btn {
    padding: 0.5rem 1rem;
    font-size: 16px;
  }

  .experts .card-custom {
    width: 100%;
    margin: auto;
  }

  .hero-banner img {
    object-position: center !important;
  }
}

.services.with-number .services-item::before {
  counter-increment: workcounter;
  content: counters(workcounter, ".", decimal-leading-zero);
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  margin-left: 15px;
}

#right-map {
  width: 100%;
  height: 695px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 0;
}

#location-list li {
  cursor: pointer;
  padding: 10px;
  color: #7a1b1b;
  background: #f7c971;
  font-weight: 600;
  border-radius: 9px;
}

#location-list li:hover {
  background: #f5f5f5;
}

.leaflet-container a {
  color: #000 !important;
  text-decoration: none;
}

/* Remove bullets */
#location-list li {
  list-style: none;
}

/* State item */
.state-item {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 6px 4px;
  position: relative;
  padding-right: 22px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

/* Hover effect */
.state-item:hover {
  background: #f2f2f2;
}

/* Arrow icon */
.state-item::after {
  content: "▾";
  position: absolute;
  right: 4px;
  top: 7px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.state-item.active::after {
  transform: rotate(180deg);
}

/* City dropdown list (hidden) */
.city-list {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-left: 15px;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

/* When opened */
.city-list.open {
  max-height: 210px;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: scroll;
}


/* State item */
.state-item {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 6px 4px;
  position: relative;
  padding-right: 22px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

/* Hover effect */
.state-item:hover {
  background: #f2f2f2;
}

/* Arrow icon */
.state-item::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.state-item.active::after {
  transform: rotate(180deg);
}

/* CITY LIST (smooth auto height) */
.city-list {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-left: 15px;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;
}

/* City item */
.city-item {
  cursor: pointer;
  margin: 6px 0;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.city-item:hover {
  background: #f9e4e4;
  color: #7A1B1B;
  font-weight: 600;
}
@media screen and (max-width: 400px) {

.hero-banner {
  height: 230px!important;
}
}
@media screen and (max-width: 400px) {

  .list-group-item {
    display: flex !important;
    flex-direction: column !important;
    line-height: 150%;
    gap: 5px;
  }

  .mega-content .accordion {
    height: fit-content !important;
  }
}