* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Rethink Sans", sans-serif;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(124.01deg, #481092 24.46%, #6439ff 85.27%);
}

html {
  scrollbar-color: var(--caramel) white;
}

:root {
  --caramel: #be833c;
  --white: white;
  --font-size: 18px;
}

body {
  background-color: #000000 !important;
  color: rgb(214, 214, 214);
}

h2 {
  font-size: 52px !important;
  font-weight: 900 !important;
}

@media screen and (max-width: 576px) {
  h2 {
    font-size: 42px !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    content: url("/logo.svg");
  }
}

/* header */
header {
  position: relative;
  padding: 20px 0px;
}

.home_header {
  background: url("/assets/images/radiant-bg-1.svg") no-repeat center/cover;
  padding: 3% 0px 2.5%;
}

header nav {
  background-color: #19191a;
  margin: 1.5% auto;
}

header nav .nav-item .nav-link {
  font-size: 1rem;
  color: rgb(214, 214, 214);
  transition: all 0.2s ease;
}

header .navbar-nav {
  align-items: center;
}

header .dropdown:hover .dropdown-li {
  display: block;
}

header nav .nav-item .nav-link.active {
  color: var(--caramel);
  text-decoration: underline var(--caramel);
  width: fit-content;
}

header nav .login_btn {
  border-color: var(--caramel);
  color: var(--white);
  font-size: 0.8em;
  width: 100%;
}

header nav .login_btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

header nav .apply_now_btn {
  background-color: var(--caramel);
  color: var(--white);
  font-size: 0.8em;
}

header nav .apply_now_btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.btn:active {
  transform: scale(0.99);
  color: var(--caramel);
  border-color: var(--caramel) !important;
}

a:active {
  color: var(--caramel);
  border-color: var(--caramel);
  border-radius: inherit;
}

header nav .nav-item:hover .nav-link {
  width: fit-content;
  color: #c7904d;
}

@media screen and (max-width: 992px) {
  header nav .nav-item .nav-link {
    transition: none !important;
  }
}

@media screen and (max-width: 991px) {
  header .offcanvas {
    background-color: black;
  }

  header .buttons {
    width: 50%;
  }

  header nav .login_btn {
    width: 100%;
  }

  header nav .apply_now_btn {
    width: 100%;
  }

  header .navbar-nav {
    align-items: start;
  }

  header nav .navbar-toggler:focus {
    box-shadow: 1px 4px 4px 1px #4c4c4c14 !important;
  }

  header nav .navbar-toggler:active {
    transform: scale(0.9);
  }

  header nav .close_btn {
    border: none;
    background-color: transparent;
    font-size: 35px;
    color: #c7904d;
  }

  header nav .close_btn:hover {
    border: none;
    background-color: transparent;
    font-size: 35px;
    color: #cc0000;
  }

  header nav .close_btn:active {
    transform: scale(0.9);
  }

  header nav .close_btn i {
    transition: all 0.1s linear;
  }

  header nav .close_btn i:active {
    transform: scale(0.9);
  }

  header nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0px;
    transition: all 0.2s ease;
  }

  header nav .nav-item .nav-link.active {
    color: var(--caramel);
  }

  header nav .nav-item:hover .nav-link {
    color: var(--caramel);
    width: fit-content;
  }
}

/* ===== Menu Wrapper ===== */
header .menu {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
}

header .menu-wrapper {
  display: flex;
  margin: 50px auto;
  gap: 10px;
  height: max-content;
}

/* ===== Columns ===== */
header .menu-column {
  background: black;
  padding: 10px;
  flex: 1;
  min-width: 180px;
  border-radius: 6px;
}

header .menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Top-level items ===== */
header #menu-top-small-screen ul li a,
header #menu-top-large-screen ul li a {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #444;
  color: rgb(214, 214, 214);
}

header #menu-top-large-screen ul li a.active,
header #menu-top-large-screen ul li a:hover {
  font-weight: bold;
  color: var(--white);
  background: #b58448;
}

header #menu-top-small-screen ul li span.active,
header #menu-top-small-screen ul li span:hover {
  color: #b58448;
}

header #menu-top-small-screen ul li span {
  border-bottom: 1px solid #444;
  cursor: pointer;
}

header #menu-top-small-screen ul li span a.active,
header #menu-top-small-screen ul li span a:hover {
  color: #b58448;
}

header #menu-top-large-screen ul li.active,
header #menu-top-large-screen ul li:hover {
  font-weight: bold;
  color: var(--white);
  background: #b58448;
}

/* ===== Sub-level items ===== */
header #menu-sub-small-screen ul li,
header #menu-sub-large-screen ul li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #444;
  color: rgb(214, 214, 214);
  transition:
    background 0.2s,
    color 0.2s;
}

/* name link inside row */
header #menu-sub-small-screen ul li div a,
header #menu-sub-large-screen ul li div a {
  color: rgb(214, 214, 214);
  text-decoration: none;
}

/* chevron icon */
header #menu-sub-small-screen ul li div i,
header #menu-sub-large-screen ul li div i {
  color: rgb(214, 214, 214);
}

/* Small screen hover */
header #menu-sub-small-screen ul li div a.active,
header #menu-sub-small-screen ul li div a:hover {
  color: #b58448;
}

