.bg-red {
  background-color: rgb(205, 168, 121);
}

.bg-gray {
  background: #ECECEC !important;
}

.text-red {
  color: rgb(205, 168, 121);
}

.text-black {
  color: #120F0D;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #120F0D;
}

::-webkit-scrollbar-thumb {
  background: rgb(205, 168, 121);
}

::-moz-selection {
  background: rgb(205, 168, 121);
  color: white;
}

::selection {
  background: rgb(205, 168, 121);
  color: white;
}

body {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  background: #FAFAFA;
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1152px;
  }
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.bg-none {
  background-image: none !important;
  background: none !important;
}

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

.py-64 {
  padding-block: 64px;
}

@media only screen and (max-width: 600px) {
  .py-64 {
    padding-block: 40px;
  }
}

.btn-1 {
  border-radius: 5px;
  background: rgb(205, 168, 121);
  color: white;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  font-weight: 600;
}

@media (max-width: 767px) {
  .btn-1 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .btn-1 {
    flex-shrink: 0;
  }
}

.btn-1:hover {
  color: rgb(205, 168, 121);
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: white;
}

.btn-white-outlined {
  border: 1px solid white !important;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.btn-white-outlined:hover {
  color: white;
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: rgb(205, 168, 121);
}

@media only screen and (max-width: 600px) {
  .btn-white-outlined {
    padding: 8px 12px;
    font-size: 14px;
  }
}

.btn-1-outlined {
  border: 1px solid rgb(205, 168, 121) !important;
  color: rgb(205, 168, 121);
  padding: 8px 20px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  font-weight: 500;
}

.btn-1-outlined:hover {
  color: white;
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: rgb(205, 168, 121);
}

.btn-2 {
  border-radius: 5px;
  background: white;
  color: rgb(205, 168, 121);
  padding: 13px 25px;
  display: inline-block;
  transition: 0.3s;
  font-size: 18px;
  border: none;
  font-weight: bold;
}

.btn-2:hover {
  color: rgb(205, 168, 121);
  box-shadow: 0px 9px 19px 1px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  background: rgb(205, 168, 121);
  color: white;
}

@media only screen and (max-width: 600px) {
  .btn {
    padding: 7px 10px;
    font-size: 12px;
    flex-shrink: 0;
  }
}

.btn-3 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-3 i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: rgb(205, 168, 121);
  box-shadow: 0 4px 10px rgba(205, 168, 121, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-3:hover {
  color: white;
  background: rgb(205, 168, 121);
}

.btn-3:hover i {
  background: rgb(205, 168, 121) !important;
  color: white !important;
  filter: none;
  margin-inline-end: -10px !important;
}

.btn-3.reverse {
  color: rgb(205, 168, 121);
}

.btn-3.reverse i {
  background: rgb(205, 168, 121);
  color: white;
}

.btn-3.reverse:hover {
  color: white;
}

.btn-3.reverse:hover i {
  background: white;
  color: rgb(205, 168, 121);
  margin-inline-end: 0;
}

.btn-3-outlined {
  font-size: 16px;
  font-weight: bold;
  color: rgb(205, 168, 121);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  border: 1px solid rgb(205, 168, 121);
}

.btn-3-outlined i {
  transition: 0.3s;
}

.btn-3-outlined:hover {
  color: white;
  background: rgb(205, 168, 121);
}

.btn-3-outlined:hover i {
  color: white !important;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  z-index: 20;
  background: rgb(1, 18, 53);
  padding-block: 10px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

header:has(.search-form-wrapper.active) {
  padding-bottom: 10px;
}

/* Inner pages: gap below sticky header equal to its height (--header-height set in main.js) */
.inner-page header+* {
  margin-top: var(--header-height, 0px);
}

header .header-main-content {
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-img img {
  max-height: 70px;
  transition: 0.3s;
}

@media only screen and (max-width: 1024px) {
  header .logo-img img {
    max-height: 42px;
  }
}

.search-form-wrapper {
  background-color: #f3f3f3;
  border-radius: 30px;
  padding: 0 25px 0 15px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s;
}

.search-form-wrapper:focus-within {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.438);
}

.search-form-wrapper .search-form {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.search-form-wrapper .search-form .search-btn {
  border: none !important;
  color: #120F0D;
  font-size: 20px;
  transition: 0.3s;
  padding-top: 8px;
}

.search-form-wrapper .search-form .search-btn:hover {
  color: rgb(205, 168, 121);
}

.search-form-wrapper .search-form .form-control {
  padding-block: 10px;
  width: 100%;
  background-color: transparent;
  border: none;
  color: #120F0D;
  font-size: 18px;
  box-shadow: none;
}

.search-form-wrapper .search-form .form-control::-moz-placeholder {
  color: #120F0D;
  font-size: 14px;
  opacity: 0.5;
}

.search-form-wrapper .search-form .form-control::placeholder {
  color: #120F0D;
  font-size: 14px;
  opacity: 0.5;
}

.search-form-wrapper.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  max-height: 100px;
  margin-top: 5px;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.main-menu a {
  text-transform: capitalize;
  transition: 0.3s;
  font-weight: 500;
}

.main-menu>li {
  margin-inline-end: 30px;
  position: relative;
}

.main-menu>li:hover:after {
  bottom: -35px;
  transition: 0.3s;
}

.main-menu>li:hover>a {
  color: rgb(205, 168, 121);
}

.main-menu>li:hover>a:before {
  width: 100%;
  transition: 0.3s;
  opacity: 1;
}

.main-menu>li>a {
  color: #F1F1F5;
  font-size: 16px;
  transition: 0.3s;
  display: block;
  position: relative;
}

.main-menu>li>a:before {
  content: "";
  background: rgb(205, 168, 121);
  width: 0%;
  height: 1.5px;
  opacity: 0;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  z-index: -1;
}

.main-menu>li:last-of-type {
  margin: 0;
}

.main-menu .menu-item-has-children {
  position: relative;
  padding: 0;
}

.main-menu .menu-item-has-children>a {
  color: #F1F1F5;
  -moz-column-gap: 5px;
  column-gap: 5px;
  display: flex;
  align-items: baseline;
  position: relative;
}

.main-menu .menu-item-has-children>a::after {
  content: "\f078";
  position: relative;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 10px;
  color: #F1F1F5;
  transition: 0.3s;
}

.main-menu .menu-item-has-children:hover>a {
  color: rgb(205, 168, 121);
}

.main-menu .menu-item-has-children:hover>a::after {
  color: rgb(205, 168, 121);
}

.main-menu .menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

.main-menu .menu-item-has-children .sub-menu {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: rgb(1, 18, 53);
  position: absolute;
  top: 80px;
  right: -22px;
  list-style: none;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
  padding: 12px;
  transition: 0.3s;
}

.main-menu .menu-item-has-children .sub-menu li {
  transition: 0.3s;
  position: relative;
}

.main-menu .menu-item-has-children .sub-menu a {
  padding: 10px;
  align-items: center;
  font-size: 16px;
  border-radius: 4px;
  line-height: 1.5;
  color: #F1F1F5;
  justify-content: flex-start;
  font-weight: 400;
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
  column-gap: 10px;
  transition: color linear 0.2s, background-color 0.2s;
}

.main-menu .menu-item-has-children .sub-menu a:hover {
  color: rgb(205, 168, 121);
  background-color: rgba(255, 255, 255, 0.06);
}

.main-menu .menu-item-has-children .sub-menu .menu-item-has-children>a {
  justify-content: space-between;
}

.main-menu .menu-item-has-children .sub-menu .menu-item-has-children>a::after {
  content: "\f053";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 10px;
  color: #F1F1F5;
  align-self: center;
}

.main-menu .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
  top: -12px;
  inset-inline-start: 100%;
  inset-inline-end: auto;
  right: auto;
  margin-inline-start: 6px;
}

.main-menu .menu-item-has-children .sub-menu .menu-item-has-children:hover>a {
  color: rgb(205, 168, 121);
}

.main-menu .menu-item-has-children .sub-menu .menu-item-has-children:hover>a::after {
  color: rgb(205, 168, 121);
}

.main-menu .menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: -12px;
  pointer-events: auto;
}

@media only screen and (max-width: 1200px) {
  .main-menu>li {
    margin-inline-end: 25px;
  }
}

@media only screen and (max-width: 992px) {
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .main-menu>li {
    margin-inline-end: 0;
    margin-bottom: 25px;
  }

  .main-menu>li:nth-child(4) {
    margin-inline-start: 0;
  }

  .main-menu>li:nth-child(5) {
    margin-inline-start: unset;
  }

  .main-menu>li>a {
    font-size: 18px;
    font-weight: 500;
  }

  .main-menu .menu-item-has-children {
    width: auto;
    line-height: normal;
  }

  .main-menu .menu-item-has-children>a {
    justify-content: space-between;
    cursor: pointer;
  }

  .main-menu .menu-item-has-children>a::after {
    font-size: 15px;
    transition: 0.3s;
    color: rgb(205, 168, 121);
  }

  .main-menu .menu-item-has-children>a.icon-rotate::after {
    transform: rotate(180deg);
  }

  .main-menu .menu-item-has-children .sub-menu {
    position: static;
    background-color: unset;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: unset;
    padding: 0;
    display: none;
    transition: none;
    width: 100%;
    padding-top: 18px;
  }

  .main-menu .menu-item-has-children .sub-menu li {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding-inline-start: 14px;
    text-align: start;
  }

  .main-menu .menu-item-has-children .sub-menu li:before {
    content: "\e404";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: rgb(205, 168, 121);
    font-size: 14px;
    transition: 0.3s;
  }

  .main-menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
    margin-bottom: 17px;
  }

  .main-menu .menu-item-has-children .sub-menu a {
    display: flex;
    padding: 0;
    gap: 8px;
    width: -moz-max-content;
    width: max-content;
    color: #F1F1F5;
  }
}

@media only screen and (max-width: 768px) {
  .main-menu .menu-item-has-children .sub-menu li a:hover {
    background-color: transparent;
    color: rgb(205, 168, 121);
  }
}

.show-submenu,
.show-overlay {
  opacity: 1;
  visibility: visible;
}

.bars {
  z-index: 21;
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
  background: none;
  border: 0;
}

.bars .line {
  flex-shrink: 0;
  width: 25px;
  display: block;
  height: 1.5px;
  background-color: rgb(205, 168, 121);
  transition: 0.3s;
}

.rotate-line1 {
  transform: rotate(45deg) translateX(-2px) translateY(-2px);
  transform-origin: 0% 0%;
}

.rotate-line3 {
  transform: rotate(-45deg) translateX(0px) translateY(0px);
  transform-origin: 0 100%;
}

.bars .hide-line2 {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
}

.header-icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.header-icons .header-icon {
  font-size: 20px;
  color: #F1F1F5;
  cursor: pointer;
  transition: all 0.3s;
}

.header-icons .header-icon:hover {
  color: rgb(205, 168, 121);
}

.search-icon {
  width: 25px;
}

.search-icon.active i:before {
  content: "\e59b";
  font-family: "Font Awesome 6 Pro";
}

.cart-icon {
  position: relative;
}

.cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  background-color: rgb(205, 168, 121);
  color: #16181D;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.cart-icon .cart-count:empty {
  display: none;
}

