@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


:root {
    /* Colors variable */
    --black: rgb(0, 0, 0);
    --darker-blue: rgb(5, 5, 29);
    --dark-blue: rgb(12, 12, 70);
    --light-blue: rgb(13, 100, 176);
    --lighter-blue: rgb(180, 220, 255);
    --gray: rgb(167, 167, 167);
    --light-gray: rgb(210, 210, 210);
    --lighter-gray: rgb(243, 243, 243);
    --off-white: rgb(252, 252, 252);
    --white: rgb(255, 255, 255);
    
  
    --primary-color: #DEC37B;
    --secondary-color: #2f2f2f;
    --button-hover:#C4A95F;
    /* font family variable */
  
    --font-1: ;
    --font-2: ;
    --font-3: ;
    --font-body: "DM Sans", sans-serif;
  
    /* UI element  variable */
  }
  
  *,
  *::after,
  *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
  }
  html, body {
    overflow-x: hidden;      
    touch-action: pan-y;      
    padding: 0 !important;
}
  
  /* a {
    color: var(--dark-blue);
  } */
  a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
  button {
    border:none;
    background: transparent;
  }
  body {
    background-color: #fff;
    font-family: var(--font-body);
    color: #2F2F2F;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cursor-pointer {
  cursor: pointer;
}
  /* ============ Typography Classes ============ */
  .mc-h-1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 96%;
  }
  .mc-h-2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
  }
  .mc-h-3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
  }
  .mc-h-4 {
  }
  .mc-text-xxl {
    font-weight: 400;
    font-size: 36px;
    line-height: 54px;
  }
  .mc-text-xl {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
  }
  
  .mc-text-lg {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
  }
  .mc-text-md {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }
  .mc-text-sm {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
  }
  .mc-text-xs {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
  }
  
  .mc-text-right {
    text-align: right;
  }
  .mc-text-center {
    text-align: center;
  }
  .mc-text-justify {
    text-align: justify;
  }
  .mc-text-primary {
    color: var(--primary-color);
  }
  .mc-text-secondary {
      color: var(--secondary-color);
  }
  .mc-bg-secondary {
    background: var(--secondary-color);
  }
.mc-font-italic {
  font-style: italic;
}

  /* ============ Typography Classes ends ============ */
  /* ======= Spacing classes   ====== */



  .mc-rounded-60 {
  border-radius: 60px ;
  }
  .mc-rounded-20 {
  border-radius: 20px ;
  }
  .gap-80 {
    gap: 80px;
  }
  .gap-40 {
    gap: 40px;
  }
  .gap-32 {
    gap: 32px;
  }
  .gap-60 {
    gap: 60px;
  }
  .gap-20 {
    gap: 20px;
  }
  .gap-18 {
        gap: 18px;
  }
  .gap-12 {
    gap: 12px;
  }
  .gap-10 {
    gap: 10px;
  }
  .gap-216 {
    gap: 216px;
  }
  .gap-210 {
    gap: 210px;
  }
  .gap-114 {
    gap: 114px;
  }
  .gap-120 {
    gap: 120px;
  }
  .px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mx-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .p-20 {
    padding: 20px;
  }

  /* ======= Spacing classes ends  ====== */
    /* ======= utility classes   ====== */
    .cursor-pointer {
      cursor: pointer;
    }
    .mc-w-fit {
      width: fit-content;
    }
    .opacity-20 {
      opacity: .2;
    }
      .z-10 {
    z-index: 10;
  }
    /* ======= utility classes ends  ====== */
  /* ======= component based classes   ====== */

  .mc-container {
    max-width: 1320px;
    margin: 0 auto;
    /* padding:0px 20px; */
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .button-primary {
    background: var(--primary-color);
    padding: 16px 20px;
    border-radius: 60px;
    transition: background 0.6s ease;
  }
  .button-primary:hover {
      background: var(--button-hover);
  }
  /* ======= component based classes ends  ====== */
  /* navbar */



  .mc-header.header-active .mc-logo-img {
    width: 101px;
    height: 31px;
    object-fit: cover;
    transform: translateX(20px);
}

  .mc-logo-img {
  transition: 0.4s ease-in all;
  }

.top-40 {
  top:40px !important;
}

  .mc-logo-img {
    width: 143px;
    height: 44px;
  }

  .nav-container {
    background: #2F2F2F80;
backdrop-filter: blur(10px)

  }
     .mc-header {
   top: 40px !important;
  }
   .mc-header.header-active {
   border-radius: 60px;
   background: #2F2F2F80;
   backdrop-filter: blur(10px);
  }

  .mc-header.header-active .nav-container {
   background: transparent !important;
  backdrop-filter: blur(0) !important;
}
  .mc-header {
  transition: transform 0.3s ease;
}

  .nav-divider {
    background: var(--white);
    width: 1px;
    height: 16px;
  }
  /* footer */
  .mc-footer {
    padding:100px 0px;
    background: var(--secondary-color);
  }
  .social-button{
    border-radius: 60px;
    border:1px solid var(--primary-color);
    gap:12px;
    background: transparent;
    
  }
  /* .footer-address {
    max-width: 319px;
  } */
   .mobile-nav-menu {
    background:  var(--secondary-color);
    height: 100vh;
    width: 100% ;
    transform: translateY(-120% );
    padding: 83px 60px;
    transition: transform 0.7s ease-in;
   }
   .mc-button-navbar {
    background: var(--primary-color);
    border: none;
   }

      .mobile-nav-menu.nav-active {
            transform: translateY(0% );
      }
      /* hero */
.mc-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden; 
    padding-bottom: 40px;
}

