@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    /* src: url('/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype'); */
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth !important;
}
  
body{
    overflow-x: hidden !important;
}

::selection {
    background-color: rgba(241, 143, 41, 1);
    color: #fff; 
  }
  

.text-black{
    color: black !important;
}

.text-theme{
    color: #1366a3 !important;
}

.text-gradient{
    background: -webkit-linear-gradient(black, #1366a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* navbar */

.navbar-nav .nav-link:hover {
    color: #7d8087 !important;
}

.navbar-nav .nav-link.active {
    color: #7d8087 !important;
}



.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: transparent !important;
}


.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    opacity: 1;
    word-break: normal;
    line-height: 20px;
    padding: 10px 20px;
    /* color: white !important; */
}


.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none; 
    width: 30px;
    height: 3px;
    color: black; 
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}


/* .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
} */


/* mobile-nav */

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-items {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-items li {
    margin: 20px 0;
}

.menu-items a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #3b60ad;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.simple-button {
    padding: 18px 28px; 
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(89, 82, 82, 0.8); 
    border-radius: 12px;
    transition: all 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.simple-button:hover {
    background: white; 
    color: rgba(0, 0, 0, 0.7); 
}


.custom-button2 {
    padding: 18px 28px; 
    background: linear-gradient(90deg, rgba(241,143,41,1) 0%, rgba(59,96,173,1) 67%, rgba(177,213,219,1) 100%) ;
    background-size: 200% 100%;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-position: 0% 50%;
}

.custom-button2:hover {
    background: linear-gradient(90deg, rgba(177,213,219,1) 0%, rgba(59,96,173,1) 50%, rgba(241,143,41,1) 100%);
    background-size: 200% 100%;
    background-position: 100% 50%;
    transition: all 0.4s ease-in-out !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.custom-button2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.custom-p{
    padding: 12px 24px !important;
}


/* hero-section */


.hero-section {
    height: 88vh; 
    /* background: url("/mach/images/hero-img.jpg") no-repeat center/cover; */
    position: relative;
    overflow: hidden;
}

.hero-section2 {
    height: 40vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-section3 {
    height: 60vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: 0;
}


/* .hero-section */

.custom-blur {
    background: rgba(0, 0, 0, 0.2); 
    font-size: 14px;
    backdrop-filter: blur(5px); 
    color: white; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 18px;
    padding: 12px 20px; 
    text-transform: uppercase;
    letter-spacing: 1px !important;
    gap: 8px; 
    white-space: nowrap; 
}

.leads {
    opacity: 0.6;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    padding-right: 200px !important;
    font-size: 18px;
}


.hero-section {
    min-height: 80vh; 
    display: flex;
    align-items: center; 
    justify-content: start; 
    text-align: left; 
}


.container.custom-width {
    max-width: 350px; 
    margin: 0 auto; 
}


.hero-heading{
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.3;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.span {
    background: linear-gradient(90deg, rgba(241,143,41,1) 0%, rgba(59,96,173,1) 67%, rgba(177,213,219,1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s infinite linear;
}


.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.moving-waves {
    position: relative;
    display: block;
    width: 200%;
    height: 80px;
    animation: moveWaves 6s linear infinite;
}

@keyframes moveWaves {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.image-wrapper {
    position: relative;
    width: 100%;
}

.main-image {
    width: 330px;  
    border-radius: 12px;
}

.small-image {
    width: 330px; 
    position: absolute;
    right: -190px;
    top: 50px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-out;
}

.section-text{
    /* font-weight: 300; */
    font-size: 1rem;
    /* opacity: 0.6; */
    /* color: black !important; */
}

.section-2{
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.para{
    margin-top: 0;
}

@media (max-width: 768px) {
    .main-image {
        width: 50%;  
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }
    
    .small-image {
        width: 50%; 
        position: absolute;
        left: 69%;
        top: 10%;
        transform: translateX(-50%);
        border-radius: 12px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-out;
    }

    .leads{
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .section-text{
        /* font-weight: 300; */
        font-size: 1rem;
        /* opacity: 0.6; */
        margin: 0 !important;
        padding: 0 !important;
        /* color: black !important; */
    }

    .para{
        margin-top: 50px !important;
    }

    .section-2{
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
}




.text-silver{
    color: #7d8087;
}


.social-icon {
    font-size: 1.5rem !important;
    transition: color 0.3s ease;
}


.social-icon.facebook:hover {
    color: #1877F2;
}


.social-icon.instagram:hover {
    color: #E4405F;
}


.social-icon.twitter:hover {
    color: #000000;
}


.social-icon.linkedin:hover {
    color: #0077b5; 
}



.quick-link {
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.quick-link:hover {
    color: black !important; 
}

.gradient-icon {
    font-size: 2.5rem;
    background: linear-gradient(90deg, rgba(241,143,41,1) 0%, rgba(59,96,173,1) 67%, rgba(177,213,219,1) 100%);
    -webkit-background-clip: text;
    color: transparent; 
}



.hover-shadow:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}



.fw-800{
    font-weight: 800 !important;
}

.fw-600{
    font-weight: 600 !important;
}

.fw-500{
    font-weight: 500 !important;
}
.fw-300{
    font-weight: 400 !important;
}
.line-h{
    line-height: 30px !important;
}


.carousel-control-prev {
    left: 20px !important;
  }
  
  .carousel-control-next {
    right: 20px !important;
  }

  @media (max-width: 576px) {
    .carousel-control-prev {
      left: 10px !important; 
    }
  
    .carousel-control-next {
      right: 10px !important;
    }
  }
  

 
  .carousel-inner {
    cursor: none;
  }

  #custom-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #252840;
    border-radius: 50%;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 20px;
  }

  #custom-cursor .cursor-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px; 
  }

  #custom-cursor span {
    display: inline-block;
    line-height: 1;
  }

  .quick-link:hover{
    
  }






.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    /* margin-top: ; */
}

.custom-dropdown {
    background-color: #252840 !important;
    border: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    overflow: hidden;
    border-radius: 5px; 
}


.custom-dropdown .dropdown-item {
    color: #fff !important; 
    background-color: #252840 !important; 
    padding: 10px 15px;
    border-bottom: 1px solid #3a3d56;
}


.custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
}


.custom-dropdown .dropdown-item:hover {
    background-color: #3a3d56 !important;
}


.dropdown-menu {
    padding: 0 !important;
}



.custom-dropdown {
    background-color: #252840 !important;
    border: none;
    padding: 10px 0; /* 👈 Padding for top & bottom inside dropdown */
    margin: 0;
    min-width: 220px;
    overflow: hidden;
    border-radius: 10px;
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
    color: #fff !important;
    background-color: #252840 !important;
    padding: 12px 20px; /* 👈 More padding inside each item */
    border-bottom: 1px solid #3a3d56;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease, background-color 0.3s ease; /* 👈 Smooth effect */
}

/* Icon default */
.custom-dropdown .dropdown-item .icon {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease; /* 👈 Smooth effect */
}

/* On hover: only text and icon color changes */
.custom-dropdown .dropdown-item:hover {
    color: #7d8087 !important;
    background-color: #252840 !important;
}

.custom-dropdown .dropdown-item:hover .icon {
    color: #7d8087 !important;
}


.custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
}



.dropdown-wrapper {
    position: relative;
    display: inline-block;
}


.dropdown-wrapper .dropdown-menu {
    display: none;
    position: absolute;
    top: 75%;
    left: 0;
    margin-top: 10px;
    background-color: #252840;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    z-index: 999;
}


.dropdown-wrapper:hover .dropdown-menu {
    display: block;
}


.dropdown-menu .dropdown-item {
    color: #fff !important;
    padding: 18px 26px;
    border-bottom: 1px solid #3a3d56;
    background-color: #252840;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu .icon {
    color: #fff;
    transition: color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    color: #7d8087 !important;
    background-color: #252840 !important;
}

.dropdown-menu .dropdown-item:hover .icon {
    color: #7d8087 !important;
}



@media (max-width: 768px) {
    .hero-section {
        height: 90vh !important;
    }

    .leads {
        width: 100% !important;
        padding: 0 !important;
    }

    .hero-heading{
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1.1;
    }
}

.section-video{
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

.section-img {
     padding-top: 60px !important;
    padding-bottom: 40px !important;
}

@media (max-width: 768px){
    .section-video{
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .section-img {
        padding-top: 50px !important;
       padding-bottom: 20px !important;
   }
}


.custom-h3{
    margin: 0 !important;
    padding:0 !important;
    /* letter-spacing: -3px !important; 
    line-height: 10px; */
}


.custom-blur2 {
    background: rgba(0, 0, 0, 0.2); 
    font-size: 14px;
    backdrop-filter: blur(5px); 
    background-color: #f1f5fd; 
    color: #386ea8;
    /* background: linear-gradient(90deg, rgba(241,143,41,1) 0%, rgba(59,96,173,1) 67%, rgba(177,213,219,1) 100%) ; */
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 18px;
    padding: 12px 20px; 
    text-transform: uppercase;
    letter-spacing: 1px !important;
    gap: 8px; 
    white-space: nowrap; 
}


.trust-box {
    border: 1px solid #a7a4aa;
    padding: 18px 33px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    display: flex; 
    align-items: center;
    gap: 10px;
    width: 100%; 
    box-sizing: border-box;
  }
  
  
  .trust-box i {
    font-size: 30px;
    color: #84526f;
  }
  

  .img1{
    width: 90%;
  }

  @media(max-width: 768px){
    .img1{
        width: 100% !important;
      }
    
  }

  #lottie-animation5 {
    width: 90%;
  }

  @media(max-width: 768px){
    #lottie-animation5 {
        width: 100% !important;
      }
  }

/*   
  .experience-container {
    position: relative;
  }
  
  .experience-overlay {
    position: absolute;
    padding: 30px;
    top: 80%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background:#386ea8;
    z-index: 1;
    border-radius: 10px;
  }
  

  .experience-number {
    font-size: 3rem;
  font-weight: bold;
  }
  
  .experience-text {
    font-size: 20px;
    line-height: 24px;
  }
  

  @media(max-width: 768px){
    .experience-overlay {
        top: 70%;
        left: 37%;
      }
  } */



  .icon-circle {
    width: 40px;
    height: 40px;
    background-color: #f0f2f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#074eb9;
    font-size: 16px;
  }
  

  .icon-circle1 {
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #074eb9;
    font-size: 16px;
  }

  .custom-ps{
    padding: 80px 40px 80px 40px !important;
  }
  
  .text-wrap-break {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  


  .input-icon-wrapper {
    position: relative;
    width: 100%;
  }
  
  .underline-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid black;
    padding: 8px 30px 8px 0; 
    font-size: 1rem;
    color: #000;
    resize: none;
  }
  
  .underline-input:focus {
    outline: none;
    border-bottom: 2px solid black;
  }
  
  .input-icon {
    position: absolute;
    right: 0;
    top: 10px; 
    color: black;
    font-size: 16px;
    pointer-events: none;
  }
  

  .contact-icon-gradient {
    color: #074eb9;
    font-size: 42px;
  }
  


  .custom-h1{
    width: 80% !important;
  }

  @media( (min-width: 768px)) {

    .custom-h1{
        width: 100% !important;
      }

     
  }

  .custom-padding{
    margin-bottom: 50px !important;
  }

  .custom-div{
    display: flex;
    align-items: end !important;
    justify-content: end !important;
  }


  #mission-section{
    background: linear-gradient(90deg, rgba(241,143,41,1) 0%, rgba(59,96,173,1) 67%, rgba(177,213,219,1) 100%) ;
    
  }


  .blur-background {
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(100px); 
    -webkit-backdrop-filter: blur(100px); 
    border-radius: 100px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  }


  .dropdown-menu-mobile {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.dropdown-menu-mobile.show {
    max-height: 500px; 
    opacity: 1;
}


.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
  }

  .swiper {
    padding: 0 20px;
   
  }

  .rectangle{
    margin-top: 11% !important;
  }

  .circular-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
  }

.fancybox__container .fancybox__content img {
    border-radius: 8px;
  }
  