html.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
}

/* NAVIGATION HEADER */
.main-header {
  z-index: 1000;
  transition: background-color 0.8s ease, padding 0.8s ease, transform 0.5s ease;
  transform: translateY(0);
}

.main-header.scrolled {
  background-color: rgba(21, 52, 42, 0.9);
}

.uhm-logo img {
  height: 80px;
  transition: height 0.4s ease, transform 0.4s ease;
}

.main-header.scrolled .uhm-logo img {
  height: 70px;
  transform: scale(0.95);
}

.navbar-toggler {
  z-index: 1100;
}

/* CONTACT BUTTON */

.contact-button {
  position: relative;
  display: inline-block;
  width: fit-content;
  height: auto;
  background-color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  min-width: 120px;
}

.custom-button-white {
  position: relative;
  display: inline-block;
}

.custom-button-white::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  border: 2px solid var(--primary);
  z-index: 0;
  transition: transform 0.3s ease-in-out;
}

.custom-button-white .btn-primary {
  position: relative;
  border: 2px solid var(--tertiary) !important;
  background: var(--tertiary) !important;
  border-color: var(--tertiary) !important;
  font-size: 0.9rem;
  color: var(--primary) !important;
  letter-spacing: 0;
  padding: 0.6rem 2.2rem !important;
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
  display: inline-block;
  transform: translate(4px, 4px);
}

.custom-button-white:hover::before {
  transform: translate(0, 0);
}

.custom-button-white .btn-primary:hover {
  transform: translate(0px, 0px);
  border-color: 2px var(--primary) !important;
}

.custom-button-white a {
  color: var(--primary);
}

.custom-button-gold {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.custom-button-gold::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  border: 2px solid var(--primary) !important;
  z-index: 0;
  transition: transform 0.3s ease-in-out;
}

.custom-button-gold .btn-primary {
  position: relative;
  background: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  font-size: 0.9rem;
  color: var(--tertiary) !important;
  letter-spacing: 0;
  padding: 0.6rem 2.2rem !important;
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  display: inline-block;
  transform: translate(4px, 4px);
}

.custom-button-gold:hover::before {
  transform: translate(0, 0);
}

.custom-button-gold .btn-primary:hover {
  transform: translate(0px, 0px);
  background: var(--tertiary) !important;
  border-color: 2px var(--primary) !important;
  color: var(--primary) !important;
  transition: 0.5s ease-in-out;
}

.custom-button-gold a {
  color: var(--primary);
}

.custom-button-green {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.custom-button-green .btn-primary {
  position: relative;
  background: var(--tertiary) !important;
  border: 2px solid var(--primary) !important;
  font-size: 0.9rem;
  color: var(--primary) !important;
  letter-spacing: 0;
  padding: 0.6rem 2.2rem !important;
  border-radius: 2px;
  z-index: 1;
  display: inline-block;
}

.custom-button-green .btn-primary:hover {
  background: var(--primary) !important;
  color: var(--tertiary) !important;
  border: 2px solid var(--primary) !important;
}

.custom-button-green a {
  color: var(--primary);
}

/* Video Banner Container */
#video-banner {
  min-height: 100vh;
}

.video-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-content {
  bottom: 40px;
  /* left: 120px; */
}

.video-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.7rem;
  letter-spacing: 0;
}

.video-banner p {
  font-size: 1.3rem;
  font-family: "Metropolis-Thin";
  letter-spacing: 0;
}

/* PORTFOLIO */

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tertiary);
  transition: opacity 0.3s;
}

.carousel-indicators {
  right: unset;
  left: 90px;
  margin-left: unset;
  z-index: 99;
}

.carousel-indicators .active {
  background-color: var(--primary);
}

.carousel-item {
  background-color: var(--secondary);
  /* padding-bottom: 50px; */
  color: var(--tertiary);
  height: 700px;
  overflow: hidden;
  position: relative;
}

.portfolio-tabs {
  padding: 30px 90px;
  background: linear-gradient(to top, transparent, #15342acf);
}

#portfolioTab {
  border: none !important;
}
.portfolio-tabs > div,
.portfolio-tabs > ul,
.portfolio-tabs > .dropdown {
  flex: 1 1 100%;
}

.portfolio-tabs .nav-tabs .nav-link {
  background-color: var(--tertiary);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 50px;
  padding: 0.3rem 1.8rem;
  border: none !important;
  font-family: "Metropolis";
  margin-bottom: 1rem;
}

.nav-tabs .nav-link.active {
  background-color: var(--primary) !important;
  color: #fff;
  font-family: "Metropolis-Medium";
}

.portfolio-content {
  width: 100%;
  bottom: 0;
  padding: 80px 90px;
  background: linear-gradient(to bottom, transparent, #15342a);
}

.portfolio-content div {
  max-width: 550px;
}

.portfolio-inside-content img {
  margin-bottom: 1rem;
  max-width: 100px;
  transform: translate(-10px, 10px);
}

.portfolio-img {
  height: 100%;
  object-fit: cover;
}

.portfolio-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

/* FEATURED PROJECTS */

.careers .featured__projects {
  min-height: 830px;
}

.featured__projects img {
  width: 100%;
  object-fit: cover;
}

.featured__projects h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
}

.featured__projects h4 {
  font-size: 1.4rem;
  font-weight: 700;
}

.featured__projects .featured_content {
  max-width: 890px;
  padding: 20px 30px 30px 50px;
  background-color: #f1ebe4;
  color: #474747;
  min-height: fit-content;
  height: fit-content !important;
}

.featured_content span {
  font-weight: 700;
  letter-spacing: 0;
}

.featured-content-one {
  transform: translate(30rem, 2rem);
  z-index: 2;
}

.feature-two {
  transform: translateY(19rem);
  z-index: 1;
}

.careers .feature-two {
  transform: translateY(16rem);
  z-index: 1;
}

.featured-content-two {
  transform: translate(-35rem, 8rem);
}

.careers .featured-content-two {
  transform: translate(-35rem, 11rem);
}

.featured__projects p {
  font-family: "Metropolis";
  line-height: 20px;
  font-size: 0.9rem;
  letter-spacing: 0;
  padding-top: 1rem;
}

/* MARQUEE LOGO */

.marquee-logo {
  background-color: #f1ebe4;
  padding: 2rem 0;
}

.marquee-logo img {
  width: 85px;
}

.marquee-logo .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.border-gold {
  border-top: 0.1px solid #b18d5666;
}
.input__button {
  cursor: pointer;
  padding: 5px 0;
}

.social-icons ul {
  display: flex;
}

.social-icons ul li {
  list-style: none;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  color: var(--secondary);
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: all ease 0.5s;
}

.social-icons ul li a {
  color: var(--secondary) !important;
  line-height: 18px !important;
}

.social-icons ul li:hover a {
  color: var(--tertiary) !important;
}