.dropdown-parent {
  position: relative;
  display: inline-block;
}

.dropdown-parent .dropdown-list {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #F8F4EC;
  position: absolute;
  top: 80px;
  inset-inline-end: -22px;
  list-style: none;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 12px;
  transition: all 0.4s;
}

.dropdown-parent .dropdown-list li {
  text-align: center;
  transition: 0.3s;
}

.dropdown-parent .dropdown-list a {
  padding: 10px;
  align-items: center;
  font-size: 18px;
  color: #120F0D;
  text-align: center;
  justify-content: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
  column-gap: 10px;
  transition: 0.3s;
}

.dropdown-parent .dropdown-list a:hover {
  color: rgb(205, 168, 121);
}

.dropdown-parent:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

@media only screen and (max-width: 1200px) {
  .menu-item-has-children .sub-menu {
    inset-inline-start: 0;
    transform: unset;
  }
}

@media only screen and (max-width: 992px) {
  .navigation .container {
    padding-inline: 12px;
  }

  .rotate-line3 {
    transform: -45deg translateX(-1px) translateY(0px);
  }

  .logo-img {
    margin-inline-end: auto;
  }

  .header-main-content {
    height: auto;
    justify-content: flex-end;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }

  .bars {
    display: flex;
  }

  .navigation {
    overflow-y: auto;
    position: fixed;
    opacity: 0;
    transition-duration: 1s;
    visibility: hidden;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100vh;
    padding: 40px;
    padding-top: 3rem;
    background-color: rgb(1, 18, 53);
    transition: 0.3s;
    z-index: 20;
    clip-path: circle(0.5% at 0 0);
  }

  .open-sidebar {
    opacity: 1;
    visibility: visible;
    clip-path: circle(140.9% at 0 0);
    transition: 0.3s;
  }
}