/* Video background */
.mc-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
}

/* Dark overlay */
.mc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.3); 
    z-index: 1;
}

/* Content stays on top */
.mc-hero .mc-container {
    position: relative;
    z-index: 2;
}
/* .hero-contents {
  height: 100vh;
} */

.mc-hero-left {
  max-width: 542px;
}
.mc-hero-dsc{
  max-width: 510px;
}
/* our partners */
/* .logo-img {
  width:70px;
  object-fit: cover;
} */
 .logos-parent {
  height: 46px;
  width: 320px;
 }


 .logos-slide {
  /* display: inline-block; */
  animation: 45s slide infinite linear;
}

/* .logos-slide >p, .logos-slide  img{
  margin: 0px 30px;
} */
.logos-container {
  overflow: hidden;
 
  white-space: nowrap;

}
.logo-divider {
  width: 1px;
  height: 36px;
  background: var(--secondary-color);
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* our services */


.radial-gradiant-two {

  z-index: 0;
  position: relative;
 filter: blur(70px);

top: 85px;
left: -323px;

}

.white-dot {
  right: 0px;
  top: -96px;
}
.black-dot {
    left: -10px;
  top: 15px;
}

.radial-modal {
border-radius: 372px;
    background: var(--primary-color);
    filter: blur(140.5449981689453px);
    height: 240px;
    width: 372px;
    z-index: -1;
    bottom: -100px;
    left: -100px;
}


.service-section {
  padding-bottom: 120px;
  padding-top: 160px;
  background: var(--secondary-color);
}

.service-content {
  max-width: 788px;
}



.service-swiper {
      width: 100%;
height: 294px;
  transform: scale(1.5);
  transform-origin: left top; 
  left: 0;

    }

.service-slider-image {
  height: 254.66px;
  object-fit: cover;
  width: 100%;
}
.open-modal-btn-container {
  transition: all 0.2s ease-in;
}

.service-slide {
  cursor: pointer;
}

.service-slide:hover .open-modal-btn-container {
  border: 1px solid var(--primary-color);
}
.service-slide:hover .open-modal-btn-container svg path {
  /* stroke: var(--primary-color); */
  fill: var(--primary-color);
}
.service-card:hover .open-modal-btn-container {
  border: 1px solid var(--primary-color);
}
.service-card:hover .open-modal-btn-container svg path {
  /* stroke: var(--primary-color); */
  fill: var(--primary-color);
}
.open-modal-btn {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
}

.service-slide:hover .open-modal-btn {
 color: var(--primary-color);
}
.service-card-title {
  transition: color 0.2s ease-in;
}
.service-slide:hover  .service-card-title {
 color: var(--primary-color) !important;
}


.service-card-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}