.social-icons ul li .fa-facebook-f {
  font-size: 19px;
  transform: translateY(1px);
}
.social-icons ul li .fa-x-twitter {
  font-size: 19px;
  transform: translateY(1px);
}
.social-icons ul li .fa-linkedin-in {
  font-size: 19px;
  transform: translateY(1px);
}
.social-icons ul li .fa-instagram {
  font-size: 24px;
  transform: translateY(1px);
}
.social-icons ul li .fa-youtube {
  font-size: 24px;
  transform: translateY(1px);
}

.social-icons ul li:hover {
  color: var(--tertiary);
  background: var(--secondary);
  border: 2px solid var(--tertiary);
  cursor: pointer;
}

.footer-bottom .copyright p {
  font-size: 0.8rem;
  font-family: "Metropolis";
}

.nav-tabs .nav-link {
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 0 0.5rem;
  color: #000;
  border-radius: 5px;
}

.nav-tabs .nav-link.active {
  background-color: #000;
  color: #fff;
}

/* aashik css */

/* Counter Section Start  */

.text-metropolisLight {
  font-family: "Metropolis-Light", sans-serif;
}

.text-metropolisRegular {
  font-family: "Metropolis", sans-serif;
}

.cormorant-text {
  font-family: "Cormorant", serif;
}

.accomodation-section p {
  line-height: 1.3;
  color: #474747;
  letter-spacing: 0;
}

.cormorant-text-light {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.spaced-text {
  letter-spacing: 0.25em;
}

/* Responsive paragraph & heading */
.counter-section h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
}

.counter-section h4 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -3%;
  background: linear-gradient(90deg, #b18d56 0%, #e5c99e 86.54%, #e5c99e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* For better cross-browser compatibility */
  background-clip: text;
  color: transparent;
}

.counter-section .para {
  font-size: 1.7rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 35px;
}

/* .counter-section-1,
.counter-section-2 {
  padding: 0 60px;
} */

#counter-section-1,
#counter-section-2 {
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

/* When active, fade in */
#counter-section-1.active,
#counter-section-2.active {
  display: block;
  opacity: 1;
}

/* When fading out */
#counter-section-1.fade-out,
#counter-section-2.fade-out {
  opacity: 0;
}

/* Only the visible (active) one should be absolute */
#counter-section-1.absolute,
#counter-section-2.absolute {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.counter-section .counter-imgage {
  /*height: 75vh;*/
  min-height: auto;
  object-fit: cover;
}

/* Overlay on image */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 70%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    #fff 10%,
    #ffffffbd 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Counter Section End  */

/* Expertise Section Start */
.expertise-intro h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
}

.expertise-intro p {
  font-size: 1.7rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 35px;
}

/* Expertise Section End */

/* Carousel Section Start */

#expertise-slider {
  position: relative;
}

/* Make the slider show partial cards */
.expertise-slider .slick-carousel {
  margin: 0 -20rem;
  /* Controls how much side cards are visible */
}

/* Card wrapper */
.slick-carousel .slick-slide > div {
  padding: 60px;
}

/* Card styling */
.expertise-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 1;
  display: flex;
  flex-direction: column;
  /* max-height: 700px; */
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 100%;
}

.expertise-card img {
  /* max-height: 300px; Adjust based on design */
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Maintain aspect ratio */
}

.slick-center .expertise-card {
  transform: translateY(0px) scale(1.2);
  opacity: 1;
  z-index: 2;
}

/* .slick-center .expertise-card img {
  max-height: 320px;
} */

/* Content inside cards */
.card-content {
  padding: 40px;
  background-color: var(--secondary);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3,
.card-content p {
  color: var(--tertiary);
  padding-bottom: 20px;
}

.expertise-slider .btn {
  width: fit-content;
}

/* Fade gradient */
.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 250px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: background 0.3s ease;
}

/* Left & Right fade directions */
/* .carousel-fade-left {
  left: 0;
  background: transparent;
}

.carousel-fade-right {
  right: 0;
  background: transparent;
} */

/* Arrow button hidden by default */
.carousel-fade-left .arrow-lg,
.carousel-fade-right .arrow-lg {
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show left arrow when left fade is hovered
.carousel-fade-left:hover .arrow-lg {
  opacity: 1;
  pointer-events: auto;
}

Show right arrow when right fade is hovered */
/* .carousel-fade-right:hover .arrow-lg {
  opacity: 1;
  pointer-events: auto;
} */

.arrow-lg {
  background: transparent;
  backdrop-filter: blur(20px);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer !important;
  transition: opacity 0.3s ease;
}

.arrow-lg i {
  color: var(--secondary);
}

.slick-prev-btn.arrow-lg {
  left: 14px;
}

.slick-next-btn.arrow-lg {
  right: 14px;
}

@media (min-width: 767px) and (max-width: 1000px) {
  .slick-prev-btn.arrow-lg,
  .slick-next-btn.arrow-lg {
    top: 40%;
  }
}

@media (max-width: 768px) {
  .expertise-slider .slick-carousel {
    margin: 0 !important;
  }

  .slick-carousel .slick-slide > div {
    padding: 0 10px 30px;
  }

  .expertise-card {
    max-width: 100%;
    margin: 0 auto;
    height: auto; /* ✅ card grows with content */
  }

  .expertise-card img {
    max-height: 380px;
    image-rendering: auto; /* default, smooth scaling */
    backface-visibility: hidden; /* helps with GPU rendering */
  }

  .mobile-carousel-arrows {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
}

@media (min-width: 2001px) {
  .slick-carousel {
    margin: 0 -40rem;
  }

  .slick-carousel .slick-slide > div {
    padding: 80px;
  }

  .expertise-card {
    /* max-height: 700px; */
    height: auto;
    display: flex;
    flex-direction: column;
    max-height: none;
  }

  .expertise-card img {
    /* max-height: 450px; Adjust based on design */
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .card-content {
    /* height: 350px; */
    flex-grow: 1;
  }
}

/* Carousel Section End */

/* Video - Text Section Start */

.video-text-section {
  overflow: hidden;
}

.video-wrapper {
  background-color: var(--secondary);
  min-height: 400px;
  background-color: #000;
}

.video-wrapper video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-37%, -50%);
  background: rgba(255, 255, 255, 0.2); /* transparent */
  border: none;
  font-size: 1.5rem;
  width: 46px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  color: #fff;
}

.video-caption {
  position: absolute;
  top: 53%;
  left: 61%;
  transform: translate(-61%, -53%);
  width: 100%;
  padding: 0 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.video-caption p {
  word-spacing: 0px;
  letter-spacing: 0px;
}

.text-content {
  background-color: var(--secondary);
  min-height: 400px;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-block {
  color: var(--tertiary);
}

.line {
  font-size: 2.1rem;
  line-height: 1.4;
  color: var(--tertiary);
}

.line-1 {
  transform: translateX(-30px);
  text-align: start;
}

.line-2 {
  transform: translateX(10px);
  margin-left: 3rem;
}

.video-sm-text {
  font-size: 1.5rem;
}

.line-3 {
  transform: translateX(-40px);
  text-align: start;
}

.line-4 {
  transform: translateX(30px);
  margin-left: 3rem;
}

[data-aos="custom-left"] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="custom-left"].aos-animate {
  opacity: 1;
  transform: translateX(-8px);
}

[data-aos="custom-right"] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="custom-right"].aos-animate {
  opacity: 1;
  transform: translateX(70px);
}

[data-aos="custom-right"].aos-animate:nth-child(2) {
  opacity: 1;
  transform: translateX(10px);
}

.decorative-img {
  position: absolute;
  opacity: 1;
  width: 80px;
  z-index: 1;
}

.deco-left {
  left: 40px;
  bottom: 0px;
}

.deco-right {
  top: 0px;
  right: 40px;
}

/* Prevent background scroll when modal is open */
/* body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
} */

/* Reset Bootstrap modal padding */
.modal {
  padding-right: 0 !important;
  overflow: hidden;
}

/* Fullscreen modal */
.video-modal .modal-dialog {
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
}

#videoModal video {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-transform: translateZ(0); /* Force GPU layer merge */
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
  pointer-events: auto; /* ensure video stays interactable */
}