@media only screen and (max-width: 768px) {
  .navigation .container {
    padding-inline: 20px;
  }
}

.hero-section {
  overflow: hidden;
  position: relative;
}

.hero-section .hero-swiper {
  width: 100%;
}

.hero-section .swiper-slide {
  background-size: cover;
  background-position: center center;
  animation: zoomBackground 30s linear infinite alternate;
  transition: 0.3s;
}

@media only screen and (max-width: 991px) {
  .hero-section .swiper-slide {
    animation: none;
    height: auto;
    background-size: cover !important;
    background-position: center center !important;
  }
}

.hero-section .swiper-pagination-bullet-active {
  background: rgb(205, 168, 121);
}

.hero-section .hero-main-content {
  position: relative;
  width: 100%;
  max-height: 688px;
  height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

@media only screen and (max-width: 768px) {
  .hero-section .hero-main-content {
    height: auto;
    padding-block: 3rem;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content {
    width: 100%;
  }
}

.hero-section .hero-main-content .hero-content {
  width: 45%;
  position: relative;
  color: rgb(1, 18, 53);
}

@media only screen and (max-width: 600px) {
  .hero-section .hero-main-content .hero-content {
    width: 100%;
  }
}

.hero-section .hero-main-content .hero-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content .hero-title {
    font-size: 25px;
  }
}

.hero-section .hero-main-content .hero-text {
  font-size: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content .hero-text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .hero-section .hero-main-content .hero-text {
    font-size: 15px;
  }
}

.hero-section .hero-btn {
  display: flex;
  gap: 24px;
}

/* @media only screen and (max-width: 600px) {
  .hero-section .hero-btn {
    justify-content: center;
  }
} */

@keyframes zoomBackground {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 120%;
  }
}

.section-title {
  font-weight: 700;
  font-size: 32px;
  color: rgb(1, 18, 53);
  position: relative;
  margin-bottom: 50px;
  text-transform: capitalize;
}

@media only screen and (max-width: 600px) {
  .section-title {
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 18px;
  }
}

.section-description {
  font-size: 20px;
  color: #120F0D;
  font-weight: 500;
  width: 70%;
  margin-inline: auto;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .section-description {
    font-size: 16px;
  }
}

/* Departments Section */
.instructors-section {
  padding-block: 64px;

  @media only screen and (max-width: 600px) {
    padding-block: 0px;
  }
}

.single-instructor-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.single-instructor-card a {
  display: block;
  height: 100%;
  width: 100%;
}

.single-instructor-card .instructor-img {
  height: 100%;
  width: 100%;
}

.single-instructor-card .instructor-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transition: 0.5s;
}

.single-instructor-card .instructor-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(205, 168, 121);
  padding: 20px;
  text-align: center;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single-instructor-card .instructor-content .instructor-title {
  color: #fff;
  font-size: 16px;
  margin: 35px 0 0;
  transition: 0.4s;
}

.single-instructor-card .instructor-content .read-more {
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
  transform: translateY(10px);
}

.single-instructor-card .instructor-content .read-more i {
  font-size: 14px;
}

