/**********/

#preloader {
  display: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0F3D29;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.preloader .progress-container {
  width: 300px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.preloader .progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--color-foreground);
}

.preloader .percentage {
  position: fixed;
  bottom: var(--margin);
  right: var(--margin);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 25rem;
  line-height: 0.8;
  color: var(--color-foreground);
  opacity: 0.1;
}

.preloader .text-container {
  height: 3em;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  width: 200px;
}

.preloader .loading-text {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--color-foreground);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  width: 100%;
  text-align: center;
}

.preloader .loading-text.initial {
  transform: translateY(0);
}

.preloader .loading-text.complete {
  transform: translateY(100%);
}

.preloader .loading-text .char {
  display: inline-block;
}

.preloader .content {
  padding: var(--margin);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-foreground);
  background: var(--color-background);
  visibility: hidden;
  z-index: 1;
}

.preloader .content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.preloader .content p {
  font-size: 1.2rem;
  overflow: hidden;
}

.preloader .content .char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/* Add these classes for the stagger animation */
.preloader .preloader-item {
  opacity: 1;
  transform: translateY(0);
}

/* end preloader */


.container {
  max-width: 1550px;
}

.navbar-collapse.show {
  position: absolute;
  top: 60px;
  width: 250px;
  right: 0;

  border-radius: 10px;
  padding: 10px 20px 20px 20px;
}

/********/
.text-bg-dark {
  background: #0F3D29 !important;
}

.navbar-toggler {
  background: #CFA338;
  background: linear-gradient(60deg, #BF953F 0%, #DDC57D 29.81%, #B38728 56.74%, #D7BE70 77.89%, #AA771C 100%);
  padding: 10px 12px;
}

/***/
.navbar-toggler lottie-player {
  width: 40px !important;
  height: 40px !important;
}



/*************/


/* Offcanvas animation */
.offcanvas {
  transition: transform 0.45s ease, opacity 0.45s ease;
  opacity: 0;
}

.offcanvas.show {
  opacity: 1;
}

/* Animate nav items */
.offcanvas-body .nav-item {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.offcanvas.show .nav-item {
  opacity: 1;
  transform: translateX(0);
}


.offcanvas .dropdown-menu.show {
  background: transparent;
  border: 0;

}


.dropdown-item {
  color: #fff;
}

.dropdown-item:hover, .navbar-nav .sub-menu a:hover {
  color: #CFA338;
  background: transparent;
}


  .nav-link, .navbar-nav a {
    font-size: 18px;
    color: #fff;
    padding: 0.5rem 0;
    display: block;
  }

  .nav-link:hover, .navbar-nav a:hover {
    color: #CFA338;
  }


.navbar-toggler:focus {
  box-shadow: none;
}

/* Stagger effect */
.offcanvas.show .nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.offcanvas.show .nav-item:nth-child(2) {
  transition-delay: 0.15s;
}

.offcanvas.show .nav-item:nth-child(3) {
  transition-delay: 0.2s;
}

.offcanvas.show .nav-item:nth-child(4) {
  transition-delay: 0.25s;
}

.offcanvas.show .nav-item:nth-child(5) {
  transition-delay: 0.3s;
}

.offcanvas.show .nav-item:nth-child(6) {
  transition-delay: 0.35s;
}



/* Contact block animation */
.offcanvas.show .mt-4 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease 0.45s;
}







/***/


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  min-height: 60px;
}

/* Final animation */
.hero-title.final {
  animation: finalReveal 1.2s ease forwards;
}

@keyframes finalReveal {
  from {
    opacity: 0;
    letter-spacing: 6px;
  }

  to {
    opacity: 1;
    letter-spacing: 0;
  }
}



.hero h5 {
  display: flex;
  align-items: center;
}

.linetitle {
  width: 100px;
  height: 2px;
  background: #CFA338;
  display: inline-block;
  margin: 0 20px;
}



/***Hero title animation css****/


.desc {
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  opacity: 0;
  transition: 1s 1.5s;
}

.ex1 {
  opacity: 0;
}

.ex1 span {
  position: relative;
  top: 10px;
  left: 10px;
  opacity: 0;
}

.ex2 {
  opacity: 0;
}