/* Fullscreen modal content with centered video */
.video-modal-content {
  position: fixed; /*ensure fullscreen cover */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.video-modal .modal-content {
  position: relative;
  z-index: 2;
  background: black !important;
}

.btn-close-white {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
  /* background: rgba(66, 66, 66, 0.6); */
  border-radius: 50%;
  padding: 0.5rem 0.9rem;
  z-index: 999999; /* must be higher than video */
  cursor: pointer;
  pointer-events: auto;
}

.clickable {
  cursor: pointer;
}

.video-centered {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: black;
}

@media (max-width: 768px) {
  .video-close-btn {
    width: 0.8rem;
    height: 0.8rem;
  }
}

@media (max-width: 576px) {
  .line {
    font-size: 1.6rem;
  }
}

/* Video - Text Section End */

/* Accomodation Section Start */

.accomodation-section p {
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem);
}

.accomodation-section h3 {
  letter-spacing: 6px;
  font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.4rem);
  line-height: 30px;
}

.image-wrapper {
  margin-right: -14rem;
}

.image-wrapper img {
  width: 100%;
  min-height: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.main-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.main-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -11px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  transform: rotate(-2deg);
  border-radius: 10px;
  z-index: 3;
}

.main-image,
.secondary-image {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .image-wrapper {
    margin-right: 0;
  }
}

/* Accomodation Section End */

/* PORTFOLIO PAGE STYLES */

.portfolio-banner {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.portfolio-banner-content {
  max-width: 550px;
  bottom: 80px;
}

.portfolio-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.7rem;
  letter-spacing: 0;
}

.portfolio-banner p {
  font-size: 1.3rem;
  font-family: "Metropolis-ExtraLight";
  letter-spacing: 0;
}

.hotels-resorts h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
}

/*  RESORT AND HOTEL  */

.category-tabs {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}

.category-tab {
  padding: 5px 22px;
  border: 1px solid #bebebe;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 6%;
  font-weight: 500;
  font-family: "Metropolis";
}

.category-tab.active {
  background-color: var(--primary);
  color: var(--tertiary);
  border-color: var(--primary);
}

.hotels-resorts .row > * {
  padding-right: 0 !important;
}

.hotel-desc {
  padding: 0 2rem 2.2rem 2rem;
}

.hotels-resorts .nav-tabs .nav-link {
  border-radius: 50px;
  color: rgba(71, 71, 71, 1);
  margin: 0 !important;
}
.hotels-resorts .nav-tabs .nav-link.active {
  border-radius: 50px;
  color: white;
  border-color: var(--primary);
}

.hotels-resorts .hotel-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  transform: translateY(45%);
  transition: transform 0.6s ease-in-out;
  /* background: linear-gradient(to bottom, transparent, #15342A);  */
  /* background: linear-gradient(0deg,rgba(21, 52, 42, 0.7) 90%, rgba(21, 52, 42, 0) 100%); */
  color: #fff; /* Optional for readability */
  z-index: 2;
}

.card-info p {
  font-size: 0.9rem;
}
.card-info-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120%;
  padding-top: 4rem;
  transform: translateY(50%);
  transition: transform 0.6s ease-in-out;
  /* background: linear-gradient(to bottom, transparent, #15342A);  */
  background: linear-gradient(
    0deg,
    rgba(21, 52, 42, 0.7) 60%,
    rgba(21, 52, 42, 0.6) 75%,
    rgba(21, 52, 42, 0) 100%
  );
  color: #fff;
  z-index: 1;
}

.dropdown-toggle {
  font-size: 0.8rem;
  font-family: "Metropolis-Medium";
  height: fit-content;
  width: 160px;
  font-weight: 500;
}

.portfolio-section .dropdown-toggle {
  width: fit-content;
}

.dropdown-toggle::after {
  font-size: 1.2rem;
  vertical-align: middle;
}

.dropdown-menu .dropdown-item {
  background-color: var(--tertiary);
  color: var(--primary);
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(21, 52, 42, 0.7);
  color: #fff;
}

.hotels-resorts .dropdown-menu .dropdown-item {
  background-color: var(--secondary);
  color: var(--primary);
}

.hotels-resorts .dropdown-menu .dropdown-item:hover {
  background-color: rgba(21, 52, 42, 0.7);
  color: #fff;
}

.hotels-resorts .hotel-card:hover .card-info-mask {
  transform: translateY(-10%);
}

.hotels-resorts .hotel-card:hover .card-info {
  transform: translateY(0%);
}

.hotels-resorts p {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.hotels-resorts .hotel-card:hover p {
  opacity: 1;
}

.hotels-resorts .hotel-card:hover::before {
  opacity: 1;
}

.hotels-resorts .hotel-card .bg-logo {
  width: 80px;
  top: -20px;
}
.card-button {
  background: linear-gradient(
    0deg,
    rgba(21, 52, 42, 1) 75%,
    rgba(21, 52, 42, 0.8) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 1rem 2rem 2.4rem 2rem;
}

/* LOGO */

.logo-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

.logo-img {
  max-width: 100px;
  height: auto;
}
.logo-width68 {
  max-width: 68px;
}
.divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0, 0, 0, 1);
  margin: 0;
  opacity: 10%;
}

/* Keep it here */

@media (max-width: 767px) {
  .hotels-resorts .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}
.featured__projects {
  height: 762px;
}