.service-swiper-parent {
  position: relative;
  height: 442px;
  width: 100%;
  
}

.swiper-counter {
  color: var(--white);
  font-size: 22px;
}



.arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  transition: all 0.2s ease;
}

.arrow-btn:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);

}
svg {
  transition: all .2s ease-in ;
}
.arrow-btn:hover svg path {
  fill: var(--primary-color);
  /* stroke: var(--primary-color); */
}
.jump-total { 
  cursor: pointer;

 
}



.open-modal-btn {
  color: var(--white);
  padding: 20px;
}

.open-modal-btn-container {
  top: 16px;
  right: 16px;
  height: 64px;
  width: 64px;
  transform: scale(.667);
  background: #2F2F2F80;
  backdrop-filter: blur(10px);
  border: 1px solid var(--white);
  border-radius: 5.33px;
}
.service-slider-image {
  border-radius: 5.33px;
}
.modal-counter-parent {
  margin-bottom: -32px;
  z-index: 100;
}
 /* ======= modal seciton  ====== */
 .modal-close-button {
  top: 40px;
  right: 40px;
 }
.slider-modal-container {
  padding-top: 60px;
  padding-bottom: 100px;

}
.slider-modal-container {
  scrollbar-width: thin;      
  scrollbar-color: #999 var(--secondary-color);; 
}
.slider-modal-container::-webkit-scrollbar {
  width: 2px;  
}

.slider-modal-container::-webkit-scrollbar-track {
  background: var(--secondary-color);  
}

.slider-modal-container::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 4px;     
}

.slider-qoute {
  border-top:1px solid rgba(255, 255, 255, 0.2) ;
  border-bottom:1px solid rgba(255, 255, 255, 0.2) ;
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 10000000000000000000000000000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    overflow-x: hidden;
}

.gallery-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 20px;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}



.custom-modal.cus-open {
  pointer-events: auto;
    opacity: 1;
}

.inner-gallery {
    width: 100%;
    overflow: hidden;
        padding-left: 20px;
}

#close-cus-modal {
  position: fixed;
  z-index: 1000000 ;
  right: 40px;
  top: 40px;
}




.cus-modal-inner {
    max-height: 100%; 
    width: 100%;
    overflow-y: auto; 
    position: relative;
}

/* .slider-modal-content-right {
    position: sticky; 
    top: 20px; 
} */

/* Firefox */

.service-modal-image {
  width: 100%;
  max-width: 582px;
  height: 387px ;
  max-height: 387px;
  object-fit: cover;
  border-radius: 8px;
}
.modal-arrows-spacer {
  width: 100%;
  max-width: 582px;
  height: 32px ;
}

.slider-modal-content-right {
  width: 100%;
  max-width: 542px;

}
.content-right-inner {
    top: 60px;
    width: 100%;
    max-width: 542px;
   
}

.button-space {
  height: 32px;
  width: 100%;
}

.modal-close-button {
  padding: 0px !important;
  z-index: 100;
}


.service-card .open-modal-btn-container{
  width: 64px;
  height: 64px;
  transform: scale(1);
  top: 24px;
  right: 24px;
    border-radius: 8px;

}

.service-card .service-slider-image {
  height: 239px;
  border-radius: 8px;
}

.slider-inner-image {
  width: 100%;
}
.slider-inner-image-container {
  width: 100%;
}
.slider-inner-image-container {
  padding-left: 20px;
}

.slider-wrapper {
width: 90%;
overflow: hidden;
position: relative;
}


.slider-track {
display: flex;
gap: 20px;
width: max-content;
touch-action: pan-x;
}


.slider-track img {
width: 350px;
height: auto;
border-radius: 14px;
object-fit: cover;
}


/* about us section */

.about-container {
  padding-top:120px ;
  padding-bottom:100px ;
}

.about-left {
  max-width: 706px;
}

.about-image {
  width: 706px;
  height: 414px;
  object-fit: cover;
}

/* .team-swiper .swiper-slide-active .team-photo::after {
    height: 20%;
    bottom: 0;
    top: auto;
} */