.single-instructor-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.single-instructor-card:hover .instructor-title {
  margin-top: 0;
}

.single-instructor-card:hover .instructor-img img {
  transform: scale(1.1);
}

.single-instructor-card:hover .instructor-content {
  height: 100px;
}

.single-instructor-card:hover .instructor-content .read-more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.programs-section {
  padding-block: 64px;
}

.programs-section .programs-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.programs-section .programs-title {
  font-size: 40px;
  font-weight: 800;
  color: rgb(1, 18, 53);
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .programs-section .programs-title {
    font-size: 28px;
  }
}

.programs-section .programs-more {
  font-size: 18px;
  font-weight: 600;
  color: rgb(205, 168, 121);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.programs-section .programs-more:hover {
  gap: 12px;
  color: rgb(181.7010869565, 131.5298913043, 67.7989130435);
}

.program-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 430px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.program-card .program-img {
  position: absolute;
  inset: 0;
}

.program-card .program-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.program-card .program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(261.64deg, rgba(1, 18, 53, 0.1) 0%, rgb(1, 18, 53) 100%);
}

.program-card .program-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
}

.details-page-card {
  overflow: visible;
  height: auto;
  box-shadow: none;

  &:hover {
    .program-img img {
      transform: none !important;
    }
  }

  .program-content {
    position: static;
    padding: 0 !important;
    display: block;
    color: #011235;
  }

  .program-img {
    position: static;
    margin-bottom: 2rem;

  }

  .short-description {
    margin-block: 1rem;
    font-weight: 500;
  }
}

@media only screen and (max-width: 576px) {
  .program-card .program-content {
    padding: 24px;
  }
}

.program-card .program-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 90%;
}

.program-card .program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.program-card .program-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.program-card .program-meta i {
  color: rgb(205, 168, 121);
}

.program-card .program-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.program-card .program-price .currency {
  font-size: 14px;
  font-weight: 500;
  margin-inline-start: 4px;
}

.program-card .program-btn {
  align-self: flex-start;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 34px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.program-card .program-btn:hover {
  background: rgb(205, 168, 121);
  border-color: rgb(205, 168, 121);
}

.program-card:hover .program-img img {
  transform: scale(1.05);
}

.programs-swiper .swiper-pagination-bullet-active {
  background: rgb(205, 168, 121);
}

.block-heading {
  font-size: 40px;
  font-weight: 800;
  color: rgb(1, 18, 53);
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .block-heading {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

.journey-section {

  @media only screen and (max-width: 600px) {
    padding-block: 30px;
  }
}

.journey-section .row>.col-lg-5 {
  display: flex;
}

.journey-section .journey-img {
  position: relative;
  flex: 1;
  min-height: 100%;
}

.journey-section .journey-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 992px) {
  .journey-section .journey-img {
    aspect-ratio: 16/9;
    min-height: 0;
  }
}

.journey-section .journey-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journey-section .journey-card {
  position: relative;
  overflow: hidden;
  background: rgb(1, 18, 53);
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
}

.journey-section .journey-card .step-number {
  position: absolute;
  bottom: -14px;
  right: 0px;
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.journey-section .journey-card .step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.journey-section .journey-card .step-title i {
  color: #fff;
  font-size: 18px;
}

.journey-section .journey-card .step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 85%;
}

.faqs-section .faq-item {
  background: #fff;
  border: 1px solid #E9E9E9;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faqs-section .faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: rgb(1, 18, 53);
  transition: 0.3s;
}

.faqs-section .faq-title .faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(205, 168, 121);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.faqs-section .faq-title .faq-icon .minus-icon {
  display: none;
}

.faqs-section .faq-title.active {
  color: rgb(205, 168, 121);
}

.faqs-section .faq-title.active .faq-icon .plus-icon {
  display: none;
}

.faqs-section .faq-title.active .faq-icon .minus-icon {
  display: inline;
}

.faqs-section .faq-content {
  display: none;
  padding: 0 22px 20px;
}

.faqs-section .faq-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.about-us-section {
  position: relative;
}

.about-us-section .about-title {
  font-size: 32px;
  color: rgb(1, 18, 53);
  font-weight: bold;
  margin-bottom: 20px;
}

.about-us-section .description {
  font-size: 18px;
  color: rgb(1, 18, 53);
  margin-bottom: 25px;
}

@media only screen and (max-width: 600px) {
  .about-us-section .description {
    font-size: 16px;
    text-align: center;
  }
}

.about-us-section .about-img {
  position: relative;
  text-align: end;
}

@media only screen and (max-width: 600px) {
  .about-us-section .about-img {
    margin-top: 40px;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 8px;
  background: #B4B4B4;
  opacity: 1;
  border-radius: 20px;
  margin: 0 3px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #120F0D;
  border-radius: 12px;
  width: 40px;
}

.testimonials-section .swiper-slide {
  height: auto;
  padding-bottom: 20px;
}

.testimonials-section .single-testimonial-card {
  background: #F2F2F2;
  padding: 24px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonials-section .single-testimonial-card .testimonials-text {
  font-size: 16px;
  color: rgb(1, 18, 53);
  margin-bottom: 28px;
}

.testimonials-section .single-testimonial-card .card-footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  position: relative;
}

.testimonials-section .single-testimonial-card .card-footer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 1px;
  background: rgb(205, 168, 121);
}

.testimonials-section .single-testimonial-card .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonials-section .single-testimonial-card .user-info .user-icon {
  color: rgb(1, 18, 53);
}

.testimonials-section .single-testimonial-card .user-info .name {
  color: rgb(1, 18, 53);
}

.testimonials-section .single-testimonial-card .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(1, 18, 53);
}

.testimonials-section .single-testimonial-card .rating i {
  color: #FFC107;
  font-size: 18px;
}

.testimonials-section .single-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.testimonials-swiper {
  padding-bottom: 40px;
  padding-inline: 10px;
}

footer {
  position: relative;
  background: #0a1633;
  padding-top: 50px;
  margin-top: 50px;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  footer {
    padding-top: 40px;
    margin-top: 50px;
  }
}

footer .footer-about img {
  max-height: 80px;
  margin-bottom: 25px;
  display: block;
}

footer .footer-about .footer-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 320px;
}