.dropdown-menu .dropdown-item {
  background-color: var(--tertiary);
  color: var(--primary);
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(21, 52, 42, 0.7);
  color: #fff;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/*contact us*/
/* CONTACT BANNER SECTION */

.contact-banner {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.contact-banner-content {
  max-width: 550px;
  bottom: 100px;
}

.contact-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.7rem;
  letter-spacing: 0;
}

.contact-banner p {
  font-size: 1.3rem;
  font-family: "Metropolis-ExtraLight";
  letter-spacing: 0;
}

/* CONTACT BANNER SECTION END */

/* CONTACT ENQUIRY SECTION */

.contact-form {
  background: #f1ebe4;
  padding: 30px 0px 0px 0px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.form-content {
  max-width: 700px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-content p {
  color: #000 !important;
}

.form-label {
  font-weight: 600;
  color: #000;
}

.contact-form h3 {
  color: var(--primary);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  font-weight: 600;
}

.wpcf7-list-item {
  margin: 0;
}

.form-select,
.form-control {
  border-radius: 6px;
  border: 2px solid var(--primary);
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  transition: all 0.3s ease;
}
.form-select:focus,
.form-control:focus {
  border-color: var(--primary);
  background-color: #f7f7f7;
}

textarea.form-control {
  resize: vertical;
  height: auto;
  min-height: 100px;
}
.form-control::placeholder {
  color: #666;
  font-style: italic;
}

input[type="checkbox"] {
  accent-color: var(--primary);
}

/* Phone group layout */
.phone-group {
  flex-wrap: nowrap;
}
.phone-group .phone-code {
  max-width: 120px;
  min-width: 100px;
  overflow: hidden;
}
.phone-group .form-control {
  flex: 1;
}

.form-check-label {
  color: #000;
}
.form-check-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.accept_terms {
  padding: 0;
}

.iti {
  margin-bottom: 1rem !important;
}

.form-check {
  padding: 0;
}

.wpcf7-response-output {
  margin-top: 1rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.side-logo-left {
  position: absolute;
  top: -20%;
  left: 5%;
  transform: translate(20%, -5%);
  width: 10rem;
  pointer-events: none;
}

.side-logo-right {
  position: absolute;
  bottom: -20%;
  right: -5%;
  transform: translate(-20%, 5%);
  width: 10rem;
  pointer-events: none;
}

/* Align right side content center */
.right-side {
  min-height: 100%;
}

.office-location-section {
  background: #f1ebe4;
  border-radius: 16px;
  margin-top: 3rem;
}

.location-tab {
  background-color: var(--tertiary);
  color: var(--primary);
  border-radius: 50px;
  padding: 0.3rem 1.8rem;
  font-family: "Metropolis";
  border: 1px solid var(--primary);
}

.location-tab.active {
  background-color: var(--primary);
  color: var(--tertiary);
  font-family: "Metropolis-Medium";
  border: none;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.location-title {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  font-weight: 600;
  color: var(--primary);
}

.location-dropdown {
  border-radius: 50px;
  font-family: "Metropolis";
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--tertiary);
  width: auto;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white'  viewBox='0 0 20 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.5rem;
}

.location-dropdown option {
  background-color: #fff;
  color: #000;
}

.location-dropdown option:active {
  background-color: var(--secondary) !important;
}

/* Common transition styles */
.location-content,
.map-section {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  position: relative;
  z-index: 1;
}

.location-content.hidden,
.map-section.hidden {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  position: absolute;
}

.location-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.location-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.location-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.office-info-wrapper {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.office-card {
  background-color: #f5f2ef;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  font-family: "Metropolis";
  font-size: 14px;
  color: black;
  line-height: 20px;
}

.office-card .location {
  font-family: "Cormorant", serif;
  font-size: 16px;
}

.office-location {
  font-weight: bold;
  color: var(--tertiary);
  margin-bottom: 15px;
}

.office-detail {
  margin-bottom: 8px;
  color: var(--tertiary);
}

/* .office-location, */
.office-detail a {
  color: black;
}

.office-logo {
  position: absolute;
  top: -73px;
  right: 15px;

  height: auto;
  opacity: 1;
}

.container-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
}

.card-img,
.card-img-top {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}

.blur-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  );
  pointer-events: none;
  z-index: 1;
}

.main-header .navbar-nav .nav-link {
  color: var(--tertiary);
}

.main-header .navbar-nav .nav-link.active,
.main-header .navbar-nav .nav-link.show {
  border-bottom: 2px solid var(--primary) !important;
  transition: none;
}

/* CAREER BANNER SECTION */

.career-banner {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.career-banner-content {
  max-width: 550px;
  bottom: 100px;
}

.career-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.7rem;
  letter-spacing: 0;
}

.career-banner p {
  font-size: 1.3rem;
  font-family: "Metropolis-ExtraLight";
  letter-spacing: 0;
}

.blur-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  );
  pointer-events: none;
  z-index: 1;
}

/* CAREER BANNER SECTION END */

/* CAREER INTRO SECTION */

.career-intro-section h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
}

.career-intro-section p {
  line-height: 1.5;
  color: #474747;
  letter-spacing: 0;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
}

/* CAREER INTRO SECTION END */

/* WHY UHM SECTION */

.pill-logo1 {
  position: absolute;
  top: 5%;
  right: 15%;
  transform: translate(15%, -5%);
  width: 130px;
}

.pill-logo2 {
  position: absolute;
  bottom: 5%;
  left: 15%;
  transform: translate(-15%, 5%);
  width: 130px;
}

.why-uhm-section .group-card {
  max-width: 800px;
  height: 320px;
  /* border: 3px solid var(--primary); */
}

.why-uhm-section .group-card-content {
  background-color: #f1ebe4;
}

.why-uhm-section .group-card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.why-uhm-section .group-card-content p {
  font-size: 1rem;
  color: #000;
  font-family: "Metropolis-Thin", serif;
}

.why-uhm-section .group-card-image {
  width: 50%;
  position: relative;
  /* -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35); */
}

@media screen and (max-width: 991px) {
  .why-uhm-section .group-card {
    width: 100% !important;
    position: relative;
  }

  .why-uhm-section .group-card-content p {
    color: var(--tertiary);
  }

  .why-uhm-section .group-card.rounded-pill {
    border-radius: 1rem !important;
  }

  .why-uhm-section .group-card-content {
    background-color: transparent;
    position: absolute;
    z-index: 2;
    padding: 0 5rem;
    width: 100% !important;
    padding: 2rem;
    text-align: center;
    align-items: center;
  }

  .why-uhm-section .group-card-image {
    width: 100%;
    /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%); */
  }
}

/* WHY UHM SECTION END */

/* LIFE AT UHM SECTION */

.life-at-uhm h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
  color: var(--primary);
}

.life-at-uhm p {
  line-height: 1.5;
  color: #474747;
  letter-spacing: 0;
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.4rem);
}

/* LIFE AT UHM SECTION END */

/* CAREER-OPPORTUNITIES SECTION */

.alert-custom {
  background-color: var(--primary);
}

.alert-custom .alert-heading {
  color: #1c7ed6;
}