header #menu-sub-small-screen ul li:hover div i,
header #menu-sub-small-screen ul li.active div i {
  color: #b58448;
}

/* Large screen hover/active */
header #menu-sub-large-screen ul li:hover,
header #menu-sub-large-screen ul li.active {
  background: #b58448;
}

header #menu-sub-large-screen ul li:hover div a,
header #menu-sub-large-screen ul li.active div a,
header #menu-sub-large-screen ul li:hover div i,
header #menu-sub-large-screen ul li.active div i {
  color: var(--white) !important;
}

/* ===== Content-level links ===== */
header #content-text-small-screen a,
header #content-text-large-screen a {
  display: block;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #444;
  text-decoration: none;
  color: rgb(214, 214, 214);
}

/* Small screen */
header #content-text-small-screen a.active,
header #content-text-small-screen a:hover {
  color: #b58448;
}

/* Large screen */
header #content-text-large-screen li:hover,
header #content-text-large-screen li.active {
  background: #b58448;
}

header #content-text-large-screen li:hover a,
header #content-text-large-screen li.active a {
  color: var(--white) !important;
}

header #content-text-small-screen a,
header #content-text-large-screen a {
  text-decoration: none;
}

header .back {
  cursor: pointer;
}

/* ===== Mobile below 992px ===== */
@media (max-width: 992px) {
  header .menu-wrapper {
    flex-direction: column;
  }

  header .menu-column {
    min-width: 100%;
    display: none;
    flex-direction: column;
  }

  /* Show only active column */
  header .menu-column.active {
    display: flex;
  }

  /* Show back buttons */
  header .menu-column h4 .back {
    display: inline;
  }

  header .menu-column h4 {
    display: inline;
  }
}

/* ===== Desktop above 992px ===== */
@media (min-width: 993px) {

  /* Hide back buttons on desktop */
  header .menu-column h4 .back,
  header .menu-column h4 {
    display: none !important;
  }
}

/* Initially hide the menu wrapper */
header .menu-wrapper {
  display: none;
}

header .menu-wrapper.show {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

header nav #academics .dropdown-li {
  display: none !important;
}

@media (max-width: 991px) {
  header nav .dropdown {
    width: 100%;
  }
}

@media (max-width: 992px) {
  header nav #academics.active .dropdown-li {
    display: block !important;
    height: 500px !;
  }

  header nav #academics.active #menu-wrapper-small-screen {
    display: block !important;
  }

  header #menu-wrapper-large-screen {
    display: none !important;
  }
}

.navbar {
  position: relative;
}

.navbar .nav-pills-float {
  position: absolute;
  left: 24px;
  bottom: -36px;
  z-index: 100;
  display: flex;
  gap: 10px;
}

@media (max-width: 992px) {

  .navbar .nav-pills-float {
    left: 0;
    bottom: -36px;
  }
}

.navbar .nav-pill-btn {
  background: var(--caramel);
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 5px 25px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar .nav-pill-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.75) 50%,
      transparent 70%);
  transform: skewX(-20deg);
  animation: sword-slash 1.5s ease-in-out infinite;
}

@keyframes sword-slash {
  0% {
    left: -75%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    left: 130%;
    opacity: 0;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

.navbar .nav-pill-btn:hover {
  background: #fff;
  color: var(--caramel);
}

.navbar .film-roll {
  width: 22px;
  height: 22px;
  margin-left: 6px;
  vertical-align: middle;
  animation: reel-spin 4s linear infinite;
  transform-origin: center;
}

@keyframes reel-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {

  .navbar .nav-pill-btn {
    width: 100%;
    text-align: center;
  }
}

/* .hero carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  margin: 4% 0px;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-carousel .hero-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-carousel .hero-bg.active {
  opacity: 1;
}

.hero-carousel .hero-bgs::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content */
.hero-carousel .hero-slide-content {
  position: relative;
  width: 90%;
  z-index: 2;
}

.hero-carousel .hero-slide-content h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.hero-carousel .hero-slide-content p {
  font-size: 1.3rem;
  color: rgb(214, 214, 214);
  line-height: normal;
}

.hero-carousel .hero-slide-content p span {
  font-size: 0.7em;
}

.hero-carousel .explore_courses_btn {
  background: var(--caramel);
  border: 1px solid var(--caramel);
  color: #fff;
  font-size: 0.8rem;
}

.hero-carousel .explore_courses_btn:hover {
  background: #fff;
  color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.15);
}

.hero-carousel .hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-carousel .hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-carousel .hero-dot.active {
  background: var(--caramel);
  transform: scale(1.3);
}

.hero-carousel .w-sm-50 {
  width: 50% !important;
}

@media (max-width: 1200px) {
  .hero-carousel {
    margin: 5.5% 0;
  }

  .hero-carousel .hero-slide-content h1 {
    font-size: 3.9rem;
  }
}

@media (max-width: 992px) {
  .hero-carousel {
    margin: 8% 0;
  }

  .hero-carousel .hero-slide-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-carousel {
    margin: 12% 0;
  }

  .hero-carousel .hero-slide-content h1 {
    font-size: 3.1rem;
  }

  .hero-carousel .hero-slide-content p {
    font-size: 1.15rem;
  }

  .hero-carousel .w-sm-50 {
    width: 100% !important;
  }
}

@media (max-width: 457px) {
  .hero-carousel {
    margin: 14% 0;
  }

  .hero-carousel .hero-slide-content h1 {
    font-size: 2.5rem;
  }

  .hero-carousel .hero-slide-content p {
    font-size: 1.11rem;
  }
}

/* Equipment */
.equipment {
  background: url("/assets/images/radiant-bg-1.svg") no-repeat center / cover;
  background-color: #0d0d0d;
  padding: 10% 0 5%;
}

.equipment .equipment_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.equipment .equipment_lists .box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease-in-out;
  height: 480px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.equipment .equipment_lists .box:hover {
  transform: scale(1.01);
}

.equipment .testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
  object-position: 50% 25%;
}