footer .footer-about .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

footer .footer-about .social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

footer .footer-about .social-icons a:hover {
  background: white;
  color: #0a1633;
  border-color: white;
  transform: translateY(-3px);
}

footer .footer-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}

footer .footer-menu .footer-links li {
  margin-bottom: 12px;
}

footer .footer-menu a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  text-decoration: none;
  display: block;
}

footer .footer-menu a:hover {
  color: #fff;
  padding-inline-start: 5px;
}

footer .footer-newsletter .newsletter-form .input-group {
  background: #fff;
  border-radius: 10px !important;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

footer .footer-newsletter .newsletter-form .input-group .form-control {
  background: transparent;
  border: none;
  color: #120F0D;
  font-size: 14px;
  height: 48px;
  padding-inline: 15px;
  box-shadow: none !important;
  flex-grow: 1;
  direction: rtl;
}

footer .footer-newsletter .newsletter-form .input-group .form-control::-moz-placeholder {
  color: #999;
}

footer .footer-newsletter .newsletter-form .input-group .form-control::placeholder {
  color: #999;
}

footer .footer-newsletter .newsletter-form .input-group .btn-red {
  background: rgb(205, 168, 121);
  color: #fff;
  border: none;
  border-radius: 10px !important;
  padding: 0 30px;
  height: 48px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
  flex-shrink: 0;
  margin-inline-end: -2px;
}

footer .footer-newsletter .newsletter-form .input-group .btn-red:hover {
  background: rgb(181.7010869565, 131.5298913043, 67.7989130435) !important;
  box-shadow: 0 4px 12px rgba(205, 168, 121, 0.2) !important;
}

footer .copyrights {
  padding-block: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  a {
    color: #fff;
  }
}

footer .copyrights p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 991px) {

  footer .footer-about,
  footer .footer-menu {
    margin-bottom: 40px;
    text-align: center;
  }

  footer .footer-about .social-icons {
    justify-content: center;
  }

  footer .footer-about img {
    margin-inline: auto;
  }

  footer .footer-about .footer-desc {
    margin-inline: auto;
  }
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.floating-icons .up-btn {
  background-color: rgb(205, 168, 121);
  filter: drop-shadow(0px 3px 6px rgba(65, 89, 209, 0.47));
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}

.floating-icons .up-btn.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.floating-icons .up-btn:hover {
  background-color: white;
  color: #120F0D;
}

.floating-icons .whatsapp-icon {
  background-color: #2AA81A;
  color: white;
  padding: 10px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 2s infinite;
}

.floating-icons .whatsapp-icon:hover {
  background-color: rgb(205, 168, 121);
  color: white;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 168, 26, 0.93);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(225, 78, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 78, 29, 0);
  }
}

.breadcrumb-section {
  background-size: cover !important;
  padding-block: 2rem;
}

@media only screen and (max-width: 600px) {
  .breadcrumb-section {
    padding-block: 2rem;
  }
}

.breadcrumb-section ul {
  padding: 0;
  margin: 0;
}

.breadcrumb-section ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-section ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #D2D2D2;
  margin-inline: 10px;
}

.breadcrumb-section ul li a {
  color: #D2D2D2;
  transition: 0.3s;
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .breadcrumb-section ul li a {
    font-size: 16px;
  }
}

.breadcrumb-section ul li a:hover {
  color: rgb(205, 168, 121);
}

.breadcrumb-section .main-title {
  color: white;
  font-size: 35px;
  margin: 10px 0 0;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .breadcrumb-section .main-title {
    font-size: 25px;
  }
}

.share-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgb(205, 168, 121);
}

.share-btn .front {
  position: absolute;
  inset: 0;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(205, 168, 121);
  transition: 0.3s;
  font-weight: bold;
}

.share-btn .back {
  display: flex;
  gap: 15px;
}

.share-btn .back a {
  color: rgb(205, 168, 121);
}

.share-btn .back a:hover {
  color: #120F0D;
}

.share-btn:hover .front {
  transform: translateX(-90%);
}

.post-content {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination .page-link {
  color: #120F0D;
  background-color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  font-size: 20px;
  box-shadow: none !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.pagination .page-link:hover,
.pagination .page-link.active {
  background-color: rgb(205, 168, 121);
  color: white;
}

@media only screen and (max-width: 600px) {
  .about-content {
    text-align: center;
  }
}

.contact-info-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgb(205, 168, 121);
  padding-top: 40px;
}

.contact-info-content .contact-info-item:last-child {
  flex-grow: 1;
  flex-basis: 100%;
}

.contact-info-content .contact-info-item i {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgb(205, 168, 121);
  color: #120F0D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info-content .contact-info-item p {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.contact-info-content .contact-info-item a {
  font-size: 18px;
  color: white;
  font-weight: 400;
  transition: 0.3s;
}

.contact-info-content .contact-info-item a:hover {
  color: rgb(205, 168, 121);
}

.branches-section {
  padding-block: 64px;
}

.single-branch {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.single-branch .branch-img {
  width: 100%;
  height: 100%;
}

.single-branch .branch-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  filter: brightness(0.85);
}

.single-branch .branch-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.single-branch .branch-info {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  padding: 30px 25px;
  z-index: 2;
  color: white;
  transition: all 0.4s ease-in-out;
}

.single-branch .branch-info .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: 0.3s;
}

