/*  
  -------------------------------------------
  -----      CSS for the font used      -----
  -------------------------------------------
*/

@import url('./font/inter.css');

:root {
  color-scheme: light;
}

body {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}

p {
  line-height: 1.6 1vmin;
  /* Recommended for readability */
}

[class^="number-slide"],
[class*=" number-slide"] {
  background: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  font-weight: 500;
  height: 300px;
  max-height: 100vh;
}

.number-slide1 {
  background: rgb(64, 175, 255);
  background: linear-gradient(128deg,
      rgba(64, 175, 255, 1) 0%,
      rgba(63, 97, 255, 1) 100%);
}

.number-slide2 {
  background: rgb(255, 75, 64);
  background: linear-gradient(128deg,
      rgba(255, 154, 63, 1) 0%,
      rgba(255, 75, 64, 1) 100%);
}

.number-slide3 {
  background: rgb(182, 255, 64);
  background: linear-gradient(128deg,
      rgba(182, 255, 64, 1) 0%,
      rgba(63, 255, 71, 1) 100%);
  background: linear-gradient(128deg,
      rgba(189, 255, 83, 1) 0%,
      rgba(43, 250, 82, 1) 100%);
}

.number-slide4 {
  background: rgb(64, 255, 242);
  background: linear-gradient(128deg,
      rgba(64, 255, 242, 1) 0%,
      rgba(63, 188, 255, 1) 100%);
}

.number-slide5 {
  background: rgb(255, 64, 156);
  background: linear-gradient(128deg,
      rgba(255, 64, 156, 1) 0%,
      rgba(255, 63, 63, 1) 100%);
}

.number-slide6 {
  background: rgb(64, 76, 255);
  background: linear-gradient(128deg,
      rgba(64, 76, 255, 1) 0%,
      rgba(174, 63, 255, 1) 100%);
}

.navigation-wrapper {
  position: relative;
  width: 100%;
  text-align: center;
}

.dots {
  display: flex;
  padding: 10px 0;
  justify-content: center;
}

.dot {
  border: none;
  width: 10px;
  height: 10px;
  background: #c5c5c5;
  border-radius: 50%;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}

.dot:focus {
  outline: none;
}

.dot.active {
  background: #000;
}

.arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  fill: #fff;
  cursor: pointer;
  z-index: +10;
}

.arrow--left {
  left: -10%;
}

.arrow--right {
  left: auto;
  right: -10%;
}

.arrow--disabled {
  fill: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background: transparent !important;
}

.slide-image {
  border-radius: 0 !important;
}

/*  
  ------------------------------------------- 
  -----      CSS for the preloader      -----
  -------------------------------------------
*/

.loader-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  background-color: rgba(var(--bs-body-bg-rgb), 1) !important;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  z-index: 2000 !important;
}



/*  
  -------------------------------------------------------------------------------- 
  -----      CSS for the default styles for both directions RTL and LTR      -----
  --------------------------------------------------------------------------------
*/

.left-to-right {
  display: none !important;
}

.right-to-left {
  display: none !important;
}

[dir="ltr"] .left-to-right {
  display: inline !important;
}

[dir="rtl"] .right-to-left {
  display: inline !important;
}

[dir="rtl"] .rtl-flip {
  transform: scaleX(-1) !important;
}

[dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
  transform: scaleX(-1);
}



/*  
  -------------------------------------------  
  -----      CSS for the AOS's RTL      -----
  -------------------------------------------
*/

[dir="rtl"] [data-aos=fade-left] {
  transform: translate3d(-100px, 0, 0);
}

[dir="rtl"] [data-aos=fade-right] {
  transform: translate3d(100px, 0, 0);
}

[dir="rtl"] [data-aos=fade-up-left] {
  transform: translate3d(-100px, 100px, 0);
}

[dir="rtl"] [data-aos=fade-up-right] {
  transform: translate3d(100px, 100px, 0);
}

[dir="rtl"] [data-aos=fade-down-left] {
  transform: translate3d(-100px, -100px, 0);
}

[dir="rtl"] [data-aos=fade-down-right] {
  transform: translate3d(100px, -100px, 0);
}

[dir="rtl"] [data-aos=flip-right] {
  transform: perspective(2500px) rotateY(-100deg);
}

[dir="rtl"] [data-aos=flip-left] {
  transform: perspective(2500px) rotateY(100deg);
}

