/*  
  -------------------------------------------
  -----      CSS for the font used      -----
  -------------------------------------------
*/

@import url('./font/inter.css');

body {
    font-family: 'Lato', sans-serif;
}

[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;
}

.arrow--left {
  left: 20%;
}

.arrow--right {
  left: auto;
  right: 20%;
}

.arrow--disabled {
  fill: rgba(255, 255, 255, 0.5);
}

.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: 400;
    color: white;
}

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: #0000007a;
    border-radius: 12px;
    padding: 2px;
    width: 120px;
    margin: 0 auto;
}

.lang-btn {
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  border:none;
}

.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;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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;
}

/* footer section */
  .footer-bg {
    background-color: #0C3553;
    background-image: url('../img/icons/union.svg');
    background-position: right;
    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: 20px !important;
    font-weight: 700 !important;
}

.text-heading-more{
    color: var(--bs-primary);
    font-size: 18px !important;
    font-weight: 400 !important;
    text-decoration: none;
    cursor: pointer;
}

.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.png);
    background-repeat: no-repeat;
    background-size: 100%;
 }

 .bg-2{
    background-image: url(../img/bg/bg_app.png);
    background-repeat: no-repeat;
    background-size: 100%;
 }
 
 .bg-live {
    background: 
      linear-gradient(to top, transparent 0%, black 200%), 
      url('../img/about/live-image.png');
    background-size: cover; /* Ensures the background image covers the entire container */
    background-position: center; /* Centers the background image */
    height: 830px;
    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%;
        }
    }


      .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 {
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 10px 15px;
    border-radius: 24px;
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
  }

  
  .project-title {
    font-size: 26px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    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: 400;
        line-height: 60px;
    }

    .chapter-heading{
        color: #393939 !important;
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
    }

    .chapter-desc{
        color: #393939 !important;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
    }

    .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;
    }

      /* contact section */ 

      .bg-contact{
        background: #3939398f;
        backdrop-filter: blur(10px);
        border: 1px solid #ffffff4d;
        border-radius: 12px;
      }

    .contact-title {
        font-size: 26px;
        font-weight: 500;
        margin: 0;
        border-radius: 24px;
        color: white;
    }

    .contact-label {
        color: white;
    }

    
  /* buttons section */ 
    .btn-white{
        background: var(--bs-white);
        margin: 0px 20px;
        color: var(--bs-secondary);
        text-transform: uppercase;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        border: none;
        padding: 15px 20px;
        border: 1px solid #ffffff;
    }

    .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-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;
    }

    .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-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: 38px;
        font-weight: 400;
        line-height: 36px;
      }

      .left-info{
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;
        height: 250px;
        width: 100%;
      }

      .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: 5%;
        right: 5%;
      }
 
      .table-info{
        background: #ffffff;
        border-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: 400;
        line-height: 36px;
        padding-left: 20px;
      }

      .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;
      }

      .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;
    } 

    .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: 18px;
      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;
    }

    @media (max-width : 480px) {
      .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: 350px;
        border-radius: 20px;
      }

      .w-70{
        width: 70px;
      }
      
  }