/* General styles */
@font-face {
    font-family: 'Clash Display Variable';
    src: url('../fonts/ClashDisplay/Fonts/WEB/fonts/ClashDisplay-Variable.woff2') format('woff2'),
         url('../fonts/ClashDisplay/Fonts/WEB/fonts/ClashDisplay-Variable.woff') format('woff');
 
    font-style: normal;  
}


body {
    font-family: "Clash Display Variable", sans-serif;

    background: #FDFDFF;
}
/* Container for the progress bar */
.progress-container {
    width: 100%;
    height: 5px;
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #f3f3f3; /* Background color of the container */
}

/* The progress bar itself */
.progress-bar {
    height: 5px;
    background-color: #343FE9; /* Color of the progress bar */
    width: 0%;
}

/* Navbar styles */
.navbar-brand .logo {
    height: 40px;
}

.navbar-nav .nav-link {
    padding-right: 20px;
    color: var(--Black-90, #2C2C2C);
    text-align: center;
     font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.navbar-nav .nav-link:hover {
    color: #0056b3;
}

.navbar-toggler {
    border-color: transparent;
}

@media (max-width: 991.98px) {
    .desk_nav {
        position: static;
    }
}

/* Glass-like effect on scroll */
.desk_nav {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.desk_nav.scrolled {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Hide dropdown menu initially */
.desk_nav .nav-item.dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show dropdown menu on hover */
.desk_nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    margin-top: 0; /* Ensure no margin shift when visible */
}
 
.dropdown-content {
    display: none;
    position: absolute;
    /* top: 70px; */
    left: 5%;
    background: white;
    width: 80%;
    z-index: 1000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.05);
}
.dropdown-content .nav-tabs {
    display: block;
    border: 0;
}
.dropdown-content .nav-tabs .nav-item .nav-link {
    text-align: right;
    color: #767676;
    border: none;
    padding: 10px 20px;
    position: relative;
    cursor: pointer;
}
.dropdown-content .nav-tabs .nav-item .nav-link.active,
.dropdown-content .nav-tabs .nav-item .nav-link:hover {
    color: #343FE9;
    /* font-weight: bold; */
}
.dropdown-content .nav-tabs .nav-item .nav-link.active::before,
.dropdown-content .nav-tabs .nav-item .nav-link:hover::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #343FE9;
}
.dropdown-content .nav-tabs .nav-item .nav-link::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #E6E6E6;
 }

/* Show dropdown content on hover */
.dropdown-container:hover .dropdown-content {
    display: flex;
}

/* Service card styles */
.service-card {
    display: none;
}
.service-card.active {
    display: block;
}

 
@media (max-width: 1025px) {
    .dropdown-content {
     
        width: 95%;
      
    }
}

/* Mobile styles */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .d-flex .btn {
        margin-bottom: 10px;
    }
}

/* Mobile Nav Slide-in */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding: 1rem;
}

.mobile-nav.open {
    left: 0;
 
}
 
.mobile-nav .close-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

/* Happy Clients button hover effect */
.happy-clients {
    position: relative;
    overflow: hidden;
    height: 40px; /* Adjust height as needed */
    line-height: 24px; /* Adjust line-height to match font size */
    padding: 0 20px; /* Adjust padding for better alignment */
    font-size: 12px; /* Adjust font size here */
    border-radius: 12px;
}