[dir="rtl"] [data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[dir="rtl"] [data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[dir="rtl"] [data-aos=slide-left] {
  transform: translate3d(-100%, 0, 0);
}

[dir="rtl"] [data-aos=slide-right] {
  transform: translate3d(100%, 0, 0);
}

[dir="rtl"] [data-aos=zoom-in-right] {
  transform: translate3d(100px, 0, 0) scale(.6);
}

[dir="rtl"] [data-aos=zoom-in-left] {
  transform: translate3d(-100px, 0, 0) scale(.6);
}

[dir="rtl"] [data-aos=zoom-out-right] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[dir="rtl"] [data-aos=zoom-out-left] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}





/*  
  ----------------------------------------------------  
  -----      CSS for the button back to top      -----
  ----------------------------------------------------
*/

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  display: none;
  z-index: 10;
}

[dir="ltr"] .btn-back-to-top {
  right: 20px;
}

[dir="rtl"] .btn-back-to-top {
  left: 20px;
}



/*  
  ------------------------------------------------
  -----      CSS for the top navigation      -----
  ------------------------------------------------
*/

.navigation {
  z-index: 1030;
}



/*  
  -----------------------------------------------------  
  -----      CSS for the pulsing play button      -----
  -----------------------------------------------------
*/

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  box-sizing: content-box;
  display: block;
  width: calc(32px + 30px);
  height: calc(44px + 30px);
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}