.single-branch .branch-info .description {
  font-size: 16px;
  opacity: 0.85;
  font-weight: 400;
}

.single-branch:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
}

.single-branch:hover .branch-img img {
  transform: scale(1.08);
  filter: brightness(1);
}

.single-branch:hover .branch-img::after {
  height: 65%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.single-branch:hover .branch-info {
  padding-bottom: 35px;
}

.why-us-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #F5F5F5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-card .icon {
  font-size: 45px;
  color: #F81D1D;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.why-us-card .title {
  font-size: 16px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 15px;
}

.why-us-card .description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-us-card:hover {
  border-color: #F81D1D;
  border-bottom-width: 3px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.why-us-card:hover .icon {
  transform: scale(1.1);
}

.award-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #F5F5F5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card .award-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.award-card .award-logo img {
  max-height: 100%;
  width: auto;
}

.award-card .award-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 0;
}

.award-card:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
  border-color: #eee;
}

.vision-mission-section {
  background-size: cover;
  background-position: center;
}

.vision-mission-section .vm-card .icon {
  font-size: 28px;
  color: rgb(205, 168, 121);
}

.vision-mission-section .vm-card .title {
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.vision-mission-section .vm-card .description {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  opacity: 0.9;
}

.vision-mission-section .vm-card .values-list {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.vision-mission-section .vm-card .values-list span {
  padding-inline: 5px;
}

.vision-mission-section .legacy-section .legacy-img img {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.vision-mission-section .legacy-section .legacy-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.vision-mission-section .legacy-section .legacy-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.vision-mission-section .legacy-section .quote-wrapper .quote-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.vision-mission-section .legacy-section .quote-wrapper .quote-text {
  font-size: 16px;
  font-weight: bold;
  color: #4A0006;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .vision-mission-section .vm-card {
    text-align: center;
  }

  .vision-mission-section .vm-card .d-flex {
    justify-content: center !important;
  }

  .vision-mission-section .legacy-content {
    text-align: center !important;
  }
}

/* Blogs Section */
.blogs-section .news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blogs-section .news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blogs-section .news-card .news-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 15px;
}

.blogs-section .news-card .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.blogs-section .news-card .news-img .news-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #120F0D;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.blogs-section .news-card .news-img .news-date i {
  color: rgb(205, 168, 121);
}