.equipment .testimonial-video::-webkit-media-controls {
  display: none !important;
}

.equipment .testimonial-video::-webkit-media-controls-panel {
  display: none !important;
}

.equipment .testimonial-video::-webkit-media-controls-play-button {
  display: none !important;
}

.equipment .testimonial-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

.equipment .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
  z-index: 10;
  cursor: pointer;
}


.equipment .play-pause-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    opacity 0.2s ease;
  flex-shrink: 0;
}

.equipment .play-pause-btn:hover {
  transform: scale(1.1);
}

.equipment .video-overlay.playing .play-pause-btn {
  display: none;
}

.equipment .play-pause-btn i {
  font-size: 1.3rem;
  color: #111;
  pointer-events: none;
}

/* REVIEWS */
.equipment .testimonial-review {
  border-left: 2.5px solid rgba(245, 181, 0, 0.5);
  padding-left: 0.75rem;
  margin-top: 1rem;
}

.equipment .testimonial-review.centered {
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.equipment .star-rating {
  color: #f5b500;
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

.equipment .star-empty {
  color: rgba(255, 255, 255, 0.22);
}

.equipment .review-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0.2rem;
}

.equipment .reviewer-name {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

.equipment h2.fw-bold {
  font-size: 2.8rem;
  line-height: 1.15;
}

@media (max-width: 991.98px) {
  .equipment .equipment_lists .box {
    height: 350px;
  }

  .equipment .equipment_lists {
    justify-content: center;
  }

  .equipment h2.fw-bold {
    font-size: 2.2rem;
  }

  .equipment .testimonial-review {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .equipment {
    padding: 15% 0 5%;
  }

  .equipment .equipment_lists .box {
    height: 300px;
  }

  .equipment h2.fw-bold {
    font-size: 1.9rem;
  }
}

/* course */
.course {
  background: url("/assets/images/radiant-bg-4.svg") no-repeat center/cover;
  padding: 5% 0px 0px;
}

.course .division {
  background: url(assets/images/home/bg-img.png) no-repeat 100% -10%;
  background-size: cover;
  height: 130vh;
}

.course .h1 {
  font-size: 52px;
  font-weight: 900 !important;
  color: white;
}

.course p {
  font-size: 52px;
  font-weight: 900 !important;
  color: #9a9da3;
  line-height: normal;
  margin-top: 1rem;
}

.course .buttons {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.course .course_btn {
  background: var(--caramel);
  color: white;
  font-size: 0.8em;
  width: 100%;
  border: 1px solid var(--caramel);
  cursor: pointer;
}

.course .course_btn:hover {
  background: white;
  color: var(--caramel);
  border: 1px solid var(--caramel);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
  .course .h1 {
    font-size: 2em;
  }

  .course p {
    font-size: 2em;
  }
}

@media (max-width: 993px) {
  .course .division {
    background: none;
    height: fit-content;
    padding: 30px 0;
  }
}

@media (max-width: 992px) {
  .course .h1 {
    font-size: 2.3em;
  }

  .course p {
    font-size: 2.3em;
  }
}

@media (max-width: 576px) {
  .course {
    padding: 10% 0px;
  }

  .course .h1 {
    font-size: 42px;
  }

  .course p {
    font-size: 42px;
  }

  .course .buttons {
    width: fit-content;
  }
}

@media (max-width: 457px) {
  .course .h1 {
    font-size: 1.6em;
  }

  .course p {
    font-size: 1.6em;
  }
}

/* our programs */
.our_programs {
  padding: 8% 0;
  background: url("/assets/images/radiant-bg-3.svg") no-repeat center/cover;
}

.our_programs .h2-top {
  display: none;
}

.our_programs .h2-bottom h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.our_programs .boxTwo {
  align-self: flex-start;
}

.our_programs .cardOne {
  background: url("/assets/images/home/img-5.png") no-repeat center/cover;
}

.our_programs .cardTwo {
  background: url("/assets/images/home/img-7.png") no-repeat center/cover;
}

.our_programs .cardThree {
  background: url("/assets/images/home/img-9.png") no-repeat center/cover;
}

.our_programs .cardFour {
  background: url("/assets/images/home/img-6.png") no-repeat center/cover;
}

.our_programs .cardFive {
  background: url("/assets/images/home/img-8.png") no-repeat center/cover;
}

.our_programs .cardSix {
  background: url("/assets/images/home/img-20.png") no-repeat center/cover;
}

.our_programs .card {
  height: 450px;
  width: 100%;
  border-radius: 10px;
  transition: 0.2s;
  text-align: left;
}

.our_programs .card:hover {
  transform: scale(1.01);
}

.our_programs .card p,
.our_programs .title {
  color: #fff;
}

.our_programs .title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.our_programs .card p,
.our_programs .btn {
  font-size: 0.8em;
}

.our_programs .btn {
  background: var(--caramel);
  color: #fff;
  border: 0;
  cursor: pointer;
}

.our_programs .btn:hover {
  background: #fff;
  color: var(--caramel);
  box-shadow: 2px 2px 15px rgb(0 0 0 /0.15);
}

.our_programs .small_tag {
  font-size: 0.75em;
  color: #fff;
  background: #ffffff33;
  backdrop-filter: blur(24px);
  border-radius: 8px;
  width: fit-content;
}

@media (max-width: 1200px) {
  .our_programs .h2-top {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .our_programs .h2-bottom {
    display: none;
  }
}

@media (max-width: 992px) {
  .our_programs .boxTwo {
    align-self: normal;
  }

  .our_programs .card {
    height: 450px;
  }
}

/* video */
.video_section .video {
  width: 85%;
}

.video_section {
  background: #000;
  padding: 50px 0 70px;
}

.video_section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.video_section p {
  letter-spacing: 0.1em;
}

.video_section .video_box {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.video_section .video_box video {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.video_section .play_btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 /0.2);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .video_section .video {
    width: 100%;
  }

  .video_section .video_box video {
    height: 350px;
  }
}

/* news */
.news_section {
  background: url("/assets/images/radiant-bg-2.svg") no-repeat center/cover;
  padding: 5% 0;
}

.news_section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.news_section p {
  letter-spacing: 0.1em;
}

.news_section .swiper-wrapper-outer {
  position: relative;
  padding: 10px 0px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.news_section .swiper-container {
  overflow: hidden;
  width: 100%;
  flex: 1;
  min-width: 0;
}

.news_section .swiper-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  cursor: grab;
}

.news_section .swiper-track:active {
  cursor: grabbing;
}

.news_section .slide-item {
  flex-shrink: 0;
}

.news_section .card {
  background: #212121;
  overflow: hidden;
  transition: 0.2s linear;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news_section .card:hover {
  transform: scale(1.01);
}

.news_section .news-img {
  width: 100%;
  height: 13rem;
  max-height: 13rem;
  object-fit: cover;
  flex-shrink: 0;
}

.news_section .news-title {
  color: var(--caramel);
  font-size: 1rem;
  flex-shrink: 0;
}

.news_section .description {
  color: #fff;
  font-size: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.news_section .card>span:last-child {
  margin-top: auto;
  flex-shrink: 0;
}

.news_section .swiper-control-btn {
  flex-shrink: 0;
  position: static;
  width: 50px;
  height: 50px;
  background: rgba(199, 144, 77);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
}

.news_section .swiper-control-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Dots */
.news_section .swiper-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.news_section .swiper-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: 0.2s;
}

.news_section .swiper-dot.active {
  background: var(--caramel);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .news_section .swiper-wrapper-outer {
    padding: 10px 0px 40px;
    gap: 8px;
  }
  .news_section .swiper-control-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
}

.news_section .btn {

  border: 1px solid #c7904d;
  background-color: #c7904d;
  color: white;
}

.news_section .btn:hover {
  background-color: white;
  color: #c7904d;
}

/* events */
.events {
  background: url("/assets/images/radiant-bg-2.svg") no-repeat center/cover;
  padding: 5% 0;
}

.events .events_lists .box {
  background: no-repeat center/cover;
  transition: transform 0.2s ease-in-out;
  height: 300px;
  will-change: transform;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.events .button-bottom {
  display: none;
}

.events .events_lists .box:hover {
  transform: scale(1.01);
}

.events .events_lists .eventOne {
  background-image: url("/assets/images/home/img-13.svg");
}

.events .events_lists .eventTwo {
  background-image: url("/assets/images/home/img-14.svg");
}

.events .events_lists .eventThree {
  background-image: url("/assets/images/home/img-15.svg");
}

.events .events_lists .eventFour {
  background-image: url("/assets/images/home/img-16.svg");
}

.events .events_lists .box>div {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.events .events_lists .box p {
  font-size: 1.5em;
  color: white;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .events .events_lists .box {
    height: 250px;
  }

  .events .events_lists .box p {
    font-size: 1.3em;
  }

  .events .events_lists {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .events .events_lists .box {
    height: 200px;
  }

  .events .events_lists .box p {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 576px) {
  .events .events_lists .box {
    height: 155px;
  }

  .events .events_lists .box p {
    font-size: 1em;
  }

  .events .button-top {
    display: none;
  }

  .events .button-bottom {
    display: block;
  }
}

.events .d-flex.justify-content-between {
  align-items: center;
  flex-wrap: wrap;
}

.events h2.fw-bold {
  font-size: 3rem;
  margin: 0.25rem 0 0;
}

.events a.mt-3 {
  margin-top: 1rem !important;
}

.events .view_all_btn {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid #c7904d;
  background-color: #c7904d;
  color: white;
}

.events .view_all_btn:hover {
  background-color: white;
  color: #c7904d;
}

.events .text-box {
  align-self: flex-end;
}

@media (max-width: 768px) {
  .events h2.fw-bold {
    font-size: 3rem;
  }

  .events .view_all_btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 576px) {
  .events .text-box {
    align-self: flex-start;
  }
}

/*behind the scenes*/
.behind_the_scenes {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.behind_the_scenes .bts-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  z-index: 0;
}

.behind_the_scenes .bts-bg-item {
  flex: 1 1 calc(12.5% - 3px);
  height: calc(25% - 3px);
  min-width: 0;
  overflow: hidden;
  background: #111;
}

.bts-bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.55) saturate(0.7);
}

.behind_the_scenes .bts-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.421) 0%,
      rgba(0, 0, 0, 0.118) 40%,
      rgba(0, 0, 0, 0.095) 100%);
  z-index: 1;
}

.behind_the_scenes .bts-content {
  position: relative;
  z-index: 9999;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.behind_the_scenes h2 {
  font-size: 4em;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.behind_the_scenes .btn {
  font-size: 1em;
  padding: 15px 40px;
  background-color: #c7904d;
  border: 1px solid #c7904d;
  color: white;
  cursor: pointer;
  transition: all 0.1s linear;
}

.behind_the_scenes .btn:hover {
  background-color: white;
  border: 1px solid white;
  color: #c7904d;
}

@media screen and (max-width: 992px) {
  .behind_the_scenes h2 {
    font-size: 3.8em;
  }

  .behind_the_scenes .btn {
    padding: 14px 32px;
  }

  .behind_the_scenes .bts-bg-item {
    flex: 1 1 calc(16.66% - 3px);
    height: calc(20% - 3px);
  }
}

@media screen and (max-width: 768px) {
  .behind_the_scenes h2 {
    font-size: 3em;
  }

  .behind_the_scenes .bts-bg-item {
    flex: 1 1 calc(25% - 3px);
    height: calc(25% - 3px);
  }
}

@media screen and (max-width: 576px) {
  .behind_the_scenes h2 {
    font-size: 2.5em;
  }

  .behind_the_scenes .btn {
    padding: 12px 24px;
  }

  .behind_the_scenes .bts-bg-item {
    flex: 1 1 calc(33.33% - 3px);
    height: calc(33.33% - 3px);
  }
}

/* our_partners */
.our_partners_section {
  background: hsl(0, 0%, 0%);
  padding: 3.5% 0px 3.5%;
}

.our_partners_section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.our_partners_section .logo_marquee {
  overflow: hidden;
  padding: 30px 0;
}

.our_partners_section .logo_track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.our_partners_section .logo_track img {
  width: 175px;
  height: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* adbanner */
.adbanner {
  padding: 4% 0px 4%;
}

.adbanner .division {
  background: linear-gradient(180deg, #c7904d 0%, #5f3604 100%);
}

.adbanner .division h3 {
  font-size: 3.5em;
}

.adbanner .division p {
  font-size: 0.9em;
}

.adbanner .division button {
  font-size: 0.9em;
  padding: 12.5px;
}

.adbanner .division .students_works_btn {
  color: black;
  background-color: white;
}

.adbanner .division button:hover {
  background-color: white;
  border-color: white;
  color: #b58448;
  box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.767);
}

@media (max-width: 1200px) {
  .adbanner .division h3 {
    font-size: 2.5em;
  }
}

@media (max-width: 991px) {
  .adbanner .division h3 {
    font-size: 3.8em;
  }

  .adbanner .image-div {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .adbanner .division h3 {
    font-size: 2.8em;
  }

  .adbanner .division button {
    font-size: 0.8em;
    padding: 12.5px;
  }
}

@media (max-width: 576px) {
  .adbanner .division img {
    display: none;
  }

  .adbanner .division h3 {
    font-size: 2em;
  }

  .adbanner .division p {
    font-size: 0.8em;
  }

  .adbanner .division button {
    font-size: 0.7em;
    width: 150px;
  }
}

/* footer */
footer {
  background-color: #19191a;
  padding: 20px 0px 20px;
}

footer .quick_link_division .quick_links {
  background-color: #e7f1fe;
}

footer .quick_link_division {
  background-color: white;
}

footer .quick_link_division a {
  text-underline-offset: 5px;
  color: black;
  transition: all 0.2s ease;
}

footer .quick_link_division a:hover {
  transform: scale(1.011);
  color: var(--caramel);
}

footer i {
  color: var(--white);
}

footer .links {
  font-size: 14px;
}

footer .pages .links a {
  color: #ffffffd1;
  transition: all 0.2s ease;
}

footer .pages .links a:hover {
  text-shadow: 3px 4px 10px #ffffffc0;
}

footer .icon img {
  transition: all 0.2s linear;
  opacity: 0.7;
}

footer .icon img:hover {
  transform: scale(1.2);
  opacity: 1;
}

footer .icon img:active {
  transform: scale(0.9);
}

footer .copyright {
  background-color: #19191a;
}

footer .copyright .links a {
  color: white;
  font-size: 16px;
}

footer .copyright .links a:hover {
  text-shadow: 3px 4px 10px #ffffffc0;
}

/* banner header */
.banner_header {
  background: url("/assets/images/contact-us/bg.svg") no-repeat center/cover !important;
  padding: 35px 0px 35px;
}

.banner_header h1 {
  font-size: 4em;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  .banner_header h1 {
    font-size: 3.9em;
  }
}

@media screen and (max-width: 992px) {
  .banner_header h1 {
    font-size: 3em;
  }
}

@media screen and (max-width: 991px) {
  .banner_header h1 {
    font-size: 4em;
  }
}

@media screen and (max-width: 576px) {
  .banner_header h1 {
    font-size: 3.5em;
  }
}

@media screen and (max-width: 457px) {
  .banner_header h1 {
    font-size: 2.9em;
  }
}

/* academics page*/
.academics-section {
  padding: 35px 0px 35px;
  background: url("/assets/images/radiant-bg-1.svg") no-repeat center/cover !important;
}

.academics-section .boxTwo {
  align-self: flex-start;
}

.academics-section .cardOne {
  background: url("/assets/images/academics/img-1.svg") no-repeat center/cover;
}

.academics-section .cardTwo {
  background: url("/assets/images/academics/img-2.svg") no-repeat center/cover;
}

.academics-section .cardThree {
  background: url("/assets/images/academics/img-3.svg") no-repeat center/cover;
}

.academics-section .cardFour {
  background: url("/assets/images/academics/img-4.svg") no-repeat center/cover;
}

.academics-section .cardFive {
  background: url("/assets/images/academics/img-5.svg") no-repeat center/cover;
}

.academics-section .cardSix {
  background: url("/assets/images/academics/img-6.svg") no-repeat center/cover;
}

.academics-section .card {
  height: 450px;
  width: 100%;
  border-radius: 10px;
  transition: 0.2s;
  text-align: left;
}

.academics-section .card:hover {
  transform: scale(1.01);
  box-shadow: none;
}

.academics-section .card p,
.academics-section .title {
  color: #fff;
}

.academics-section .title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.academics-section .card p,
.academics-section .btn {
  font-size: 0.8em;
}

.academics-section .btn {
  background: var(--caramel);
  color: #fff;
  border: 0;
  cursor: pointer;
}

.academics-section .btn:hover {
  background: #fff;
  color: var(--caramel);
  box-shadow: 2px 2px 15px rgb(0 0 0 /0.15);
}

.academics-section .small_tag {
  font-size: 0.75em;
  color: #fff;
  background: #ffffff33;
  backdrop-filter: blur(24px);
  border-radius: 8px;
  width: fit-content;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
  .academics-section .boxTwo {
    align-self: normal;
  }

  .academics-section .card {
    height: 450px;
  }
}

.academics-section .view_details_btn {
  border: 1px solid var(--caramel);
  background-color: transparent;
  color: var(--white);
  font-size: 0.8em;
  width: 100%;
}

.academics-section .view_details_btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.academics-section .view_details_btn:active {
  background-color: var(--white);
  color: var(--caramel);
  border: 1px solid var(--caramel);
}

.academics-section .apply_now_btn {
  background-color: var(--caramel);
  color: var(--white);
  font-size: 0.8em;
}

.academics-section .apply_now_btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border: 1px solid var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.academics-section .apply_now_btn:active {
  background-color: var(--white);
  color: var(--caramel);
  border: 1px solid var(--caramel);
}

/* academics individual section */
.academics-individual-section-header {
  background: none !important;
  padding: 18px 0px;
}

.academics-individual-section {
  padding: 1.2% 0;
}

/* academics banner-carousel */
.academics-individual-section .banner-carousel {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.academics-individual-section .banner-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.academics-individual-section .banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.academics-individual-section .banner-bg.active {
  opacity: 1;
}

.academics-individual-section .banner-bgs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg,
      rgba(181, 132, 72, 0.3) 0%,
      rgba(74, 44, 9, 0.85) 100%);
  z-index: 1;
}

.academics-individual-section .banner-content {
  position: absolute;
  z-index: 2;
  max-width: 70%;
}

.academics-individual-section .banner-content h4 {
  font-size: 2.8em;
  line-height: 1;
}

.academics-individual-section .banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.academics-individual-section .banner-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.academics-individual-section .banner-arrow.prev {
  left: 12px;
}

.academics-individual-section .banner-arrow.next {
  right: 12px;
}

.academics-individual-section .banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.academics-individual-section .banner-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.academics-individual-section .banner-dot.active {
  background: var(--caramel);
  transform: scale(1.3);
}

@media (max-width: 992px) {
  .academics-individual-section .banner-carousel {
    height: 300px;
  }

  .academics-individual-section .banner-content h4 {
    font-size: 3em;
  }
}

@media (max-width: 991px) {
  .academics-individual-section .banner-carousel {
    height: 280px;
  }

  .academics-individual-section .banner-content h4 {
    font-size: 2.5em;
  }

  .academics-individual-section .banner-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .academics-individual-section .banner-carousel {
    height: 260px;
  }

  .academics-individual-section .banner-arrow {
    display: none;
  }
}

@media (max-width: 457px) {
  .academics-individual-section .banner-carousel {
    height: 240px;
  }

  .academics-individual-section .banner-content h4 {
    font-size: 2em;
  }
}

/* -------------- */
.academics-individual-section .apply_now_btn {
  background-color: var(--caramel);
  color: var(--white);
  font-size: 1em;
}

.academics-individual-section .apply_now_btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.academics-individual-section .training_sheet_btn {
  background-color: var(--caramel);
  color: var(--white);
  font-size: 1em;
}

.academics-individual-section .training_sheet_btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.academics-individual-section .form-box .borderBottom {
  border-bottom: 1px dashed #9a9da3;
}

.academics-individual-section .form-box .texts {
  color: #9a9da3;
}

.academics-individual-section .form-box {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
}

@media screen and (max-width: 992px) {
  .academics-individual-section .form-box {
    position: relative;
    top: auto;
  }
}

.academics-individual-section .accordion-item {
  background-color: transparent;
  border: none;
}

.academics-individual-section .accordion-button {
  background-color: transparent;
  color: white;
  border: var(--caramel);
  box-shadow: none;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DDC6AB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.academics-individual-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--caramel);
  box-shadow: none;
  font-weight: 900;
}

.academics-individual-section .accordion-body {
  background-color: transparent;
  color: white;
}

.academics-individual-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

/* admissions individual section */
.admissions-individual-section .accordion-button {
  background-color: transparent;
  color: white;
  border: var(--caramel);
  box-shadow: none;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DDC6AB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.admissions-individual-section .accordion-item {
  background: none !important;
}

.admissions-individual-section .accordion-button {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.admissions-individual-section .accordion-button:not(.collapsed) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.admissions-individual-section .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.admissions-individual-section .accordion-body {
  background: none !important;
}

.admissions-individual-section .accordion-collapse {
  background: transparent !important;
}

.admissions-individual-section .accordion-button::after {
  background-color: transparent !important;
}

/* contact us page*/
.contact .contact_section {
  background: url("/assets/images/contact-us/radiant-bg-2.svg") no-repeat center/cover !important;
  padding: 35px 0px 35px;
}

.contact .contact_div .form-control,
.contact .contact_div .form-select {
  background-color: transparent;
  border-bottom: 1px solid #b8b8b8 !important;
  box-shadow: none;
  outline: none;
}

.contact .contact_div .form-control::placeholder {
  color: var(--white);
  font-size: 12px;
}

.contact .contact_div .form-select {
  color: var(--white);
  font-size: 12px;
}

.contact .contact_div .form-select option {
  background-color: #1a1a1a;
  color: var(--white);
}

.contact .contact_div .form-control:focus,
.contact .contact_div .form-select:focus {
  color: var(--white);
  border-color: var(--caramel);
  background-color: var(--caramel) !important;
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.contact .contact_div .btn {
  background-color: var(--caramel);
  color: var(--white);
  width: 100%;
}

.contact .contact_div .btn:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
  box-shadow: 2px 2px 15px 8px rgba(0, 0, 0, 0.147);
}

.contact .contact_div .admin-contact {
  border: 1px solid var(--caramel);
}

.contact .contact_div .form-div {
  border: 3px solid transparent;
  border-image: linear-gradient(to right, #0a0500 35%, #b58448 100%) 1;
  background: #00000066;
}

.contact .contact-image {
  background: url("/assets/images/contact-us/radiant-bg-1.svg") no-repeat center/cover !important;
  padding: 25px 0px 30px;
}

/* custom select */
.contact .contact_div .custom-select-wrapper {
  position: relative;
}

.contact .contact_div .custom-select {
  position: relative;
  width: 100%;
}

.contact .contact_div .custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #b8b8b8;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.3s;
  user-select: none;
}

.contact .contact_div .select-toggle:checked~.custom-select__trigger {
  border-color: var(--caramel);
  color: var(--white);
}

.contact .contact_div .custom-select__arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #b8b8b8;
}

.contact .contact_div .select-toggle:checked~.custom-select__trigger .custom-select__arrow {
  transform: rotate(180deg);
  color: var(--caramel);
}

.contact .contact_div .custom-select__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #0f0a05;
  border: 1px solid var(--caramel);
  border-radius: 8px;
  overflow: hidden;
  z-index: 100;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.contact .contact_div .select-toggle:checked~.custom-select__options {
  max-height: 300px;
  opacity: 1;
  pointer-events: all;
  overflow-y: auto;
}

.contact .contact_div .custom-select__options::-webkit-scrollbar {
  width: 4px;
}

.contact .contact_div .custom-select__options::-webkit-scrollbar-track {
  background: transparent;
}

.contact .contact_div .custom-select__options::-webkit-scrollbar-thumb {
  background: var(--caramel);
  border-radius: 4px;
}

.contact .contact_div .custom-select__option {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(181, 132, 72, 0.15);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.contact .contact_div .custom-select__option:last-child {
  border-bottom: none;
}

.contact .contact_div .custom-select__option:hover {
  background: rgba(181, 132, 72, 0.15);
  color: var(--white);
  padding-left: 22px;
}

/* news-individual-section */
.news-individual-section .img-box {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
}

@media screen and (max-width: 992px) {
  .news-individual-section .img-box {
    position: relative;
    top: auto;
  }
}

/* news-swiper-section */
.news-swiper-section {
  padding: 2em 5px;
}

.news-swiper-section .card {
  background: #19191a;
  border-radius: 32px;
  overflow: hidden;
  transition: 0.2s linear;
}

.news-swiper-section .news-img {
  border-radius: 16px;
  object-fit: cover;
}

.news-swiper-section .news-title {
  font-size: 1.5rem;
}

.news-swiper-section .description {
  color: #d0d2d5;
  font-size: 14px;
}

.news-swiper-section .btn {
  padding: 0.7rem 1rem;
  border: 1px solid var(--caramel);
  border-radius: 0.5rem;
  background: var(--caramel);
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
}

.news-swiper-section .btn:hover {
  background: #fff;
  color: var(--caramel);
}

.news-swiper-section .button {
  border: 0;
  background: #e9e9e9;
  color: #2b2c34;
}

.news-swiper-section .button:hover {
  color: var(--caramel);
}

@media (max-width: 768px) {
  .news-swiper-section .news-title {
    font-size: 1.2rem;
  }

  .news-swiper-section .description {
    color: #d0d2d5;
    font-size: 12px;
  }
}

.news-swiper-section .swiper-outer {
  position: relative;
}

.news-swiper-section .swiper-container {
  overflow: hidden;
  width: 100%;
}

.news-swiper-section .swiper-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.news-swiper-section .swiper-track .slide-item {
  flex: 0 0 calc((100% - 20px) / 1.2);
  display: flex;
  flex-direction: column;
}

.news-swiper-section .swiper-track .slide-item>div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-swiper-section .swiper-track .slide-item .card {
  flex: 1;
}

.news-swiper-section .swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--caramel);
  background: rgba(201, 168, 76, 0.9);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.news-swiper-section .swiper-nav-btn:hover {
  background: var(--caramel);
}

.news-swiper-section .swiper-nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.news-swiper-section #prevBtn {
  left: 10px;
}

.news-swiper-section #nextBtn {
  right: 10px;
}

.news-swiper-section .swiper-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.news-swiper-section .swiper-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-swiper-section .swiper-dot.active {
  background: var(--caramel);
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .news-swiper-section .swiper-track .slide-item {
    flex: 0 0 calc((100% - 20px) / 1.1);
  }
}

@media (max-width: 600px) {
  .news-swiper-section {
    padding: 0 5px 2em;
  }

  .news-swiper-section .swiper-track .slide-item {
    flex: 0 0 100%;
  }

  .news-swiper-section .swiper-nav-btn {
    display: none;
  }

  .news-swiper-section .swiper-dots {
    margin-top: 0.75rem;
  }
}

/* back to top button */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: var(--caramel);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 16px;
  cursor: pointer;
  z-index: 1000;
  border: 1px solid var(--white);
  transition: all 0.2s ease;
}

.back-to-top:hover {
  background-color: var(--white);
  color: var(--caramel);
  border-color: var(--caramel);
}

.back-to-top:hover .icon {
  color: var(--caramel);
}

.back-to-top .icon {
  transition: all 0.2s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.back-to-top:hover .icon {
  animation: bounce 0.6s infinite alternate ease-in-out;
}

.back-to-top.show {
  display: block;
}

/* Reviews */
.testimonials-section {
  padding: 4% 0px 4%;
  max-width: 1280px;
  margin: 50px auto 40px;
}

.testimonials-section .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-section .section-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #111;
}

.testimonials-section .slider-outer-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials-section .slider-outer {
  position: relative;
  overflow: hidden;
  padding: 8px 0 12px;
  flex: 1;
  min-width: 0;
}

.testimonials-section .slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
}

.testimonials-section .slider-track:active {
  cursor: grabbing;
}

.testimonials-section .slide-item {
  flex-shrink: 0;
  flex: 0 0 300px;
  width: 300px;
}

.testimonials-section .testimonial-card {
  background: #19191A;
  border-radius: 6px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  min-height: 320px;
  height: 320px;
}

.testimonials-section .quote-mark {
  font-size: 52px;
  font-family: Georgia, serif;
  color: var(--white);
  line-height: 0.8;
  margin-bottom: 14px;
  display: block;
  user-select: none;
  flex-shrink: 0;
}

.testimonials-section .quote-text {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonials-section .author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  flex-shrink: 0;
}

.testimonials-section .author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}

.testimonials-section .author-info,
.testimonials-section .author-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1px;
}

.testimonials-section .author-program {
  font-size: 12px;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonials-section .stars {
  display: flex;
  gap: 2px;
}

.testimonials-section .star {
  width: 13px;
  height: 13px;
  fill: var(--white);
}

.testimonials-section .review-control-btn {
  flex-shrink: 0;
  position: static;
  transform: none;
  width: 50px;
  height: 50px;
  background: var(--caramel) !important;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.testimonials-section .review-control-btn.prev,
.testimonials-section .review-control-btn.next {
  position: static;
}

.testimonials-section .review-control-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.testimonials-section .dots-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 32px;
}

.testimonials-section .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.testimonials-section .dot.active {
  background: var(--caramel);  
  transform: scale(1.2);
}

@media (max-width: 580px) {
  .testimonials-section {
    padding: 48px 20px 40px;
  }

  .testimonials-section .slider-outer {
    padding: 8px 0 12px;
  }

  .testimonials-section .slider-outer-wrap {
    gap: 8px;
  }

  .testimonials-section .review-control-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .testimonials-section .slide-item {
    flex: 0 0 260px;
    width: 260px;
  }

  .testimonials-section .review-control-btn {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}