[dir="ltr"] .video-play-button {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

[dir="rtl"] .video-play-button {
  right: 50%;
  transform: translateX(50%) translateY(-50%);
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(65px + 30px);
  height: calc(65px + 30px);
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulseBorder 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(50px + 30px);
  height: calc(50px + 30px);
  background: var(--bs-primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: calc(16px + 5px) solid white;
  border-top: calc(11px + 5px) solid transparent;
  border-bottom: calc(11px + 5px) solid transparent;
}


@keyframes pulseBorder {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

li.nav-item a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.7px;
}

li.nav-item.active {
  width: fit-content;
  /* Ensures the element is just wide enough for its content */
  position: relative;
  /* Positions the pseudo-element relative to the text */
}

li.nav-item.active::after {
  content: "";
  /* Creates the pseudo-element */
  display: block;
  /* Makes the pseudo-element behave like a block-level element */
  width: 100%;
  /* Sets the width of the bottom border */
  height: 3px;
  /* Thickness of the border */
  background-color: #D5B086;
  /* Color of the border */
  margin: 0 auto;
  /* Centers the border */
  position: absolute;
  /* Positions it relative to the parent element */
  bottom: -5px;
  /* Adjusts the vertical position */
  left: 0;
  /* Centers the border within the parent */
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  background: #ffffff33;
  border-radius: 12px;
  padding: 2px;
  width: 120px;
  margin: 0 auto;
  height: 45px;
}

.lang-btn {
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.7px;
  height: 45px;
}

.lang-btn.active {
  background-color: #D5B086;
  color: white;
}

/* header hero section */

header.scrolled {
  background-color: #0C3553;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.circle-img {
  animation: rotate 6s linear infinite !important;
}

.circle-arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}


.hero-rotate {
  width: 160px;
  display: block;
  margin: auto;
  position: relative;
}

.hero-section {
  height: 960px;
  position: relative;
  background:
    repeating-linear-gradient(to right,
      rgba(255, 255, 255, 0.1) 0px,
      rgba(255, 255, 255, 0.1) 0px,
      transparent 0.5px,
      transparent 170px),
    linear-gradient(to top, transparent 0%, black 150%);
}

.hero-heading {
  font-size: 58px;
  font-weight: 400;
  line-height: 100px;
}

.hero-heading-index {
  font-size: 78px;
  font-weight: 400;
  line-height: 100px;
}

.offcanvas {
  background-color: #0C3553 !important;
}

.top-overlay {
  background: linear-gradient(to top, transparent -120%, black 120%);
  min-height: 590px;
  height: auto;
}

.top-overlay-project {
  background: linear-gradient(to top, transparent 0%, black 120%);
  min-height: 590px;
  height: auto;
}

.top-overlay-contact {
  background: linear-gradient(to top, transparent -120%, #0000008f 120%);
  min-height: 590px;
  height: auto;
}

/* footer section */
.footer-bg-right {
  background-color: #0C3553;
  background-image: url('../img/icons/union.svg');
  background-position: right;
  background-repeat: no-repeat;
}

.footer-bg-left {
  background-color: #0C3553;
  background-image: url('../img/icons/union.svg');
  background-position: left;
  background-repeat: no-repeat;
}

.footer-menu {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-right: 20px;
}

.hr-line {

  img {
    width: 90%;
  }
}

/* At Takween section */

.text-heading {
  color: var(--bs-primary);
  font-size: 24px !important;
  font-weight: 700 !important;
}

.text-heading-more {
  color: var(--bs-primary);
  font-size: 20px !important;
  font-weight: 600 !important;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.text-heading-know-more {
  color: var(--bs-primary);
  font-size: 18px !important;
  font-weight: 500 !important;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.text-title {
  color: var(--bs-secondary);
  font-size: 40px !important;
  font-weight: 700 !important;
}

.text-title-white {
  color: var(--bs-white) !important;
  font-size: 40px !important;
  font-weight: 700 !important;
}

.text-desc-white {
  color: var(--bs-white);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

.circle-primary {
  height: 173px;
  width: 173px;
  background: var(--bs-primary);
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.circle-secondary {
  height: 173px;
  width: 173px;
  background: var(--bs-secondary);
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* Live section */

.bg-1 {
  background-image: url(../img/bg/Upper_img.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.bg-2 {
  background-image: url(../img/bg/bg_app.svg);
  background-repeat: no-repeat;
  background-size: 100%;

}

.bg-live {
  background:
    linear-gradient(to top, transparent 0%, #0000008f 200%),
    url('../img/about/live-image.jpg');
  background-size: cover;
  /* Ensures the background image covers the entire container */
  background-position: center;
  /* Centers the background image */
  height: 880px;
  width: 100% !important;
  /* width: 1440px; */
}

.text-heading-live {
  color: var(--bs-primary);
  font-size: 36px !important;
  font-weight: 700 !important;
}

.live-data {
  background: #00000099;
  padding: 20px;
  border-bottom: 10px solid var(--bs-primary);
  min-height: 410px !important;
}

.live-title {
  color: var(--bs-white);
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 24px;
}

.live-desc {
  color: var(--bs-white);
  font-size: 16px !important;
  font-weight: 400 !important;
}

/* projects section */

.keen-slider__slide {
  /* border-radius: 24px; */
  height: 470px;
  width: 537px;

  .project-image {
    /* border-radius: 24px; */
    /* height: 100%; */
    width: 100%;
  }
}

  .big-slide{
  height: 420px !important;
  width: 650px !important;
  }


.arrow-button {
  color: #D5B086;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.arrow-button.left {}

.arrow-button.right {}

.arrow-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #0C3553;
}

/* Base styles for project images */
.project-image {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

/* Coming Soon styles */
.blur-image {
  filter: blur(4px);
  opacity: 0.6;
  border-radius: 24px;
}

.coming-soon-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  height: 100%;
  width: 100%;
  border: 1px solid #c9c9c94f;
}

.coming-soon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0C355380;
  padding: 10px 20px;
  height: 76px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  /* Vertical centering */
  justify-content: center;
  /* Horizontal centering */

}


/* Regular layout styles */
.regular-wrapper {
  position: relative;
}


.title-overlay-long {
  height: 175px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgb(0 0 0), transparent);
  color: #fff;
  padding: 10px 15px;
  /* border-radius: 24px; */
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  /* display: flex; */
  align-items: center;
  /* Vertical centering */
  justify-content: left;
  /* Horizontal centering */
}

.title-overlay-comming-soon {
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgb(0 0 0), transparent);
  color: #fff;
  padding: 10px 15px;
  /* border-radius: 24px; */
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  /* display: flex; */
  align-items: left;
  /* Vertical centering */
  justify-content: left;
  /* Horizontal centering */
}


.title-overlay {
  height: 75px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgb(0 0 0), transparent);
  color: #fff;
  padding: 10px 15px;
  /* border-radius: 24px; */
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  /* display: flex; */
  align-items: left;
  /* Vertical centering */
  justify-content: left;
  /* Horizontal centering */
}


.project-title {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  border-radius: 24px;
}

.coming-soon-text {
  font-size: 22px;
  font-weight: 400;
}

/* location section */
.location-left {
  width: 40%;
  float: left;
}

.location-right {
  width: 60%;
  float: left;
}

/* chapter section */
.chapter-left {
  width: 70%;
  float: left;
}

.chapter-right {
  width: 30%;
  float: left;
}

.chapter-heading-large {
  color: #393939 !important;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.chapter-heading {
  color: #393939 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.chapter-desc {
  color: #393939 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  letter-spacing: 0;
}

.chapter-heading-1 {
  color: #D5B086;
  font-size: 24px;
  font-weight: 400;
  line-height: 25px;
}

.chapter-desc-1 {
  color: #393939;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}

.chapter-desc-white {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

/* contact section */

.bg-contact {
  background: #3939398f;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff4d;
  border-radius: 12px;
}

.contact-title {
  font-size: 34px;
  font-weight: 500;
  margin: 0;
  margin-top: 20px !important;
  border-radius: 24px;
  color: white;
}

.contact-label {
  color: white;
}


/* buttons section */
.btn-white-contact {
  background: var(--bs-white);
  margin: 0px 20px;
  color: var(--bs-secondary);
  text-transform: uppercase;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  /* border: 1px solid #ffffff; */
  letter-spacing: 0.7px;
  height: 45px;
  line-height: 1;
}

/* buttons section */
.btn-white {
  background: var(--bs-white);
  margin: 0px 20px;
  color: var(--bs-secondary);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  padding: 15px 20px;
  /* border: 1px solid #ffffff; */
}

.btn-white-unit {
  background: var(--bs-white);
  margin: 0px 20px;
  color: var(--bs-secondary);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  padding: 15px 20px;
  height: 56px;
  width: 229px;
  /* border: 1px solid #ffffff; */
}

.btn-tab {
  font-size: 24px;
  font-weight: 700;
  border: none;
  padding: 15px 20px;
  letter-spacing: 1px;

}

.btn-white-outline {
  background: var(--bs-white);
  color: var(--bs-secondary);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 10px;
  border: 1px solid #0c355317;
  position: absolute;
  right: 5%;
  width: 170px;
}

.btn-white-outline-rtl {
  background: var(--bs-white);
  color: var(--bs-secondary);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 10px;
  border: 1px solid #0c355317;
  position: absolute;
  left: 5%;
  width: 170px;
}

.btn-blue {
  background: var(--bs-secondary);
  margin: 0px 20px;
  color: var(--bs-white);
  text-transform: uppercase;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  position: absolute;
  top: 0;
  right: 0;
  letter-spacing: 0.05em;
}

.btn-white-reg {
  background: var(--bs-white);
  color: var(--bs-secondary);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  position: absolute;
  top: 70%;
  /* Center from top */
  left: 50%;
  /* Center from left */
  transform: translate(-50%, -50%);
  /* Adjust position to be exactly centered */
}

.btn-white-reg:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.btn-transparent-reg {
  background: transparent;
  color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #FFFFFF !important;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  /* position: absolute;
  top: 70%; */
  width: 100%;
  /* Center from top */
  /* left: 50%; */
  /* Center from left */
  /* transform: translate(-50%, -50%); */
  /* Adjust position to be exactly centered */
}

.btn-view-details {
  background: #D5B086;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  /* position: absolute;
  top: 70%; */
  width: 100%;
  /* Center from top */
  /* left: 50%; */
  /* Center from left */
  /* transform: translate(-50%, -50%); */
  /* Adjust position to be exactly centered */
}

.btn-blue-outline {
  background: var(--bs-secondary);
  color: var(--bs-white);
  text-transform: uppercase;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  right: 5%;
  position: absolute;
  bottom: 10%;
  width: 170px;
}

.btn-blue-outline-rtl {
  background: var(--bs-secondary);
  color: var(--bs-white);
  text-transform: uppercase;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  left: 5%;
  position: absolute;
  bottom: 10%;
  width: 170px;
}

.btn-red {
  background: #FF361C;
  margin: 0px 20px;
  color: var(--bs-white);
  text-transform: uppercase;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.btn-white:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.btn-submit {
  background: var(--bs-white);
  margin: 0px 20px;
  color: var(--bs-secondary);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 15px 35px;
}

.btn-submit:hover {
  border: 1px solid var(--bs-white);

}

.footer-text {
  color: #ffffff6b !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.lr-border {
  margin: 0px 25px;
  border-right: 1px solid #00000026;
  border-left: 1px solid #00000026;
}

.about-section-3 {
  height: 453px;
  position: relative;
  padding: 0;
}

.about-img-right {
  position: absolute;
  bottom: -60px;
  right: 0;
}

.about-img-left {
  position: absolute;
  bottom: -60px;
  left: 0;
}

/* project details section */

.bg-body-gray-light {
  background-color: #0c355324;
}

.details-heading {
  color: #393939 !important;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.left-info {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  height: 312px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;

  /* Firefox-specific scrollbar styling */
  scrollbar-width: thin;
  /* Options: auto | thin | none */
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  /* thumb | track */
}

/* Chrome, Edge, Safari */
.left-info::-webkit-scrollbar {
  width: 6px;
}

.left-info::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.left-info::-webkit-scrollbar-track {
  background: transparent;
}


.align-left-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.text-left {
  font-size: 16px;
  font-weight: 700;
  color: #0C3553;
}

.text-right {
  font-size: 16px;
  font-weight: 500;
  color: #0c35536b;
}

.map-img {
  height: 250px;
  width: 100%;
  border-radius: 12px;
}

.map-img-marker {
  position: absolute;
  top: 40%;
  left: 45%;
}

.map-img-arrow {
  position: absolute;
  bottom: 8%;
  right: 8%;
  z-index: +1;
  cursor: pointer;
}

.map-img-arrow-full {
  position: absolute;
  bottom: 25%;
  right: 4%;
  z-index: +1;
  cursor: pointer;
}

.table-info {
  background: #ffffff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* padding: 20px 0px 0px !important; */
  height: auto;
  width: 100%;
  border: 1px solid #0c355317;
}

.table-title {
  color: #393939 !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #0c355324 !important;
}

.video-info {
  background: #ffffff;
  border-radius: 20px;
  /* padding: 20px; */
  height: auto;
  width: 100%;
  border: 1px solid #0c355317;
}

.general-info {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  height: auto;
  width: 100%;
  border: 1px solid #0c355317;
  min-height: 312px;
}

.general-title {
  font-size: 17px;
  font-weight: 500;
  color: #0C3553 !important;
}

.general-desc {
  font-size: 14px;
  font-weight: 500;
  color: #0c35537d !important;
}

th {
  text-align: center !important;
  background-color: #0c355324 !important;
  color: #0c35539e !important;
  font-size: 14px !important;
}

th {
  text-align: center !important;
  color: #0C3553 !important;
  font-size: 14px !important;
}

tr {
  border-bottom: 1px solid #0c355324 !important;
}

tr:last-child {
  border-bottom: none !important;
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

/* Add border radius to the bottom corners */
tr:last-child td:first-child {
  border-bottom-left-radius: 12px !important;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 12px !important;
}

td {
  padding: 8px 20px !important;
}

.td-title {
  color: #0c355382;
}

.td-desc {
  color: #0C3553;
  font-weight: bold;
}

.slider-bg {
  background-color: #0C3553;
  background-image: url(../img/icons/union.svg);
  background-position: top-left;
  background-repeat: no-repeat;
  height: auto;
}

.service-div {
  height: 190px;
  width: 100%;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 20px;
  color: #0C3553;
}

.price-info {
  background: #ffffff;
  border-radius: 20px;
  height: auto;
  width: 100%;
  border: 1px solid #0c355317;
  padding: 20px 20px 10px;
}

.price-title {
  color: #0C3553;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.price-number {
  color: #D5B086;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;

}

.price-desc {
  color: #0c355394;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.price-text {
  color: #0c355394;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.number-text {
  color: #0C3553;
  font-size: 19px;
  font-weight: 700;
  line-height: 21px;
}

.note-info {
  border-radius: 20px;
  height: auto;
  width: 100%;
  padding: 15px 0px 1px 22px;
}

.book-modal-title {
  color: #393939 !important;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

.book-modal-desc {
  color: #0c355363;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.page-heading {
  line-height: 70px;
  font-size: 48px;
  letter-spacing: 2px;
}

.page-desc {
  font-size: 18px;
}

.img-slide {
  object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

.no-click {
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width : 480px) {


  .btn-white-reg {
    background: var(--bs-white);
    color: var(--bs-secondary);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    padding: 15px 20px;
    position: absolute;
    top: 70%;
    /* Center from top */
    left: 50%;
    /* Center from left */
    transform: translate(-50%, -50%);
    /* Adjust position to be exactly centered */
  }


  .hero-heading-index {
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
  }

  .modal-content-book {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    margin: 0 auto;
    padding: 25px;
  }

  .pagination_prev_btn {
    width: 82px;
    height: 35px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: var(--primary);
  }

  .pagination_next_btn {
    width: 82px;
    height: 35px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: #fff;
    margin-left: 10px;
  }

  .video-thumb {
    width: 100%;
    height: 312px;
    border-radius: 20px;
  }

  .w-70 {
    width: 70px;
  }

  .text-btn {
    color: #393939 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    font-family: 'Lato', sans-serif !important;
  }

  .border-btn {
    --bs-border-opacity: 1;
    border-color: #D5B086;
  }

  .slide-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* 0.5);
    padding-left: calc(var(--bs-gutter-x)* 0.5);
    margin-left: auto;
  }

  .slide-container-rtl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* 0.5);
    padding-left: calc(var(--bs-gutter-x)* 0.5);
    margin-right: auto;
    margin-left: 0;
  }

  .bg-2 {
    background-image: url(../img/bg/bg_app.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .gallery-padding {
    padding-top: 50px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }


}

.rotate-180 {
  transform: rotate(180deg);
}

.ripple-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.ripple-container::before {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(211, 147, 84, 0.3);
  /* adjust color to match */
  position: absolute;
  top: -30px;
  left: 0;
  animation: ripplePulse 2s infinite ease-out;
}

.ripple-container-left::before {
  position: absolute;
  left: 80px;
}

.ripple-container-right::before {
  position: absolute;
  right: 80px;
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.cursor-auto {
  cursor: auto !important;
  border: none;
}

.nearby-landmarks-table {
  max-height: 270px;
  /* Set your desired scroll height */
  overflow-y: auto;
  /* border: 1px solid #ddd; */
}

.nearby-landmarks-table table {
  width: 100%;
  border-collapse: collapse;
}

.nearby-landmarks-table thead th {
  position: sticky;
  top: 0;
  background: #f8f8f8;
  z-index: 1 !important;
  text-align: left !important;
  padding: 8px;
  /* border-bottom: 1px solid #ccc; */
}

.nearby-landmarks-table tbody td {
  padding: 8px;
  /* border-bottom: 1px solid #eee; */
}

.nearby-landmarks-table tbody tr {
  border-bottom: 1px solid #EFF0F2;
}

.ls-0 {
  letter-spacing: 0 !important;
}

.landmark-image {
  border-radius: 8px;
}

.numbers-section {
  .numbers-card-1 {
    min-height: 172px;
    margin-bottom: 60px;
    margin-top: 60px;

    .border-bottom {
      border-bottom: 2px solid #D9D9D9 !important;
      min-height: 172px;
    }
  }

  .numbers-card-2 {
    min-height: 172px;
    margin-bottom: 60px;
  }

  .number-title {
    font-size: 40px;
    font-weight: 600;
    color: #D5B086;
    margin-top: 20px;
  }

  .number-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #393939;
  }

}

.partners-section {

  .slide-height {
    height: 80px !important;
  }
}

.tab-container {
  width: 500px;
  margin: 0 auto;
  border: 1px solid #80808040;
  border-radius: 50px;
  height: 62px;


  .btn-tab-active {
    font-size: 20px;
    font-weight: 700;
    border: none;
    padding: 15px 20px;
    letter-spacing: 1px;
    background: #0C3553;
    color: white;
    width: 246px;
    height: 54px;
    line-height: 1;
    border-radius: 50px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .btn-tab {
    font-size: 20px;
    font-weight: 700;
    border: none;
    padding: 15px 20px;
    letter-spacing: 1px;
    background: transparent;
    color: #0C3553;
    width: 246px;
    height: 54px;
    line-height: 1;
    border-radius: 50px;
    margin-left: 3px;
    margin-right: 3px;
  }

}

.w-15 {
  width: 15%;
  padding-top: 10px !important;
}

.service-info {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  /* Firefox-specific scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* Base slide (shared styles) */
.slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
  margin: auto;
  border-radius: 0;
  /* keep consistent */
}

/* Active slide */
.active-slide {
  transform: scale(1) translateY(0);
  -webkit-transform: scale(1) translateY(0);
  opacity: 1;
  z-index: 10;
}

/* Inactive slide */
.inactive-slide {
  transform: scale(0.75) translateY(1.5rem);
  /* same as scale-75 + translate-y-6 */
  -webkit-transform: scale(0.75) translateY(1.5rem);
  opacity: 0.5;
  z-index: 0;
  height: 300px !important;
  border-radius: unset;
  margin-top: 50px;
  margin: auto;
}


.gallery-padding {
  padding-top: 50px;
  padding-left: 140px;
  padding-right: 140px;
  min-height: 700px;

  .gallery-title {
    color: #D5B086;
    font-size: 40px;
    font-weight: 700;
  }
}