.team-swiper .swiper-slide-active .team-photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.team-swiper .swiper-slide-active .team-photo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(47, 47, 47, 0.0) 0%,   
        rgba(47, 47, 47, 1) 100%    
    );

    pointer-events: none;
    z-index: 2;
}



.about-right {
  padding-left: 114px;
}
.about-tag {
  border: 1px;
  background: #2F2F2F1A;
  backdrop-filter: blur(10px);
  border: 1px solid var(--white);
  gap: 10px;
  padding: 4px 8px;
  border-radius: 20px;

}
.about-tag-dark {
  border: 1px;
  background: var(--secondary-color);
  border: 1px solid transparent;

}
.about-left-tags {
 padding: 0px 20px ;
 bottom: 20px;
}
  /* ======= team  seciton  ====== */
  .team-slider-image {
    height: 336px;
    object-fit: cover;
  }
  .team-img-text {
    padding: 40px 32px;
    bottom: 0px;
    z-index: 3;
  }
  .team-swiper .swiper-wrapper {
        align-items: center;
  }
  .team-swiper .swiper-slide-active  .team-slider-image {
        height: 384px;
  }
  .team-swiper .swiper-slide-active  .team-img-text {
        opacity: 1;
  }
  .team-swiper .team-img-text {
        opacity: 0;
  }

  .team-swiper {
      width: 100%;

  transform: scale(1.25);
  transform-origin: left top; 
  left: 0;

    } 

    .team-img-text h3 {
      font-size: 19.2px;
    }
    .team-designation {
      font-size: 12.8px;
    }
    .team-section{
      padding-bottom: 183px;
    }
    .team-navigation-conatiner {
   position: absolute;
    z-index: 10;
    top: 36%;
    width: 435px;
    display: flex;
    justify-content: space-between;
    left: -28px;
    }
    .team-prev ,.team-next {
      border: 1px solid var(--secondary-color);
      height: 32px;
      width: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      transition: all 0.2s ease-in;
    }

    svg path {
       transition: all 0.2s ease-in;
    }

    .team-prev:hover ,.team-next:hover {
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
    }
    .team-prev:hover svg path ,.team-next:hover svg path{
      /* stroke: var(--primary-color); */
      fill: var(--primary-color);
    }

    .team-dot {
      top: 0px;
      left: 46.5%;
    
    }