.alert-custom .btn-close {
  filter: brightness(0) invert(1);
}

/* CAREER-OPPORTUNITIES SECTION END */

/* OUR IDENTITY PAGE */

.vision-mission-values {
  background-color: #f1ebe45c;
}

.vision-mission-values h2 {
  font-size: 2.4rem;
  letter-spacing: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: "Metropolis-ExtraLight";
}

.vision-mission-values h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.vision-mission-values p {
  font-size: 1.4rem;
  margin-top: 1rem;
}

.mission-box,
.vision-box,
.values-box {
  padding: 12px 0;
}

.divider-vertical::after {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary) 30%,
    var(--primary) 70%,
    transparent
  );
  margin: 2rem 0;
}

.divider-vertical {
  position: relative;
}

.vision-mission-values .sidebar-effect {
  height: 100%;
  width: 0.1rem;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.mission-box:hover .sidebar-effect,
.vision-box:hover .sidebar-effect,
.values-box:hover .sidebar-effect {
  width: 1rem;
}

/* LEADER SHIP SECTION */

.leadership-team .portfolio-tabs {
  background: unset !important;
}

.leadership-team h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

.leadership-team p {
  font-size: 1.4rem;
  margin-top: 1rem;
  color: var(--tertiary);
}

.leadership-team .team-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-height: 500px;
}

.team-desc {
  padding: 0 2rem 2.2rem 2rem;
}

.leadership-team .team-card:hover p {
  opacity: 1;
}

.leadership-team .team-card:hover::before {
  opacity: 1;
}


.leadership-team .team-card .bg-logo {
  width: 80px;
  top: -20px;
}

.leadership-team .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  transform: translateY(50%);
  transition: transform 0.6s ease-in-out;
  color: #fff;
  z-index: 2;
}

.leadership-team .card-info p {
  font-size: 0.9rem;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.leadership-team .card-info-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120%;
  padding-top: 4rem;
  transform: translateY(50%);
  transition: transform 0.6s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(21, 52, 42, 0.7) 60%,
    rgba(21, 52, 42, 0.6) 75%,
    rgba(21, 52, 42, 0) 100%
  );
  color: #fff;
  z-index: 1;
}

.leadership-team .team-card:hover .card-info-mask {
  transform: translateY(-10%);
}

.leadership-team .team-card:hover .card-info {
  transform: translateY(0%);

}

/* team member card */

.leadership-team .member-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 0px;
  transform: translateY(50%);
  transition: transform 0.6s ease-in-out;
  color: #fff;
  z-index: 2;
}

.leadership-team .member-card-info p {
  font-size: 0.9rem;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.leadership-team .card-info-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120%;
  padding-top: 4rem;
  transform: translateY(50%);
  transition: transform 0.6s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(21, 52, 42, 0.7) 60%,
    rgba(21, 52, 42, 0.6) 75%,
    rgba(21, 52, 42, 0) 100%
  );
  color: #fff;
  z-index: 1;
}

.leadership-team .team-card:hover .member-card-info-mask {
  transform: translateY(-10%);
}

.leadership-team .team-card:hover .member-card-info {
  transform: translateY(10%);
}

/* Team Model */

#teamModal {
  overflow: auto !important;
  z-index: 999999 !important;
}

.modal-body,
.team-modal-bio,
#teamModalDesc {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  z-index: 999999 !important;
}

@media (min-width: 767px) {
  #teamModal .modal-dialog {
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 999999 !important;
  }
}
@media (max-width: 208px) {
  #teamModal .modal-dialog {
    width: 90%;
    max-width: 1000px;
    margin: 5rem 0;
    height: fit-content;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: auto;
    position: relative;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 999999;
}

.modal-body {
  display: flex;
  flex: 1;
  height: 100%;
  z-index: 999999 !important;
}

.modal-image {
  flex: 0 0 40%;
  background-color: #eee;
  overflow: hidden;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-content {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  padding: 24px;
  overflow: hidden;
  z-index: 999999 !important;
}

.modal-header {
  flex-shrink: 0;
}

.bio-scrollable {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 8px;
  margin-top: 1rem;
}

/* Custom Scrollbar */
.bio-scrollable {
  scrollbar-width: thin;
  scrollbar-color: #b18d56 #f9f9f9;
}

/* For Chrome, Edge, Safari */
.bio-scrollable::-webkit-scrollbar {
  width: 8px;
  background: #f9f9f9;
}
.bio-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #b18d56 0%, #e5c99e 100%);
  border-radius: 10px;
  border: 2px solid #f9f9f9;
}
.bio-scrollable::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 10px;
}

.bio-scrollable::-webkit-scrollbar {
  width: 6px;
}
.bio-scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.services-slider .carousel-item > .d-flex {
  height: 100%;
}

/* AL BAHAR GROUP ---- OUR GROUP SECTION */

.al-bahar-slider .slider-content h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
  line-height: 30px;
}
.al-bahar-slider .slider-content p {
  font-size: 0.87rem;
}

.al-bahar-slider .sub-point h4 {
  font-size: 1.3rem;
  font-weight: 800;
}

.al-bahar-slider .sub-point p {
  font-size: 0.87rem;
}

.al-bahar-slider .slider-content {
  padding: 5rem 7.7rem;
}

.al-bahar-slider .carousel-item {
  background-color: var(--secondary);
  color: var(--tertiary);
  height: 420px;
  overflow: hidden;
  position: relative;
}

.al-bahar-slider .carousel-button {
  top: 2.5rem;
  right: 0;
  width: 75px;
  margin-right: 2.5rem;
}

.al-bahar-slider .carousel-control-prev,
.al-bahar-slider .carousel-control-next {
  width: 31px !important;
  height: 31px !important;
}

.al-bahar-slider .carousel-control-prev-icon,
.al-bahar-slider .carousel-control-next-icon {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 20px;
  width: 30px;
  height: 30px;
}

.al-bahar-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0 2px;
  opacity: 1;
  background-color: var(--tertiary);
}

.al-bahar-slider .carousel-indicators .active {
  opacity: 1 !important;
  background-color: var(--primary) !important;
}

.al-bahar-slider .carousel-indicators {
  bottom: 3rem;
  z-index: 99;
  width: fit-content;
  left: 7.7rem;
}

.our-group-section {
  background-color: #f1ebe4;
  padding: 2rem 0;
  margin: 0;
}

.our-group-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

.our-group-section h3 span {
  font-size: 2.5rem;
  letter-spacing: 6px;
}

.our-group-section p {
  font-size: 1.4rem;
  margin-top: 1rem;
  color: var(--quaternary);
}