.blogs-section .news-card .news-content {
  padding: 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blogs-section .news-card .news-content .news-title {
  font-size: 16px;
  font-weight: 500;
  color: #120F0D;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.blogs-section .news-card .news-content .read-more-btn {
  margin-top: auto;
  color: rgb(205, 168, 121);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.blogs-section .news-card .news-content .read-more-btn i {
  width: 35px;
  height: 35px;
  background: rgb(205, 168, 121);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(205, 168, 121, 0.3);
  transition: 0.3s;
}

.blogs-section .news-card:hover .news-img img {
  transform: scale(1.1);
}

.blogs-section .news-card:hover .news-title {
  color: rgb(205, 168, 121);
}

.blogs-section .news-card:hover .read-more-btn {
  gap: 15px;
}

.blogs-section .news-card:hover .read-more-btn i {
  transform: translateX(-5px);
}

@media only screen and (max-width: 767px) {
  .hero-section .hero-main-content {
    padding-block: 2.5rem 3rem;
  }

  .hero-section .hero-main-content .hero-title {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero-section .hero-main-content .hero-text {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
  }

  .blogs-section {
    padding-block: 40px;
  }

  .testimonials-section {
    padding-block: 40px;
  }

  .testimonials-section .single-testimonial-card {
    padding: 14px 16px;
  }

  .testimonials-section .single-testimonial-card .testimonials-text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  footer {
    padding-top: 35px;
    margin-top: 30px;
  }

  footer .footer-about img {
    max-height: 60px;
  }

  footer .footer-about .footer-desc {
    font-size: 14px;
  }

  footer .footer-title {
    font-size: 16px;
    margin-bottom: 18px;
  }

  footer .footer-menu a {
    font-size: 14px;
  }

  footer .footer-newsletter .newsletter-form .input-group .form-control {
    font-size: 13px;
    height: 44px;
  }

  footer .footer-newsletter .newsletter-form .input-group .btn-red {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  footer .copyrights p {
    font-size: 12px;
  }

  .floating-icons {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }

  .floating-icons .whatsapp-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .floating-icons .up-btn {
    width: 34px;
    height: 34px;
    padding: 7px;
    font-size: 13px;
    line-height: 18px;
  }

  .py-64 {
    padding-block: 35px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

/* Mission & Vision Section */
.mission-vision-section {
  background: #F8FAFF;
  overflow: hidden;
}

.mission-vision-section .mv-cards {
  position: relative;
  padding-block: 45px;
}

.mission-vision-section .mv-card {
  min-height: 150px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 30px;
  position: relative;
  width: calc(100% - 60px);

  .mv-text {
    width: 50%;
  }
}

.mission-vision-section .mv-card .mv-img {
  flex-shrink: 0;
  width: 175px;
  height: 175px;
  margin-block: -52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(1, 18, 53, 0.28);
}

.mission-vision-section .mv-card .mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mission-vision-section .mv-card .mv-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.mission-vision-section .mv-card .mv-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.mission-vision-section .mv-mission {
  margin-inline-start: auto;
  justify-content: flex-start;
  background: linear-gradient(90deg, #011235 15.55%, #F8FAFF 100%);
  border-radius: 50px 0 0 50px;

  .mv-img {
    margin-inline-start: -80px;
  }

  .mv-text {
    text-align: start;
  }
}

.mission-vision-section .mv-vision {
  margin-top: 60px;
  flex-direction: row-reverse;
  justify-content: flex-start;
  background: linear-gradient(270deg, #011235 15.55%, #F8FAFF 100%);
  border-radius: 0 50px 50px 0;

  .mv-img {
    margin-inline-end: -80px;
  }

  .mv-text {
    text-align: end;
  }
}

@media only screen and (max-width: 992px) {


  .mission-vision-section .mv-card {
    width: 100% !important;
    margin: 50px 0 20px !important;
    flex-direction: column !important;
    text-align: center;
    border-radius: 20px;
    justify-content: center;
    background: linear-gradient(160deg, #011235 0%, #24365f 100%) !important;

    .mv-text {
      width: 100%;
      text-align: center;
    }
  }



  .mission-vision-section .mv-card .mv-img {
    width: 160px;
    height: 160px;
    margin: -120px 0 0 !important;
  }
}

@media only screen and (max-width: 600px) {
  .mission-vision-section .mv-card {
    padding: 80px 20px 26px;
  }

  .mission-vision-section .mv-card .mv-img {
    width: 140px;
    height: 140px;
    margin-top: -80px;
  }
}

.values-section {
  background: #F8FAFF;
}

.values-section .value-card {
  height: 100%;
  padding: 32px 26px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.values-section .value-card:hover {
  border-color: rgb(205, 168, 121);
  box-shadow: 0 18px 40px rgba(1, 18, 53, 0.08);
  transform: translateY(-4px);
}

.values-section .value-icon {
  font-size: 40px;
  color: rgb(205, 168, 121);
  margin-bottom: 22px;
  line-height: 1;
}

.values-section .value-title {
  font-size: 20px;
  font-weight: 700;
  color: rgb(1, 18, 53);
  margin-bottom: 14px;
}

.values-section .value-text {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  max-width: 240px;
  margin-inline: auto;
}

@media only screen and (max-width: 768px) {
  .values-section .value-card {
    margin-bottom: 16px;
  }
}

.stats-section .stats-wrapper {
  position: relative;
  /* border-radius: 16px; */
  overflow: hidden;
  padding: 70px 20px;
  background-image: url("../images/stats-bg.webp");
  background-size: cover;
  background-position: center;
}

.stats-section .stats-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(205, 168, 121, 0.85) 0%, rgba(1, 18, 53, 0.85) 100%);
}

.stats-section .row {
  position: relative;
  z-index: 1;
}

.stats-section .stat-item {
  text-align: center;
  color: #fff;
}

.stats-section .stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 4px 4px 4px #00000040;

}

.stats-section .stat-icon {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1;
}

.stats-section .stat-label {
  font-size: 17px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);

  @media (min-width:768px) {
    width: 50%;
    margin-inline: auto;

  }
}

@media only screen and (max-width: 768px) {
  .stats-section .stat-item {
    margin-bottom: 34px;
  }

  .stats-section .col-md-4:last-child .stat-item {
    margin-bottom: 0;
  }
}


/* Start Contact Section */
.contact-section .contact-intro {
  font-size: 20px;
  font-weight: 500;
  color: #120F0D;
  margin-bottom: 30px;
}

@media only screen and (max-width: 600px) {
  .contact-section .contact-intro {
    font-size: 16px;
  }
}

.contact-section .contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgb(1, 18, 53);
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 22px;
  transition: 0.3s;
}

.contact-section .contact-card:last-child {
  margin-bottom: 0;
}

.contact-section .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 10px 24px 0px rgba(1, 18, 53, 0.2);
}

.contact-section .contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: white;
  font-size: 20px;
}

.contact-section .contact-card-text {
  color: white;
  font-size: 19px;
  font-weight: 500;
  word-break: break-word;
}

@media only screen and (max-width: 600px) {
  .contact-section .contact-card-text {
    font-size: 15px;
  }
}

.contact-section .contact-form-wrapper {
  background: #E0E3EB;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

@media only screen and (max-width: 600px) {
  .contact-section .contact-form-wrapper {
    padding: 20px;
  }
}

.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}

.contact-section .contact-form .form-control {
  background: #CACFD9;
  border: none;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 16px;
  color: rgb(1, 18, 53);
  box-shadow: none;
}

.contact-section .contact-form .form-control::placeholder {
  color: rgb(1, 18, 53);
  opacity: 0.7;
}

.contact-section .contact-form .form-control:focus {
  background: #bcc3ce;
  color: rgb(1, 18, 53);
  outline: none;
  box-shadow: 0 0 0 2px rgba(1, 18, 53, 0.15);
}

.contact-section .contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact-section .contact-submit {
  width: 100%;
  background: rgb(1, 18, 53);
  color: white;
  border-radius: 6px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-section .contact-submit:hover {
  background: rgb(205, 168, 121);
  color: white;
}

/* End Contact Section */


/* Start Terms Page Section */

.terms-page-content,
.full-description {

  color: #011235;

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    &:before {
      content: '\00BB';

      font-weight: bold;
      margin-inline-end: 6px;
      font-family: 'Fontawesome 6 pro'
    }
  }
	 iframe,video {
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:16/9;
  }
}



.terms-page-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz25 {
  font-size: 25px !important;
}

/* End Terms Page Section */


/* Start Generic Inner Section (404, search results, terms pages) */

.terms-section {
  padding-block: 64px;
}

@media only screen and (max-width: 600px) {
  .terms-section {
    padding-block: 40px;
  }
}

/* End Generic Inner Section */


/* Start 404 Section */

.error-404-section .error-icon {
  font-size: 70px;
  color: rgb(205, 168, 121);
  margin-bottom: 20px;
  display: inline-block;
}

.error-404-section .error-code {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: rgb(1, 18, 53);
  text-shadow: 4px 4px 0 rgba(205, 168, 121, 0.25);
  margin-bottom: 10px;
}

.error-404-section p {
  font-size: 18px;
  color: #120F0D;
  opacity: 0.7;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 35px;
}

@media only screen and (max-width: 600px) {
  .error-404-section .error-icon {
    font-size: 50px;
  }

  .error-404-section .error-code {
    font-size: 70px;
  }
}

/* End 404 Section */


/* Start Search Results Section */

.search-results-section .search-result-card {
  background: #fff;
  border-radius: 15px;
  padding: 24px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(1, 18, 53, 0.06);
  transition: 0.3s;
}

.search-results-section .search-result-card:hover {
  box-shadow: 0 10px 25px rgba(1, 18, 53, 0.1);
  transform: translateY(-3px);
}

.search-results-section .search-result-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(205, 168, 121);
  margin-bottom: 10px;
}

.search-results-section .search-result-title {
  font-size: 20px;
  font-weight: 700;
  color: rgb(1, 18, 53);
  margin-bottom: 12px;
}

.search-results-section .search-result-title a {
  color: inherit;
  transition: 0.3s;
}

.search-results-section .search-result-card:hover .search-result-title a {
  color: rgb(205, 168, 121);
}

.search-results-section .search-result-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #120F0D;
  opacity: 0.75;
  margin-bottom: 18px;
}

.search-results-section .search-result-link {
  color: rgb(205, 168, 121);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.search-results-section .search-result-link i {
  transition: 0.3s;
}

.search-results-section .search-result-card:hover .search-result-link i {
  transform: translateX(-4px);
}

.search-results-section .no-results {
  text-align: center;
  padding-block: 30px;
}

.search-results-section .no-results>i {
  font-size: 60px;
  color: rgb(205, 168, 121);
  margin-bottom: 20px;
  display: inline-block;
}

.search-results-section .no-results p {
  font-size: 18px;
  color: #120F0D;
  opacity: 0.7;
  margin-bottom: 30px;
}

.pagination .page-numbers {
  color: #120F0D;
  background-color: #fff;
  border: none;
  min-width: 40px;
  height: 40px;
  padding-inline: 8px;
  border-radius: 20px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.pagination .page-numbers.dots {
  background: transparent;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background-color: rgb(205, 168, 121);
  color: white;
}

/* End Search Results Section */


/* Start Standalone Search Form (used by get_search_form(), e.g. the search
   page's no-results state). Visually related to but independent from
   .search-form-wrapper in header.php, which stays hidden until toggled by JS. */

.page-search-form {
  max-width: 460px;
  margin-inline: auto;
}

.page-search-form .search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 4px 6px 4px 22px;
  box-shadow: 0 4px 20px rgba(1, 18, 53, 0.08);
  transition: 0.3s;
}

.page-search-form .search-form:focus-within {
  box-shadow: 0 0 0 2px rgba(205, 168, 121, 0.5);
}

.page-search-form .form-control {
  border: none;
  background: transparent;
  width: 100%;
  padding-block: 10px;
  font-size: 16px;
  color: #120F0D;
  box-shadow: none;
}

.page-search-form .form-control::placeholder {
  color: #120F0D;
  opacity: 0.5;
}

.page-search-form .search-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgb(205, 168, 121);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.page-search-form .search-btn:hover {
  background: rgb(1, 18, 53);
  color: #fff;
}

/* End Standalone Search Form */


/* Start WooCommerce Notices (global — e.g. the "added to cart" notice shown
   on the shop/single-product pages, not just cart/checkout/my-account, which
   get their own deeper reskin from assets/css/woocommerce.css) */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-noreviews {
  list-style: none;
  background: #ECECEC;
  border-inline-start: 4px solid rgb(1, 18, 53);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  color: #120F0D;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.woocommerce-error {
  border-inline-start-color: #c0392b;
}

.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  order: 2;
  margin-inline-start: auto;
  border-radius: 5px;
  background: rgb(205, 168, 121);
  color: white;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  font-size: 14px;
  border: none;
  font-weight: 600;
  white-space: nowrap;
}

.woocommerce-message .button:hover,
.woocommerce-error .button:hover,
.woocommerce-info .button:hover {
  color: rgb(205, 168, 121);
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: white;
}

/* End WooCommerce Notices */