.ex2 span {
  position: relative;
  left: -10px;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/***Hero title animation css end****/

/*Buttons css**/


.btn-green {

  display: flex;
  padding: 12px 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;

  border-radius: 10px;
  background: #0F3D29;

  color: #CFA338;

  text-align: center;
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;


}

/* Separate animation class */
.btn-animate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

/* Hover lift */
.btn-animate:hover {
  transform: translateY(0px);
  color: #fff;

}

/* Arrow movement */
.btn-animate .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-animate:hover .arrow-icon {
  transform: translateX(8px);
}

/* Dashed border animation */
.btn-animate:hover .arrow-icon rect {
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.6s linear;
}

.btn-animate:hover .icon-fill {
  fill: #ffffff;
  /* new arrow color */
}

/* Smooth transitions */
.btn-animate .icon-fill,
.btn-animate .icon-border {
  transition: all 0.3s ease;
}

/* Hover color change */
.btn-animate:hover .icon-fill {
  fill: #fff;
  /* new arrow color */
}

.btn-animate:hover .icon-border {
  stroke: #fff;
  /* new border color */
}



.btn-white {
  display: flex;
  padding: 12px 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: #fff;
  color: #0F3D29;
  border: 1px solid #0F3D29;
  text-align: center;
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.btn-white.btn-animate:hover {
  transform: translateY(0px);
  color: #CFA338;
  /*background: #CFA338; */
}

.btn-white.btn-animate .icon-fill {
  fill: #0F3D29;
  /* new arrow color */
}

.btn-white.btn-animate .icon-border {
  stroke: #0F3D29;
  /* new border color */
}


.btn-white.btn-animate:hover .icon-fill {
  fill: #CFA338;
  /* new arrow color */
}

.btn-white.btn-animate:hover .icon-border {
  stroke: #CFA338;
  /* new border color */
}





.btn-gold {
  display: flex;
  padding: 12px 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: linear-gradient(60deg, #BF953F 0%, #DDC57D 29.81%, #B38728 56.74%, #D7BE70 77.89%, #AA771C 100%);
  color: #0F3D29;
  border: 1px solid #CFA338;
  text-align: center;
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
form .btn-gold {
  padding: 12px 50px 12px 15px;
  background-image:
        url("../img/button-arrow.svg"),
        linear-gradient(
            60deg,
            #BF953F 0%,
            #DDC57D 29.81%,
            #B38728 56.74%,
            #D7BE70 77.89%,
            #AA771C 100%
        );

    background-repeat: no-repeat, no-repeat;
    background-position: 93% center, center;
    background-size: 32px 32px, cover;
    transition: all 0.6s ease 0s;
}
form .btn-gold:hover{
  background-position: 97% center, center;
}
.php-email-form{
  position: relative;
}

.btn-gold.btn-animate:hover {
  transform: translateY(0px);
  color: #fff;
  /*background: #CFA338; */
}

.btn-gold.btn-animate .icon-fill {
  fill: #0F3D29;
  /* new arrow color */
}

.btn-gold.btn-animate .icon-border {
  stroke: #0F3D29;
  /* new border color */
}


.btn-gold.btn-animate:hover .icon-fill {
  fill: #fff;
  /* new arrow color */
}

.btn-gold.btn-animate:hover .icon-border {
  stroke: #fff;
  /* new border color */
}


/****Title Css******/

.title-wrap {
  margin-bottom: 20px;
}

.title-wrap h5 {
  color: #212121;

  font-family: Logam;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.title-wrap h2 {
  /*color: #001023;*/
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 48px;
  /* 114.286% */
  display: flex;
  align-items: center;

}


/***/

.about {
  background: url("../img/bg-pattren.png") 0 0 no-repeat;
  background-size: cover;
}

.about-img-wrap {
  position: relative;
  padding-right: 30px;
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;

}

.v-text-exp {
  color: #0F3D29;
  font-family: "Mona Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  position: absolute;
  right: -300px;
  transform: rotate(-90deg);
  bottom: 332px;
  width: auto;
}

.history-slider .swiper {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.history-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.history-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-slider .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.history-slider .swiper-pagination-bullet-active {
  color: #fff;
  background: #CFA338;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #a7e3c0;
  font-weight: bold;
}

.highlight-text {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #CFA338;
  border-bottom: 1px solid #CFA338;
  padding-bottom: 20px;
  font-size: 32px;
  font-style: italic;
  color: #CFA338;
}


.ovision .title-wrap h3 {
  color: #212121;
  border-bottom: 1px solid #0F3D29;
  margin-bottom: 20px;
  padding: 10px 0;
}



/*************/


.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 24px;
  gap: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-content {
  display: flex;
  flex-direction: column;
}



.service-text {
  display: flex;
  gap: 15px;
  margin-bottom: 0px;
  justify-content: start;
  align-items: center;
}

.service-number {
  font-size: 54px;
  font-weight: 700;
  color: #DFE7ED;
  /* gold */
}

.service-text h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.service-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.service-image img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

/* Smooth transitions */
.service-number,
.service-image img {
  transition: all 0.4s ease;
}

/* On card hover */
.service-card:hover .service-number {
  color: #d4a02a;
  /* change number color */
}

.service-card:hover .service-image img {
  transform: rotate(5deg);
}


/************Whychoose us******/


.chooseus {
  padding: 80px 0;
  position: relative;
}

.chooseus:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.chooseus .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.chooseus .container {
  position: relative;
  z-index: 3;
}

.chooseus h2 {
  color: #fff;
}

.chooseus h2 span,
.g-color {
  color: #CFA338;
}

.why-choose {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay */
.why-choose .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.icon-box-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #fff;
}

.icon-box-text h4 {

  color: #FFF;
  text-align: center;
  font-family: "Mona Sans";
  font-size: 18px;
  padding: 0 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 130% */
  letter-spacing: 0.2px;
}


.iconbox {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconbox img {
  max-width: 70px;
}


@media (min-width:1080px) {

  .chooseus {
    max-height: 750px;
  }

}

/***Partners*************/

.client .swiper {
  width: 100%;
  height: 100%;
}

.client .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.client .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #d4a02a;
  width: 44px;
  height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
}

.long-arrow {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a02a;
  /* arrow color */
}

.long-arrow::after {
  display: none;
  /* remove default swiper arrow */
}

.long-arrow svg {
  transition: transform 0.3s ease;
}

.long-arrow:hover svg {
  transform: translateX(6px);
}

/* Reverse hover for prev */
.prev-arrow:hover svg {
  transform: translateX(-6px);
}

.swiper-arrow-wrap {
  position: absolute;
  width: 180px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0F3D29;
  height: 50px;
}

.partner-swiper .swiper.partner-slider {
  padding-bottom: 70px;
}


/***Project Slider***/



.project-swiper .swiper-slide {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.project-swiper h3 {
  font-size: 26px;
  font-weight: 600;
}

.project-desc {
  margin-top: 20px;
}

.project-desc p {
  color: #212121;
}

.project-desc .col {
  border-left: 1px solid #aaa;
}

.project-desc .col:first-child {
  border: 0;
}

.project-desc h6 {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-desc .project-desc-items p {
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #212121;
}

.project-desc .project-desc-items {
  margin-top: 20px;
}




/***/

.ourwork-view {
  background: url("../img/pro1.jpg") 0 0 no-repeat;
  background-size: cover;
  position: relative;
}

.ourwork-view::after {
  background: rgba(0, 0, 0, 0.7) !important;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}

.project-view {
  padding-bottom: 48px;
}

.project-view .swiper-arrow-wrap {
  background: top;
  width: 100%;
}


.featured-project {
  position: relative;
  z-index: 1;
}

.featured-project .project-desc h3 {
  color: #fff;
}

.featured-project .project-desc .project-desc-items h6 {
  color: #CFA338;
  text-transform: uppercase;
}

.featured-project .project-desc .project-desc-items p,
.featured-project .project-desc p {
  color: #fff;
}

.f-tag {
  background: #CFA338;
  padding: 10px 25px;
  font-size: 14px;
  text-transform: uppercase;
  color: #212121;
  display: inline-block;
  margin-bottom: 25px;
  border-radius: 50px;
}



/*********/

.blog-card {
  margin-bottom: 40px;
}

.blog-card-img {
  position: relative;
}

.blog-card-img .cat-blog {
  position: absolute;
  bottom: 0;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.blog-card-img .cat-blog span {
  background: linear-gradient(60deg, #BF953F 0%, #DDC57D 29.81%, #B38728 56.74%, #D7BE70 77.89%, #AA771C 100%);
  color: #212121;
  border-radius: 40px;
  padding: 3px 10px;
  font-size: 14px;
}

.blog-card h2 {
  font-size: 17px;
  font-weight: 600;
  color: #212121;
  line-height: 1.4;
  padding: 14px 0;
}

.blog-card .btn-white {
  width: 166px;
  display: inline-flex;
  border: 0;
  padding: 0;
  justify-content: start;
}


.newsletter-form input[type="email"] {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  width: 95%;
  margin-right: 12px;
  background: transparent;
  padding: 16px;
  color: #fff;
}

.foot-call-btn a {
  background: #CFA338;
  width: 100px;
  height: 100px;
  display: flex;
  border-radius: 90px;
  align-items: center;
  justify-content: center;
  color: #0F3D29;
  font-weight: 700;
}

.foot-call-btn a:hover {
  color: #fff;
}




.swiper.valueSwiper {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 0;
  margin-top: 40px;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.valueSwiper .swiper-slide {
  text-align: center;
  background: transparent;
  border-radius: 60px;
  color: #212121;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}



/*HSE Section**/

.hse-view {
  background: url("../img/hse.jpg") 0 0 no-repeat;
  background-size: cover;
  position: relative;
}

.hse-view::after {
  background: rgba(0, 0, 0, 0.7) !important;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}

.hse-view .container {
  position: relative;
}

.hse-view .card {
  padding: 15px;
}

.number-hse {
  font-size: 40px;
  font-weight: bold;
  color: #CFA338;
  display: block;
  margin-bottom: 7px;
}

.hse-title h4 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hse-img img {
  border-radius: 10px;
}

.goalbox {
  background: rgba(207, 163, 56, 0.3);
  padding: 10px;
  border-radius: 7px;
}

/****faq's***/


.bg-city-img {
  background: #E2E8ED url("../img/bg-img1.png") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.bg-dark-city-img {
  background: #0F3D29 url("../img/bg-img1.png") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}



.bg-patt-img {
  background: #fff url("../img/bg-pattren.png") center top no-repeat;
  background-size: cover;

}




/* Remove default arrow */
.faq-acc .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 22px;
  font-weight: 600;
  transform: none;
  color: #000;
}

/* When accordion is open */
.faq-acc .accordion-button:not(.collapsed)::after {
  content: "−";
  /* minus sign */
  font-size: 22px;
  font-weight: 600;
}

.faq-acc .accordion-button:not(.collapsed) {
  background-color: #0F3D29;
  color: #ffffff;
  box-shadow: none;
}

.faq-acc .accordion-button:not(.collapsed)::after {
  color: #ffffff;
}

.faq-acc .accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-acc .accordion-button.collapsed {
  background-color: #ffffff;
  color: #000000;
}

.faq-acc .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.faq-acc .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq-acc .accordion-button:focus-visible {
  outline: none;
}


/* faq left bar */

.contact-card {
  background-color: #0F3D29;
  min-height: 100%;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card h5::after {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  content: "";
  bottom: 13px;
  left: 0;
}

.contact-card h5 {
  display: block;
  padding-bottom: 25px;
  position: relative;
}

.bg-blur {
  position: relative;
  overflow: hidden;
}

/* Blur overlay */
.bg-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(8px);
  transform: scale(1.1);
  /* avoid edge cut */
  z-index: -1;
}

.glass-blur {
  background: rgba(15, 61, 41, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}




/****Team*****/

.ceo-img {
  border: 7px solid #fff;
}


/* Optional section background */
.team-section {}

/* Card wrapper */
.team-card {
  perspective: 1200px;
  height: 530px;
  /* adjust */
}

/* Flip container */
.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 700ms ease;
  border-radius: 18px;
}

/* Flip on hover */
.team-card:hover .team-card-inner {
  transform: rotateY(180deg);
}

/* Faces */
.team-card-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

/* Front image */
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-front .team-front-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
}

/* Back */
.team-card-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-image: url("card.jpg");
  /* same image behind */
  background-size: cover;
  background-position: center;
}

/* Black overlay on back */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 41, 0.75);
}

.team-back-content {
  position: relative;
  z-index: 1;
  padding: 26px 22px;
  max-width: 320px;
}

/* Social buttons */
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* Mobile: flip on tap feel + avoid hover issues */
@media (max-width: 576px) {
  .team-card {
    height: 380px;
  }
}


/***************/

.management-section {
  background: #eef1f5;
  max-height: 750px;
}




.management-section:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.management-section .bg-video {}

.management-section .container {
  position: relative;
  z-index: 3;
}



.management-section .container .row {
  background: #ddd;
  max-width: 800px;
  border-radius: 8px 8px 0 0;
}


.managment-title {
  font-size: 22px;
  margin-bottom: 30px;
}

/* Image styling */
.img-wrapper img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* Check list */
.management-list li {
  position: relative;
  padding-left: 34px;
  color: #212121;
  margin-bottom: 14px;
  font-weight: 500;
}

.management-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f2937;
  font-weight: 700;
}

/* Animations */
.animate-left,
.animate-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.animate-left {
  animation-name: slideLeft;
}

.animate-right {
  animation-name: slideRight;
  animation-delay: .2s;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}




.leadership-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 24px;
  gap: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.leadership-content {
  display: flex;
  flex-direction: column;
}


.leadership-text {
  display: flex;
  gap: 15px;
  margin-bottom: 0px;
  justify-content: start;
  align-items: center;
}

.leadership-number {
  font-size: 54px;
  font-weight: 700;
  color: #DFE7ED;
  /* gold */
}

.leadership-text h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.leadership-card:hover h3 {
  color: #CFA338;
}


.leadership-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}


.leadership-image img {}

.leadership-image {
  border: 1px solid #CFA338;
  padding: 16px;
  border-radius: 5px;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Smooth transitions */
.leadership-number,
.leadership-image img {
  transition: all 0.4s ease;
}

/* On card hover */
.leadership-card:hover .leadership-number {
  color: #d4a02a;
  /* change number color */
}

.leadership-card:hover .leadership-image img {
  transform: rotate(5deg);
}




/*******Contact form*******/

.contact-form {
  background: #0F3D29;
  position: relative;
}

.map-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.creative-map {
  position: relative;
  width: 100%;
  height: 660px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

/* Dark map effect */
.creative-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(.95) contrast(1.1);
  transition: transform .6s ease;
}

/* Subtle zoom on hover */
.creative-map:hover iframe {
  transform: scale(1.03);
}

/* Floating glass card */
.map-info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(207, 163, 56, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* Small badge */
.map-badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .15);
  margin-bottom: 8px;
}

/* Text */
.map-info p {
  font-size: 13px;
  line-height: 1.5;
  color: #e5e7eb;
}

/* Link */
.map-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px) {
  .creative-map {
    height: 380px;
  }

  .map-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: unset;
  }
}





/**********/

.contact-form-wrap .form-control {
  background: transparent;
  border-radius: 0;
  color: #fff;
  border-width: 0 0 1px 0;
}

.phone-group {
  align-items: flex-end;
}

.phone-code {
  max-width: 140px;
  background: #0F3D29;
  color: #ffff;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  padding-left: 0;
  box-shadow: none;
}

.phone-code option {
  background-color: #0d3f2e;
  color: #ffffff;
}

.phone-code:focus {
  border-bottom-color: rgba(255, 255, 255, .7);
}

.phone-input {
  border-left: 0 !important;
}


.contact-box .title-wrap {
  border-bottom: 1px dashed #CFA338;
  margin-bottom: 25px;
}

.contact-box .form-control,
.contact-box .form-select {
  border-bottom: 1px solid #fff;
}

.form-control:focus {
  box-shadow: none;
}

.form-control::placeholder {
  color: #ffffff;
  opacity: 0.3;
  /* Firefox */
}



/* Shared underline style */
.phone-group .form-select,
.phone-group .form-control {
  background: transparent !important;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, .45);
  border-radius: 0;
  color: #ffffff;
  box-shadow: none;
}

/* Hover + selected states (IMPORTANT FIX) */
.phone-group .form-select option:hover,
.phone-group .form-select option:focus,
.phone-group .form-select option:checked {
  background-color: #f1f5f9 !important;
  /* light gray */
  color: #111827 !important;
  /* dark text */
}

/* Dropdown options – force light bg + dark text */
.phone-group .form-select option {
  background-color: #ffffff !important;
  color: #111827 !important;
}

/* Remove default Bootstrap left border */
.phone-group .form-control {
  border-left: 0;
}

/* Firefox fix for selected option */
.phone-group .form-select option:checked {
  box-shadow: inset 0 0 0 9999px #f1f5f9;
}

/* Placeholder white */
.phone-group .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}






/**careers page****/

.job-wrap {
  display: block;
  border-bottom: 1px solid #CFA338;
  padding: 15px 0;
  margin-bottom: 10px;
}

.job-wrap .job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-wrap .job-row .job-type {
  background: #CFA338;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 7px 15px;
}

.job-wrap .job-row .job-title {
  max-width: 480px;
}

.job-wrap .job-row .job-title h3 {
  font-size: 18px;
  font-weight: bold;
}

.job-wrap .job-row .job-loc {
  font-size: 16px;
  font-weight: normal;
}

.job-wrap .job-row .job-apply a {
  background: #212121;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  font-weight: bold;
}

.job-wrap .job-row .job-apply a:hover {
  background: #212121;
  border-radius: 5px;
  color: #CFA338;
}


.carr-card {
  background: #0F3D29 url("../img/crr-bg.png") 0 0 no-repeat;
}

.e-icon {
  background: #CFA338;
  border-radius: 8px;
  padding: 15px 20px 15px 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.e-icon img {}





/***********/


.serSwiper.swiper {
  width: 100%;
  height: 100%;
  max-height: 750px;
}

.serSwiper .swiper-slide {
  text-align: left;
  font-size: 18px;
  min-height: 750px;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}

.serSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serSwiper .slide-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  max-width: 600px;
  padding: 30px;
  left: 15%;
  min-height: 450px;
  margin-left: 0;
}

.serSwiper .slide-content h5 {
  font-size: 18px;
  font-family: "Mona Sans", sans-serif;
}

.serSwiper .slide-content h2 {
  font-size: 30px;
}

.serSwiper .slide-content p {
  font-size: 16px;
}


/* Default hidden state */
.swiper-slide .animate-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* When slide is active */
.swiper-slide-active .animate-content {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: faster hide on exit */
.swiper-slide-prev .animate-content,
.swiper-slide-next .animate-content {
  opacity: 0;
  transform: translateY(0px);
}

.serSwiper .swiper-slide {
  transition-property: opacity !important;
}

.swiper-slide .slide-content {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}



.slide-bg1 {
  background: #0F3D29 url("../img/h-pro1.jpg") 0 0 no-repeat;
  background-size: cover;
}

.slide-bg2 {
  background: #0F3D29 url("../img/h-pro2.jpg") 0 0 no-repeat;
  background-size: cover;
}

.slide-bg3 {
  background: #0F3D29 url("../img/h-pro1.jpg") 0 0 no-repeat;
  background-size: cover;
}

.slide-bg4 {
  background: #0F3D29 url("../img/h-pro2.jpg") 0 0 no-repeat;
  background-size: cover;
}

.slide-bg5 {
  background: #0F3D29 url("../img/h-pro1.jpg") 0 0 no-repeat;
  background-size: cover;
}

.slide-bg6 {
  background: #0F3D29 url("../img/h-pro2.jpg") 0 0 no-repeat;
  background-size: cover;
}



.calltoaction {
  background: #0F3D29 url("../img/h-pro2.jpg") 0 0 no-repeat;
  background-size: cover;
  min-height: 550px;
  text-align: center;
}

.callto-action {
  width: 150px;
  display: flex;
  justify-content: space-around;
  align-self: center;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 6px;
}

.callto-action img {
  width: 18px;
}

/* Banner sizing similar to screenshot */
.cta-banner {
  min-height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background image (replace with your path) */
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../img/h-pro2.jpg");
  /* change this */
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

/* Typography */
.cta-title {
  font-weight: 500;
  color: #fff;
  letter-spacing: .08em;
  font-size: clamp(26px, 3.2vw, 44px);
  font-family: 'LogamRegular';
}

.cta-text {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .88);
}

/* Button styling */
.cta-btn {
  border-radius: 14px;
  padding: 10px 18px;
  border-width: 2px;
}

.cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
}




/********/

.service-list{ position: relative; background: url("../img/build-outline.png")  left center no-repeat; background-attachment: fixed;}

.service-list .container{  margin-bottom: 80px; clear: both;}


@media( max-width:767px){
.services-approch img{ width: 100%;}
}


.service-approach {
  background: linear-gradient(135deg, #0d3f2e 0%, #07271d 100%);
  position: relative;
  overflow: hidden;
}

.service-approach::before {
  content: "";
  position: absolute;
  inset: 0 0;
  width: 810px;
  height: auto;
  background: url("../img/build-outline-white.png") bottom left no-repeat;
  background-size: auto;
  background-size: contain;
}

.kicker {
  color: rgba(255, 255, 255, .85);
  letter-spacing: .14em;
  font-size: 13px;
}

/* Step cards */
.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(207, 163, 56, .35);
}

.step-no {
  min-width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0b2a1f;
  background: #cfa338;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

/* Reveal animation (on scroll) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .step-no {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}




/****************/

.project-card {

  border-radius: 22px;
  overflow: hidden;
  background: #0f2220;
  border: 0;
}

.project-hero {
  position: relative;
  height: 330px;
  background: #cfe7ff;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .35) 100%);
  pointer-events: none;
}

.chip {
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
}



.action-pill {
  background: #133f3b;
  border-radius: 14px;
  padding: 10px 10px;
  border: 1px solid rgba(255, 255, 255, .10);
}

.btn-soft {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  color: #e9f6f3;
  background: rgba(255, 255, 255, .06);
  font-weight: 600;
  padding: 10px 14px;
}

.btn-soft:hover {
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

.btn-whatsapp {
  background: #f6c743;
  color: #1a2a28;
  border: 0;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 14px;
}

.btn-whatsapp:hover {
  background: #f4bd2a;
  color: #111;
}

.meta-line {
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .78);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.project-loc {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.project-desc {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.specs {
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.specs span {
  white-space: nowrap;
}

.dot {
  opacity: .5;
}


/***************/
/****Property filter form***/


.filter-bar-wrap {
  background: #0f3f34;
  /* dark green */
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.filter-control {
  height: 54px;
  border-radius: 12px;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.filter-control:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .18);
}


.filter-control.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-color: #f3f6f5 !important;

  /* DARK ARROW */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;

  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px 10px !important;

  padding-right: 44px !important;
}

.search-icon-box {
  width: auto;
  height: auto;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.filter-bar-wrap .form-select,
.filter-bar-wrap .form-control {
  background: #f3f6f5;
}






.bg-white {
  background: rgba(255, 255, 255, 0.8);
  color: #0F3D29;
}

.bg-green {
  background: rgba(15, 61, 41, 0.7);
  color: #fff;
}

.bg-gold {
  background: rgba(207, 163, 56, 0.7);
  color: #0F3D29;
}





@media(max-width: 767px) {

  .hero h5 span.linetitle {
    display: none;
    
  }

.whycol .col {
  width: 50% !important;
  flex: auto;
  margin: 14px 0;
}
.whycol .col:first-child {
  display: none;
}

.whycol .icon-box-text{ border-right: 0; }


.chooseus h2 span.linetitle {
  display: none;
}


.footer-about{ margin-bottom: 30px;}


.job-wrap .job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

}



/******/
.investment-card {
  background: #e6ef5a;
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.investment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* Image */
.investment-img {
  flex: 0 0 45%;
  overflow: hidden;
}

.investment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.investment-card:hover .investment-img img {
  transform: scale(1.08);
}

/* Content */
.investment-content {
  flex: 0 0 55%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease;
}

.investment-card:hover .investment-content {
  transform: translateX(8px);
}

.investment-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.investment-content .line {
  width: 60px;
  height: 2px;
  background: #000;
  margin: 18px 0;
  display: block;
}

.investment-content p {
  font-size: 16px;
  color: #222;
  max-width: 420px;
}
.modal-body{
  padding: 0 !important;
}
.modal-body .close-button {
  position: absolute;
  right: 20px;
  top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .investment-card {
    flex-direction: column;
  }

  .investment-img,
  .investment-content {
    flex: 0 0 100%;
  }

  .investment-content {
    padding: 40px;
  }

  .investment-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
.header .cta-btn{
  display: none;
}
.header{
  padding: 0;
}
header > .container-fluid {
  justify-content: space-between;
}
.header .logo.me-auto {
  margin: 0 !important;
}
.hero h5{
  font-size: 20px;
}
.preloader .percentage{
  font-size: 14rem;
}
.v-text-exp{
  bottom: 226px;
  right: -210px;
  font-size: 16px;
}
.parents-logo img {
  width: 50%;
}
.hero-inner h5.fs-5 {
  font-size: 0.9rem !important;
}
body:not(.home) .service-card{
  flex-direction: column;
}
.sidebar {
  margin-bottom: 30px;
}
.service-image img{
  width: 100%;
  height: auto;
}
}