.rotate-text {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.rotate-text .word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0;

}

 
.header_btn a{
 
    /* font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
 font-style: normal;
  }

  .header_btn a.btn_contact{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00)5%, rgba(255, 255, 255, 0.30)100%), #343FE9;
    transition: background 0.3s ease;
    border-radius: 12px;
  }
  .header_btn a.btn_contact:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.10) 5%, rgba(255, 255, 255, 0.50) 100%), #343FE9;
}
.rotate-text .word.active {
    opacity: 1;
}

.happy-clients:hover .rotate-text .word.active {
    opacity: 0;
    transform: translate(-50%, -150%);
}

.happy-clients:hover .rotate-text .word:not(.active) {
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* Text Styling */
@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/helvetica-now-display/HelveticaNowDisplay-Regular.woff2') format('woff2'),
         url('../fonts/helvetica-now-display/HelveticaNowDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/helvetica-now-display/HelveticaNowDisplay-Bold.woff2') format('woff2'),
         url('../fonts/helvetica-now-display/HelveticaNowDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Add other font weights and styles as needed */


.serv_h h3{
    color:  #2C2C2C;
    /* font-family: 'Helvetica Now Display', sans-serif; */
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 24px;  
}
.serv_h p{
    color: #767676;
    /* font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 137.5% */
}
.serv_h .btn-primary {
    background: #ECEDFF;
    border-radius: 12px;
    color: #343FE9;
    border-color: #ECEDFF;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.serv_h .btn-primary:hover {
    background: #343FE9;
    color: #ECEDFF;
    border-color: #343FE9;
}

.serv_h .btn-outline-secondary {
    border: 1px solid #E3E3E3;
    border-radius: 12px;
    background: #F8F8F8;
    color: #292929;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.serv_h .btn-outline-secondary:hover {
    border-color: #292929;
    background: #292929;
    color: #F8F8F8;
}

 
.customservicesModal{
    display: none;
}
.customservicesModal.open {
    position: fixed;
    /* top: 0; */
    left: 0;
    right: 0;
    /* bottom: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060; 
}

.custom-modal-dialog {
    max-width: 90%;
    margin: 1rem;
}

 

.custom-modal-content {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.custom-modal-header {
    background-color: #007bff;
    color: #fff;
    padding: 1.5rem;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.custom-modal-body {
    padding: 1.5rem;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.custom-nav-tabs {
    border-bottom: 2px solid #007bff;
    display: flex;
    justify-content: space-around;
    padding-bottom: 0.5rem;
}

.custom-nav-link {
    color: #007bff;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.custom-nav-link.active {
    background-color: #007bff;
    color: #fff;
}

.custom-nav-link:hover {
    background-color: #0056b3;
    color: #fff;
}

.tab-content {
    padding: 1rem;
}

 

.custom-modal-footer {
    border-top: none;
    padding: 1rem;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.custom-modal-footer .btn {
    margin: 0 auto;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #007bff;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.custom-modal-footer .btn:hover {
    background-color: #007bff;
    color: #fff;
}

 

.hero-fullscreen {
     background:  radial-gradient(25.04% 25.04% at 50% 10.3%, rgba(255, 255, 255, 0) 0%, #ffffff00 100%),url('../img/hero.png') no-repeat;
 
     width: 100%;
    height: auto;
    position: relative;
    margin-top: 110px;
    z-index: 5;
 }
.hero-cont{
}
.hero-section {
    position: relative;
    background: radial-gradient(25.04% 25.04% at 50% 10.3%, rgba(255, 255, 255, 0.95) 0%, #FFF 100%);

    top: -40px;
    
}

.hero-section h1 {
    color: #000;
     font-size: 53px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    position: relative; 
}

.hero-section p {
    color: #767676;
    text-align: center;
     font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    position: relative; 
}

.highlight {
    color: #343FE9;
    display: inline-block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}
 
.mobile-images {
    position: absolute;  
    top: -50px;  
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: -1; 
    
    
}

.mobile-image {
    width: 150px;
    margin: 0 -5px;
    transition: transform 0.3s ease; 
 
}

.middle { 
    margin-top: -50px;
}

.mobile-image:hover {
    transform: translateY(-20px);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.stats .count {
    color: #000;
    text-align: center;
     font-size: 33px;
    font-style: normal;
    font-weight: 600;
}

.stats .stats_p {
    color: #767676;
    text-align: center;
     font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.slots {
    font-size: 16px !important;
}
 

  svg.mouse {
    width: 20px;
    top: 0;
    left: 0;
    position: fixed;
    
   } 
    
 
  
   .carousel-container {
    
    overflow: hidden;
    position: relative;
}

.owl-carousel img {
    width: auto; 
    margin: 0px;
    transition: opacity 0.3s, transform 0.3s;
}

.owl-carousel .owl-item {
    text-align: center;
    justify-content: center;
    margin-right: 0px;
    display: flex;
}

.owl-carousel .owl-item.active.center img {
    opacity: 1;
    transform: scale(1.2);  
}

.owl-carousel .owl-item.active img {
    opacity: 0.5;
}

.owl-carousel .owl-item img {
    opacity: 0.2;
    width: 80%;
}


.sec_head h4{
    color:  #000; 
/* font-family: "Helvetica Now Display", sans-serif; */
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 34px; 
}
.sec_head p{
    color:  #767676 ; 
/* font-family: "SF Pro Display", sans-serif; */
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 25px; 
}
.chose_div{
    border-radius: 25px;
border: 1px solid rgba(255, 255, 255, 0.15);
background: var(--Addition-30, #1C1C20);
transition: background-color 0.3s ease-in-out; /* Smooth transition */

}
.chose_div:hover{
    background-color: #343FE9;
}
.sec_head .chose_us h4{ 
    color: white;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
 
}


.sec_head .chose_us p{
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
}

 


.sec_head_ser .card {
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: var(--White-100, #FFF);
    
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;

}
.sec_head_ser .card:hover {
    
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.sec_head_ser h4{
    font-size: 23px;
    color:  #2C2C2C;
    font-weight: 600;
  
}
.mob_img{
    width: 89.4%;
} 
.web-img{
    width: 80%;
    height: auto;
}
.ui-img{ 
    /* height: 200px; */
}

.process-step .icon img {
    width: 60px;
    height: auto;
}

.sec_proc h4 {
    color: #000;
    font-weight: 500;
}
 
 
.sec_proc .dot1::after {
    content: '';
    position: absolute;
    top: 15%;  
 
    width: 80%; 
    height: 2px;
    background-image: repeating-linear-gradient(to right, #4e4aff 0, #4e4aff 2px, transparent 2px, transparent 6px);
    margin: 0 10px;  
}
 

.sec_proc  .dot2::after {
    content: '';
    position: absolute;
    top: 15%;  
    
    width:80%; 
    height: 2px;
    background-image: repeating-linear-gradient(to right, #4e4aff 0, #4e4aff 2px, transparent 2px, transparent 6px);
    margin: 0 10px;  
}
 
.sec_project h4{
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;

}
  .slid_btn{
 background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 5%, rgba(255, 255, 255, 0.30) 100%), #343FE9;
 padding-right: 4rem !important;
 padding-left: 4rem !important;
 border-radius: 12px;
}
.pro_a  {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 5%, rgba(255, 255, 255, 0.30) 100%), #343FE9;
   
    border-radius: 12px;
   }
.sec_case_studies h4{ 
    color: black;

font-size: 18px;
font-weight: 500;
line-height: 27.72px; 

}
.case-studies-card {
    position: relative;
    overflow: hidden;
      
       
}
 
.case-studies-card img {
    width: 100%;
    height: auto;
    display: block;
}
.case-studies-commingsoon{
    position: absolute;
    top: 20px;
    left: 20px;
}
.case-studies-overlay {
    position: absolute;
    bottom: 22px;
    left: 15px;
    right: 15px;
    padding: 10px; 
    /* background: linear-gradient(0deg, #ffffff 0%, #999999d1 0%); */
    background: white;

    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.case-study-text{
padding: 0px 80px 0px 10px;
}
.case-studies-card button{
    border-radius: 100px;
    border-color: #E3E3E3;
    background-color: #F8F8F8;
    transform: rotate(-45deg);

}
.case-studies-card button i{
color: #000;
font-weight: 800;
font-size: x-large;
}

.case-studies-card button:hover{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 5%, rgba(255, 255, 255, 0.30) 100%), #343FE9;     
    }

.sec_special .spec_card{
    border-radius: 20px;
    background:  #1C1C20;
    transition: background-color 0.3s ease-in-out;
}
.sec_special .spec_card:hover{
    background-color: #343FE9;
}
.sec_special .spec_card img{
    width: 65px;
    height: auto;
}
.sec_special .spec_card h4{
    font-size: 22px;
    color: white;
    font-weight: 600; 
}

.sec_special .spec_card p{
    color: rgba(255, 255, 255, 0.80);


}

  .testimonial-item {
    text-align: start;
    padding: 20px; 
    margin: 10px;
    border-radius: 15px;
border: 1px solid rgba(227, 227, 227, 0.00);
background: var(--Addition-30, #1C1C20);
}
.testimonial-sliderr  .testimonial-item{
    text-align: end;

}
.testimonial-item p { 
    color: white;
    padding: 0px 40px 0px 0px;
}

.testimonial-item .name {
    color:    #FFF ;
    font-family: "SF Pro Display",sans-serif;
    font-size: 14.18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.27px;  
}
.testimonial-sliderr .testimonial-item .d-flex{
   float: left;

}
.testimonial-item .position {
    color: rgba(255, 255, 255, 0.80);
font-family: "SF Pro Display",sans-serif;
font-size: 12.408px;
font-style: normal;
font-weight: 400;
line-height: 17.725px;  
}

.rating {
    color: #FFD700; 
    font-size: 20px;
}
.testimonial-item img{
    /* width: 70% !important ; */
    width: 38.996px !important ;
height: 38.996px !important ;
    opacity: 1 !important;
}
.sec_contact h3{
    color: #000; 
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 52px;  
}
.sec_contact p{
    color:  #2C2C2C; 
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px; 
}

.sec_contact .loca_sec h6{
    color: #767676; 
    font-size: 16px;
    font-style: normal;
    font-weight: 500; 
}
.sec_contact .loca_sec p{
    font-size: 16px;
    line-height: 25px; /* 156.25% */
}
.sec_contact .form-container {
    background: #F4F5FF;
    padding: 30px;
    border-radius: 10px;
}
.form-container label{
    color:  #2C2C2C; 
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 25px; /* 178.571% */
}
.form-container .form-check label{
    color: #767676; 
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;  
}
.form-container  input{
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: var(--White-100, #FFF); 
}
.form-container  select{
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: var(--White-100, #FFF); 
}
.sec_contact button{
    border-radius: 12px;
background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 5%, rgba(255, 255, 255, 0.30) 100%), #343FE9;
}

.comma-img{
    width: 25px; 
    height: auto;
}
.comma-img img{
 opacity: 1 !important;
 width: 24px !important;
height: 24px !important;
}
.sec_contact .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color:  #2C2C2C; 
font-size: 18px;
font-style: normal;
font-weight: 600; 
}

.sec_contact .features-list li::before {
    content: "✔️";
    margin-right: 8px;
    color: #5a85ff;
}


.fotter .fotter-links a{
    color:#fff;
font-size: 14px;
font-weight: 500;
text-decoration: none;
line-height: 25px;
}
.fotter .fotter-links a:hover{
color: #0a58ca !important;
}

.soci-icon a {
    border-radius: 15px;
    border: 1px solid #1C1C20;  
    padding: 14px; 
    display: inline-block;
     background: #1C1C20;
    
}
 
.soci-icon i{
    color: white;
}
.copyright{
 
    color:   #fff ;
     
font-size: 14px;
font-weight: 500;
line-height: 25px; 

}
 
.faq-container .nav-tabs .nav-link {
    border: none;
    border-right: 3px solid #EFEFEF;
    padding: 15px 20px;
    color:  #767676;
   
    text-align: right;
    
font-size: 24px;
font-weight: 500;
line-height: 25px;
 

}
.faq-container .nav-tabs .nav-link.active {
    border-right: 3px solid #343FE9;
    background-color: transparent;
    border-color: #343FE9;
    color: #343FE9;
    font-weight: 600;

}
 
.faq-container .nav-tabs {
    border-bottom: none;
}

.faq-container .accordion-button {
    background-color: #ffff;
    border: 1px solid #E3E3E3;
    color: #000; 
    font-size: 18px; 
font-weight: 600;
line-height: 28px;
padding: 0.61rem 1.25rem;
}
.faq-container .accordion-button:focus {
    z-index: 3; 
    outline: 0px;
    box-shadow: rgba(13, 109, 253, 0) 0px 0px 0px 0rem;
}
.faq-container .accordion-button:not(.collapsed) {
    color: #343FE9;
    background-color: #ECEDFF;
}
.faq-container .accordion-body {
    background-color: #ECEDFF; 
font-size: 16px;
font-weight: 500;
line-height: 25px; 
}
.faq-nav-div{
    position: relative;
}


@media (max-width: 991px) {
    .d-flex {
        flex-direction: row;
        align-items: start;
    }
}
@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 37px;
        line-height: 45px;
    }

    .hero-section p {
        font-size: 21px;
        line-height: 32px;
    }

    .mobile-image {
        width: 100px;
        margin: 0;
        
    }
    .middle { 
        margin-top: -40px;
        
    }
   
    .mob_img{
        width: 60%;
    }
    .web-img{
        width: 70%;
        height: auto;
    }
    .ui-img{ 
        height: auto;
    }
    .sec_proc .dot1::after {
      
        top: 12%;  
     width: 68%; 
    
    }
     
    
    .sec_proc .dot2::after { 
        top: 12%;  
        width: 68%; 

    }
    .sec_case_studies h4{
        line-height: 25px;
    }  
}
@media (max-width: 450px){
    .sec_contact .form-container { 
        padding: 15px; 
    }
    .case-study-text{
        padding: 0px;
        }
        .sec_case_studies h4{
            line-height: 20px;
            font-size: 15px;
        }
    .testimonial-item p { 
        color: white;
        padding: 0px;
    }
    
  
   .carousel-container {
    width: 100% !important;
}

    .hero-section h1 {
        font-size: 32px;
        line-height: 45px;
    }

    .hero-section p {
        font-size: 20px; 
    }
    .stats {
        
        margin: 0px 0 12px 0;
    }
   
    .sec_proc .dot1::after {
        display: none;
    }
     
    
    .sec_proc .dot2::after { 
        display: none;
    }
      
}