.our-group-section .group-card {
  cursor: pointer;
  max-width: 800px;
  height: 320px;
  border: 1px solid var(--primary);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.our-group-section .group-card:hover {
  transition: all 0.5s ease-in-out;
}

.our-group-section .group-card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.our-group-section .group-card-content p {
  font-size: 1rem;
  color: var(--tertiary);
  font-family: "Metropolis-Thin", serif;
}

.our-group-section .group-card-image {
  width: 50%;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* NEWS INSIGHT CARD */

.related_posts_single {
  padding-top: 5rem;
  background-color: #f8f8f8;
}

.news-insights-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

.news-insight-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.news-insight-card:hover {
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
  transform: translateY(-5px);
  transition: 500ms ease-in-out;
}
.news-insight-card .card-title {
  font-family: "Metropolis", serif;
  font-weight: 700;
  color: #1a3d5d;
}
.news-insight-card .card-text {
  color: #6c757d;
  font-size: 1rem;
}

.news-card .news-insight-card {
  box-shadow: none !important;
  border: 1px solid #eee;
}

.our-group-section .blur-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2)
  );

  pointer-events: none;
  z-index: 1;
}

/* OUR EXPERTISE PAGE */

.service-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
  line-height: 30px;
}

.service-section p {
  font-size: 1.7rem;
  line-height: 35px;
}

/* OUR EXPERTISE PAGE */
.services-slider h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
  line-height: 30px;
}

.services-slider p {
  font-size: 0.87rem;
  color: var(--quaternary); /* newly added */
}

.services-slider .sub-point h4 {
  font-size: 1.3rem;
  font-weight: 800;
}

.services-slider .sub-point p {
  font-size: 0.87rem;
}

.services-slider .slider-content {
  padding: 5rem;
}

.services-slider .carousel-item {
  background-color: #f1ebe4;
  /* padding-bottom: 50px; */
  color: var(--tertiary);
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.services-slider .carousel-button {
  top: 2.5rem !important;
  right: 8rem;
  width: 75px;
}

.services-slider .carousel-control-prev,
.services-slider .carousel-control-next {
  width: 31px !important;
  height: 31px !important;
}

.services-slider .carousel-control-prev-icon,
.services-slider .carousel-control-next-icon {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 20px;
  width: 30px;
  height: 30px;
}

/* Circle button */
.custom-arrow-btn {
  width: 60px;
  height: 60px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base arrow styles */
.arrow-icon {
  position: relative;
  width: 11px;
  height: 1.5px;
  background-color: var(--primary); /* horizontal line */
  display: inline-block;
}

/* Arrowhead - left */
.arrow-icon.left::before,
.arrow-icon.left::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.5px;
  background-color: var(--primary);
  top: 0;
  left: 0;
}

.arrow-icon.left::before {
  transform: rotate(45deg);
  transform-origin: left center;
}

.arrow-icon.left::after {
  transform: rotate(-45deg);
  transform-origin: left center;
}

/* Arrowhead - right */
.arrow-icon.right::before,
.arrow-icon.right::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.5px;
  background-color: var(--primary);
  top: 0;
  right: 0;
}

.arrow-icon.right::before {
  transform: rotate(45deg);
  transform-origin: right center;
}

.arrow-icon.right::after {
  transform: rotate(-45deg);
  transform-origin: right center;
}

/* Hover effect for entire button */
/* .custom-arrow-btn:hover {
  border-color: #ffffff;
} */

/* On hover, make arrow and arrowhead white */
/* .custom-arrow-btn:hover .arrow-icon,
.custom-arrow-btn:hover .arrow-icon::before,
.custom-arrow-btn:hover .arrow-icon::after {
  background-color: #ffffff;
} */

.services-slider.services-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0 2px;
  opacity: 1;
  background-color: var(--tertiary);
}

.services-slider .carousel-indicators .active {
  opacity: 1 !important;
  background-color: var(--primary) !important;
}

.services-slider .carousel-indicators {
  bottom: 2.8rem;
  z-index: 99;
  width: fit-content;
  margin: auto 5rem;
  left: 50%;
}

.our-expertise .key-differentiators-section {
  background: linear-gradient(135deg, #f8fafc 60%, #e6f0ea 100%);
  margin-bottom: 60px;
}

.key-differentiators-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

.key-differentiators-section .para {
  font-size: 1.7rem;
  line-height: 35px;
}

.key-differentiators-section p {
  font-size: 1.7rem;
  margin-top: 1rem;
  color: var(--quaternary);
}

.key-differentiators-section .differentiator-card {
  background-color: #f5f2ef;
}

.differentiator-card {
  max-height: 450px;
  min-height: 320px;
  padding: 45px 60px 50px 30px;
}

.differentiator-card .bg-custom-logo {
  right: 0;
  width: 5rem;
  height: auto;
  transform: translate(-30px, 30px);
}

.differentiator-card .differentiator-content {
  padding-bottom: 3.5rem;
  padding-right: 3rem;
}

.differentiator-card .differentiator-content p {
  font-family: "Metropolis";
  font-size: 14px;
  color: black;
  line-height: 20px;
}

.differentiator-card h5 {
  font-size: 1.35rem;
  font-weight: 800;
}

.differentiator-card .hands-logo {
  width: 60px;
}

/* TIMELINE SECTION */

.timeline-section {
  position: relative;
  overflow: hidden;
  color: white;
}

.timeline-section h3 {
  letter-spacing: 6px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.timeline-slide {
  position: relative;
  height: 80vh;
  display: flex !important;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.timeline-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlay-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0px;
  border-radius: 10px;
  text-align: center;
}

.overlay-content .year {
  font-size: 6vw;
}

.overlay-content .desc {
  font-size: 1vw;
  margin: 0 auto;
  max-width: 70%;
}

.timeline-heading {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 10;
  text-align: center;
}

.timeline-years {
  position: absolute;
  bottom: 50px;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.timeline-years::-webkit-scrollbar {
  display: none;
}

.timeline-years .year-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 6px 28px;
  color: white;
  border-radius: 25px;
  transition: all 0.3s;
  white-space: nowrap;
  font-weight: bold;
  flex: 0 0 auto;
}

.timeline-years .year-btn.active {
  background: var(--primary);
  border-color: var(--primary);
}

.timeline-custom-arrows {
  position: absolute;
  top: 47%;
  width: 100%;
  z-index: 10;
  transform: translateY(-47%);
  pointer-events: none;
}

.timeline-custom-arrows .custom-arrow {
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--tertiary);
  padding: 10px 18px;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.1s;
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
}

.custom-arrow:hover {
  background: var(--primary);
}

.timeline-custom-arrows .custom-prev {
  left: 9%;
}

.timeline-custom-arrows .custom-next {
  right: 9%;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .timeline-years {
    display: none !important;
  }

  .timeline-slide .year {
    font-size: 6vw;
  }

  .overlay-content .desc {
    font-size: 1.6vw;
    max-width: 80%;
  }

  .timeline-years {
    gap: 10px;
  }

  .timeline-years .year-btn {
    padding: 5px 20px;
    font-size: 0.8rem;
  }

  .timeline-custom-arrows .custom-arrow {
    font-size: 1rem;
  }

  .timeline-custom-arrows .custom-prev {
    left: 1%;
  }

  .timeline-custom-arrows .custom-next {
    right: 1%;
  }

  @media (max-width: 992px) {
    .counter-section .counter-imgage {
      height: 60vh;
    }

    .gradient-overlay {
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
      );
      height: 100%;
    }

    .counter-section .counterpara {
      color: var(--tertiary);
    }

    .portfolio .counter-section .counterpara {
      color: black;
    }
  }
}
@media (max-width: 768px) {
  .timeline-slide {
    background-size: auto 100% !important;
  }

  .timeline-slide .year {
    font-size: 7vw;
  }

  .overlay-content .desc {
    font-size: 2.6vw;
    max-width: 80%;
  }

  .timeline-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 578px) {
  .timeline-custom-arrows .custom-arrow {
    font-size: 0.5rem;
  }

  .timeline-custom-arrows .custom-prev {
    left: 1%;
  }

  .timeline-custom-arrows .custom-next {
    right: 1%;
  }
}