/* specialist secttion */
.specialist-swiper {
   background: radial-gradient(67.81% 175.94% at 120.7% 17.93%, #DEC37B 0%, #2F2F2F 100%) ;
        
border-radius:8px;
}


.special-white-dot {
  left: 0;
  top: 0;
}

    .specialist-swiper-slide {
      padding-top: 100px;
      padding-bottom: 100px;

    }

    .specialist-slide-right-inner {
      max-width: 492px;
      z-index:10;
      width: 100%;
    }
    .specialist-slide-left {
      padding-left: 112px;
    }

    .sp-logo-container {
      border: 1px solid var(--white);
      height: 186px;
      width: 186px;
    background: #FFFFFF1A;
backdrop-filter: blur(10px);
 
      position: relative;
      z-index: 2;
    }
.sp-logo-container-parent {
  padding: 19px 63px;
  width: fit-content;

}
.specialist-img {
  width: 72px;
  height: 72px;
}

.specialist-btn-spacer  {
  height: 32px;
  width: 100%;
}

.specialist-nav-wrapper {
  bottom: 0;
      width: 100%;
    padding: 0px 20px;
        bottom: 100px;
    left: 0px;
    z-index: 1;
}
.specialist-dsc {
  min-height: 72px;
}


/* implementation section */

.implementation-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.implementation-slide-right {
  max-width: 378px;
  width: 100%;
}

.implementation-left {
  padding-right: 114px;
}
.implementation-img {
  height: 640px;
  object-fit: cover;
}

.imp-img-container {
  bottom: 24px;
  left: 24px;
}

.implementation-img-sm {
  height: 64px ;
  width: 64px;
  cursor: pointer;
  
}
.imp-img-sm-active {
  border:1px solid var(--white);
   height: 62px ;
  width: 62px;
}
.implementation-img {
    transition: opacity 0.3s ease;
}
.fade-out {
    opacity: 0;
}
.fade-in {
    opacity: 1;
}
.arrow-btn-black {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.imp-tag p {
  line-height: 18px;
}
.imp-swiper-buttons {
  margin-top: -32px;
  z-index: 1;
}

  /* = ====== contact us seciton  ====== */
  .contact-us {
   background: radial-gradient(166.64% 77.22% at 5.2% 6.25%, #DEC37B 0%,#F3F5F9 100%);
    border-radius: 8px;
    padding-bottom: 100px;
    padding-top: 120px;
}

#contact-us {
  padding-bottom: 120px;
}


   .c-left{
      padding-left: 112px;
    }


    .c-left-title{
      max-width: 460px; 
    }

    .c-left-img{
      max-width: 80px; 
      height: 80px; 
      border-radius: 50%;
    }

    .c-left-name{
   
      margin-bottom: 8px;
    }

    .c-left-ko{
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0%;
      color: var(--secondary-color); 
      opacity: 0.5;
      margin-bottom: 12px;
    }

    .flag{
      width: 20px;
      height: 20px;
      border-radius: 50%;
    }

    .nata-email{
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0%;
      color: var(--secondary-color); 
    }
    .nata-num{
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0%;
      color: var(--secondary-color); 
    }

    .c-form{
      max-width: 542px;
          width: 100%;
    }


   
    .contact-right-title{
      font-weight: 500;
      font-size: 20px;
      line-height: 150%;
      letter-spacing: 0;
      color: var(--secondary-color); 
      padding-bottom: 20px;
    }
    .contact-tag-btn{
      padding: 10px;
      border-radius: 200px;
      border: 1px solid var(--secondary-color);
      cursor: pointer;
      transition: all 0.1s ease-in;
    }
    .contact-tag-btn:hover{
      background: var(--secondary-color);
      color: var(--white);
    }



    
    .c-right-input{
      padding: 16px;
      box-sizing: border-box;
      max-height: 50px;
      width: 100%;
      border-radius: 8px;
      border: none;
    }

    .c-right-input::placeholder,.c-right-input-text::placeholder{
      font-size: 14px; 
      color: var(--secondary-color);     
      font-weight: 500;
    }

    .c-right-input:focus,
    .c-right-input:active , .c-right-input-text:focus,
    .c-right-input-text:active {
      outline: none;       
      box-shadow: none;  
      border: none;        
    }

    .c-right-input-text{
      padding: 16px;
      box-sizing: border-box;
      
      max-height: 122px;
      width: 100%;
      border-radius: 8px;
      border: none;
      margin-bottom: 32px;
    }
    .odo-btn{
      
      box-sizing: border-box;
    
      width: fit-content;
      
      border: none;
      background: transparent;
      /* position: relative; */
      display: flex;
      max-width: fit-content;
    }
    .contact-id-mobile{
      display: none !important;
    }
    .odo-btn-div{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: fit-content;
      padding: 16px 20px 16px 20px;
      border-radius: 60px;
      background-color: var(--primary-color);
      gap: 10px;
      transition: background 0.6s ease;
      cursor: pointer;
    }
    .odo-btn-div:hover {
       background-color: var(--button-hover);
    }

    .odo-btn-div input{
      font-weight: 500;
    }
   .wpcf7  {
    z-index: 10;
    position: relative;
   }

   .contact-dot {
        left: 24px;
    bottom: -99px;
   }

    .screen-reader-response {
      display: none  !important;
    }
    .wpcf7-response-output {
      margin-top: 20px;

    }
    .c-tags-container {
      max-width:500px; padding-bottom:40px;
    }

    .gap-top-fix {
      margin-top: -20px;
    }

    .wpcf7-spinner {
      display: none;
    }


    /* 404 px */

    .error-page {
      background: var(--secondary-color);
      min-height: 100vh;
      margin-top: -60px;
    }
    .error-page-inner {
      max-width: 685px;
      padding-top: 260px;
      width: 100%;
    }
    .error-dsc {
       max-width: 624px;
             width: 100%;
             text-align: center;
    }
    .error-title {
          text-align: center;
    }

    #contact-us {
      overflow: hidden; 
    }