/* TIMELINE SECTION END */

/* LOGO SECTION */

.logo-section p {
  font-size: 1.7rem;
  margin-top: 1rem;
  color: var(--quaternary);
}

/* LOGO SECTION END */

/* ASSET - COMMITMENT SECTION */

.governance-carousel .slider-content h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
  line-height: 30px;
  word-break: break-word;
}

.governance-carousel .slider-content p,
.governance-carousel .sub-point p {
  font-size: 0.87rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.governance-carousel .sub-point h4 {
  font-size: 1.3rem;
  font-weight: 800;
}

/* === CONTENT STRUCTURE === */
.governance-carousel .slider-content {
  padding: 5rem 3rem 5rem 7.7rem;
  height: 100%;
  overflow-wrap: break-word;
}

.governance-carousel .governance-item {
  background-color: #f1ebe4;
}

.governance-carousel .governance-item .slider-content p {
  color: var(--quaternary) !important;
}

.governance-carousel .carousel-item .row {
  flex: 1;
  min-height: 90vh;
}

.governance-carousel .carousel-item {
  min-height: 90vh;
}

.governance-carousel .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* === ARROWS === */
.carousel-arrow-group {
  right: -10%;
  top: 5%;
  padding: 0 2rem;
}

.governance-carousel .carousel-control-prev,
.governance-carousel .carousel-control-next {
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: var(--tertiary);
  border: 1px solid var(--tertiary);
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === INDICATORS === */
.governance-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0 2px;
  opacity: 1;
}

.governance-carousel .carousel-indicators .active {
  opacity: 1 !important;
  background-color: var(--primary) !important;
}

.governance-carousel .carousel-indicators {
  bottom: 0.5rem;
  z-index: 99;
  width: fit-content;
  left: 7.7rem;
}

/* === RESPONSIVE FIXES === */

@media (min-width: 2000px) {
  .governance-carousel .governance-item .image-column {
    max-width: 1300px !important;
  }

  .governance-carousel .slider-content h4 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
  }

  .governance-carousel .slider-content p,
  .governance-carousel .sub-point p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem);
    margin-bottom: clamp(0.5rem, 0.5vw + 0.5rem, 1rem);
    color: var(--quaternary);
  }
}

@media (min-width: 2500px) {
  .governance-carousel .governance-item .image-column {
    max-width: 1900px !important;
  }
}

/* Medium & small devices (<= 991px) */
@media (max-width: 991.98px) {
  .governance-carousel .carousel-item .row {
    flex-direction: column !important;
    min-height: auto;
  }

  .governance-carousel .slider-content h3 {
    font-size: 1.1rem;
    letter-spacing: 3px;
    line-height: 26px;
  }

  .governance-carousel .slider-content p,
  .governance-carousel .sub-point p {
    font-size: 0.85rem;
  }

  .governance-carousel .sub-point h4 {
    font-size: 1.1rem;
  }

  .governance-carousel .carousel-item img {
    min-height: 630px;
  }
}

/* Extra small devices (<= 575px) */
@media (max-width: 575.98px) {
  .governance-carousel .carousel-control-prev,
  .governance-carousel .carousel-control-next {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
/* ASSET - COMMITMENT SECTION END */

.map-section .location-icons-one {
  top: 28%;
  right: 55%;
  transform: translate(-50%, 50%);
  animation: slideUpDown 2.5s ease-in-out infinite;
  cursor: pointer;
}

.map-section .location-icons-two {
  top: 37%;
  right: 38%;
  transform: translate(-50%, 50%);
  animation: slideUpDown 2.5s ease-in-out infinite;
  cursor: pointer;
}

@keyframes slideUpDown {
  0% {
    transform: translate(-50%, 50%);
  }
  50% {
    transform: translate(-50%, 30%);
  }
  100% {
    transform: translate(-50%, 50%);
  }
}

.map-section .location-icons {
  top: 5px;
  width: 10px;
  transition: transform 0.5s;
}
.map-section .location-ellipse {
  width: 18px;
  transition: transform 0.5s;
}

@media (min-width: 468px) {
  .map-section .location-icons {
    top: 5px;
    width: 20px;
    transition: transform 0.5s;
  }

  .map-section .location-ellipse {
    width: 30px;
    transition: transform 0.5s;
  }

  .map-section .location-icons-two {
    top: 31%;
    right: 38%;
  }

  .map-section .location-icons-one {
    top: 22%;
    right: 55%;
  }
}

@media (min-width: 567px) {
  .map-section .location-icons-two {
    top: 25%;
    right: 32%;
  }
  .map-section .location-icons-one {
    top: 15%;
    right: 49%;
  }
}

@media (min-width: 991px) {
  .map-section .location-icons-two {
    top: 29%;
    right: 33%;
  }
  .map-section .location-icons-one {
    top: 18%;
    right: 51%;
  }
}

@media (min-width: 1200px) {
  .map-section .location-icons-two {
    top: 31%;
    right: 33%;
  }
  .map-section .location-icons-one {
    top: 20%;
    right: 51.8%;
  }
}

@media (min-width: 1400px) {
  .map-section .location-icons {
    top: 5px;
    width: 30px;
    transition: transform 0.5s;
  }

  .map-section .location-ellipse {
    width: 40px;
    transition: transform 0.5s;
  }

  .map-section .location-icons-two {
    top: 27%;
    right: 34%;
  }
  .map-section .location-icons-one {
    top: 17%;
    right: 51.8%;
  }
}

/* Scale on hover for icons and ellipse */
.map-section .location-icons-one:hover .location-icons,
.map-section .location-icons-one:hover .location-ellipse,
.map-section .location-icons-two:hover .location-icons,
.map-section .location-icons-two:hover .location-ellipse {
  transform: scale(1.2);
}

/* error page section */

.error-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.error-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.error-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}

.error-content h1 {
  font-size: clamp(2.5rem, 5vw + 4rem, 10rem);
  font-weight: 600;
}

.error-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* error page section end */
.news-img-wrapper .date {
  font-size: 0.8rem;
}

/* NEWS AND INSIGHTS */

.news-insights-section .news-insight-tab button {
  font-size: 0.8rem;
  font-family: "Metropolis-Medium";
  height: fit-content;
  width: 160px;
  font-weight: 500;

  text-transform: uppercase;

  border-radius: 50px;
  font-family: "Metropolis";
  margin-bottom: 1rem;
}

.news-insights-section .news-insight-tab button:active {
  border: none !important;
}

.news-insights-section .latest-news .image-wrapper {
  height: 400px;
  width: 100%;
}

.news-img-wrapper .date {
  font-size: 0.8rem;
}

.news-img-wrapper span {
  font-size: 0.8rem;
}

.news-img-wrapper span {
  font-size: 0.8rem;
}

/* Detailed news section */

.detailednews-section {
  padding-bottom: 2rem !important;
}

.detailednews-section h3 {
  font-size: 1.3rem;
  letter-spacing: 6px;
}

.detailednews-section p {
  font-size: 1.4rem;
  color: var(--quaternary);
}

.detailednews-section .image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.detailednews-section .latest-news-wrapper {
  padding-left: 3rem;
}

.detailednews-section .latest-news-wrapper .title {
  background-color: var(--primary);
  color: var(--tertiary);
  font-size: 1.2rem;
}

.detailednews-section .latest-news-wrapper .image-wrapper {
  width: 100%;
  height: 200px;
}

.detailednews-section .latest-news-wrapper h3 {
  font-size: 1rem;
  letter-spacing: 0;
}

.detailednews-section .latest-news-wrapper p {
  font-size: 1rem;
  letter-spacing: 0;
}

.detailednews-section .social-icons ul li {
  border: 2px solid var(--secondary);
  cursor: pointer;
}

.detailednews-section li {
  font-size: 1.4rem;
  color: var(--quaternary);
}

.main-header .dropdown-menu .dropdown-item {
  background-color: var(--tertiary);
  color: var(--primary);
}

.main-header .dropdown-menu .dropdown-item:hover {
  background-color: var(--primary);
  color: #fff;
}
/* Hover dropdown menu open */
.main-header .nav-item.dropdown-center:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  animation: fadeIn 0.2s ease-in-out;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header .dropdown-menu a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  display: block;
}
.main-header .dropdown-menu a {
  transition: all 0.5s;
}

.main-header .dropdown-menu a h5 {
  font-size: 1rem;
}

.main-header .dropdown-menu a:hover {
  background-color: #f4f4f4;
}

.main-header .dropdown-menu button {
  padding-left: 2rem !important;
  padding-right: 0;
}

@media only screen and (max-width: 992px) {
  .main-header .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .main-header .dropdown-menu .dropdown-item-anim {
    max-width: 18.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .main-header .dropdown-menu {
    position: absolute;
    min-width: 14.1rem;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    background-color: transparent;
  }

  .main-header .dropdown-menu .dropdown-container .separator {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .main-header .dropdown-menu .dropdown-container .separator:hover {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .main-header .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .main-header .dropdown:hover .dropdown-menu .separator {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-header .dropdown:hover .dropdown-menu h5 {
    font-size: 1rem;
  }

  .main-header .dropdown-menu.show {
    display: flex;
  }
}

.main-header .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.fade-img {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.fade-img.fade-out {
  opacity: 0;
}

.main-header .dropdown-toggle {
  font-size: unset;
  font-family: unset;
  height: unset;
  width: fit-content;
  font-weight: unset;
}

.main-header .dropdown-toggle::after {
  content: unset;
}

@media (max-width: 991px) and (min-width: 772px) {
  .slick-carousel {
    margin: 0 -30rem;
    /* Controls how much side cards are visible */
  }
}

@media (max-width: 768px) {
  .slick-carousel {
    margin: 0 !important;
  }

  .slick-carousel .slick-slide > div {
    padding: 0 10px 30px;
  }

  .expertise-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .slick-carousel .slick-dots button:before {
    font-size: 1rem;
  }

  .slick-carousel .slick-dots li.slick-active button:before {
    color: var(--primary);
  }
}

/* slick news card */

.news-slide .news-card {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.slick-slide {
  display: flex;
  height: auto;
}

@media (min-width: 992px) {
  .news-slide .news-card {
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .news-slide .news-card {
    width: 33.3333%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .news-slide .news-card {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .news-slide .news-card {
    width: 100%;
  }
}

.single-opening-page .job-single-header,
.single-opening-page .job-details,
.single-opening-page .job-description {
  font-family: "Metropolis";
  font-size: 14px;
  color: black;
  line-height: 20px;
}

.apply-modal-content {
  background: #fff;
  padding: 30px 100px;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

.apply-modal-content h3 {
  font-family: "Metropolis";
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .apply-modal-content {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
  }
}

/*New home banner*/
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

       .hero-slider .slides {
            height: 100%;
            position: relative;
        }

        .hero-slider .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.3s ease;
        }

        .hero-slider .hero-slide.active {
            opacity: 1;
            z-index: 5;
        }

        /* Background zoom */
       .hero-slider .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 7s ease-in-out;
        }

        .hero-slider .hero-slide.active img.zoom {
            transform: scale(1.4);
        }

        /* uhm-overlay */
       .hero-slider  .uhm-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.2),
                    rgba(0, 0, 0, 0.75));
            z-index: 2;
        }

        /* uhm-content */
        .hero-slider .uhm-content {
            position: absolute;
            bottom: 20%;
            
            max-width: 550px;
            z-index: 3;
            /*opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s ease;*/
        }

        .hero-slider .hero-slide.active .uhm-content {
            opacity: 1;
            transform: translateY(0);
        }

       .hero-slider .uhm-content h1 {
            font-size: 3rem;
            font-weight: 700;
          padding-bottom: 0.7rem;
          letter-spacing: 0;
          color:#fff;
        }

      

       .hero-slider .uhm-content p {
            font-size: 1.3rem;
            font-family: "Metropolis-Thin";
            letter-spacing: 0;
            color:#fff;
        }

        @media(max-width:768px) {
           .hero-slider .uhm-content h1 {
                font-size: 2.4rem;
            }

           .hero-slider .uhm-content p {
                font-size: 1rem;
            }
        }


       .hero-slider .hero-slide.active img.zoom {
            transform: scale(1.5);
        }

.logo-width93 {

    max-width: 91px;
    min-width: 91px;
  }
  .team-custom-location{
    background-color: rgba(0, 0, 0, 0.4);backdrop-filter: blur(12px);-webkit-backdrop-filter: blur(12px);
  }
  .team-custom-location span{
    font-size: 0.8rem; letter-spacing: 0;
  }