*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}
html{
    scroll-behavior: smooth;
  }
  ::-webkit-scrollbar{
    width: 0px;
  }
  .containersocool {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .profile {
    font-weight: 900;
    font-size: 2rem;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: white;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
 
  
  .nav-links a {
    text-decoration: none;
    color: #011516;
    font-weight: bold;
  }
  
  .nav-links .highlight {
    color: #5ce1e6;
  }
/* review  */
.testimonial-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 300%;
}

.testimonial-item {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}

.hero {
    width: 100%;
    
    padding: 3rem 0;
    background: #fff;
    display: flex;
    background-image: url(assets/ft2.gif);
    background-size: cover;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
  }

  .hero p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .btn.primary {
    background: #5ce1e6;
    color: black;
  }
  
  .btn.secondary {
    background: white;
    color: #333;
    border: 1px solid #333;
  }
  .btn.secondary:hover{
    transform: rotate(1deg);
  }


/* why us  */




/* tabs  */

.tabsection{
    position: relative;
    background-color: #0F1825 ;

}

.top-section {
    /* background-color: rgba(0, 0, 0, 0.91) ; */
    color: white;
    padding: 2rem 6rem;
  }
  
  .top-section h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .top-section p {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
   
  }
  
  .sticky-header {
    position: sticky;
    top: 30px;
    /* background: #121212; */
    z-index: 1000;
    width: fit-content;

    /* text-align: center; */
    padding: 2rem 6rem;

  }
  .h1exp{
    margin-top: 30px;
    text-align: center;
}
  
.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
background: rgba(0, 0, 0, 0.46);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.6px);
-webkit-backdrop-filter: blur(4.6px);
border: 1px solid rgba(0, 0, 0, 0.31);
    padding: .7rem 1rem;
    border-radius: 50px;
  }
  
  .tabs button {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: .7rem 1rem;

  }
  
  .tabs button.active {
    /* font-weight: bold; */
    background-color: rgba(255, 255, 255, 0.877);
    color: #000000;
    border-radius: 50px;
    background-image: url(assets/tabcycle.gif);
    background-position: center center;
    background-size: contain;
    transition: .3s ease;
    
  }
  .content-section {
    height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #282c34; */
    color: white;
    font-size: 1.5rem;
    /* border-bottom: 1px solid #444; */
  }
  
  
.custom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.content {
    max-width: 50%;
}

.subtitle {
    color: #5ce1e6;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background-image: url(assets/2815064.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(50px) ; 
  
}
.image-container img:hover{
  transition: .3s ease-in-out;
  transform: rotate(-10deg) !important;
}

     /* Responsive Design */
     @media (max-width: 468px) {
        
.custom-section {
    flex-direction: column;
}
.content {
   text-align: left;
}

.subtitle {

    font-size: .8rem;
   
}

.title {
    font-size: 1.5rem;
  
}

.description {
    font-size: .6rem;
   
}

      }




/* process  */
.process-container {
    display: flex;
    justify-content: space-evenly;
    background-color: #000000;
    padding: 7rem 60px;
    position: relative;
    flex-wrap: wrap; 
    background-image: url(assets/step.gif);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  
  .header-step {
    position: sticky;
    top: 200px;
  }
  
  .process-header h4 {
    color: #5ce1e6;
  }
  
  .process-header h1 {
    font-size: 3.4rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  /* Steps */
  .step {
    width: 450px;
    position: sticky;
    top: 200px;
    background-color: #1C2531;
    margin: 20px 1px;
    padding: 30px 20px;
    border-radius: 3px;
    border: 1px solid #555;
  }
  
  .step h2 {
    color: #5ce1e6;
  }
  
  .step h3 {
    color: #fff;
    margin: 10px 0px;
  }
  
  .step p {
    color: #c3c3c3;
  }
  
  .rotateleft {
    transform: rotate(2deg);
  }
  
  .rotateright {
    transform: rotate(-2deg);
  }
  
   /* Responsive Design */
   @media (max-width: 468px) {
    .form-container {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
   
      text-align: left;
    }
    

    .step {
        width: auto;
        position: sticky;
        top: 200px;
        background-color: #1C2531;
        margin: 20px 1px;
        padding: 30px 20px;
        border-radius: 3px;
        border: 1px solid #555;
      }
      
    
          }
    

  

    /* faq  */
    .faq-section{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }
      .section-title12{
        width: 100%;
        text-align: center;
        padding: 20px 1px;
      }
      .h2class{
        font-size: 2rem;
      }
      .down{
        transition: background-color 0.3s ease; 
  
      }
      .faq-container {
        width: 100%;
        max-width: 600px;
        /* background-color: #ffffff; */
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }
  
      .faq-item {
        border-bottom: 1px solid #e9ecef;
      }
  
      .faq-item:last-child {
        border-bottom: none;
      }
  
      .faq-question {
        padding: 20px;
        font-size: 20px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        /* background-color: #f1f3f5; */
        transition: background-color 0.3s ease;
      }
  
      .faq-question:hover {
       border-bottom: 1px solid #6c757d;
      }
  
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        /* background-color: #ffffff; */
        color: #6c757d;
        font-size: 20px;
        line-height: 1.6;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
  
      .faq-answer.open {
        max-height: 200px; /* Adjust for longer answers */
        padding: 15px 20px;
        overflow-y: scroll;
      }
  
      .arrows {
        font-size: 18px;
        transition: transform 0.3s ease;
        color: #5ce1e6;
      }
  
      .arrows.open {
        transform: rotate(90deg);
      }
      .faq{
        text-align: center;
        font-size: 16px;
      }
      .faq a{
        color: #5f4ac3;
        text-decoration: none;
      }
      .faq-question.active .arrows {
        transform: rotate(90deg);
      }
      /* Responsive Design */
      @media (max-width: 768px) {
        .faq-question {
          font-size: 14px;
          padding: 15px;
        }
  
        .faq-answer {
          font-size: 13px;
        }
      }
  
      @media (max-width: 480px) {
        .faq-container {
          max-width: 90%;

        }
        .hero h1 {
          font-size: 2rem;
          margin-bottom: 1rem;
          color: white;
        }
      
      }
  
      /* footer  */  
      footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        position: relative;
      }
  
      .banner {
        width: 80%;
        max-width: 1000px;  /* Maximum width for larger screens */
        padding: 50px;
        background-color: #1C2531;
        color: white;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: .3s;
      }
  
      .banner:hover {
        transform: rotate(-5deg);
      }
  
      .banner h1 {
        font-size: 3rem;
      }
  
      /* Button styling */
      .btn {
        padding: 10px 20px;
        border: none;
        background-color: #5ce1e6;
        color: white;
        font-size: 1rem;
        cursor: pointer;
        text-decoration: none;
        margin-top: 20px;
        border-radius: 5px;
        transition: background-color 0.3s;
      }
  
      .btn.primary:hover {
        background-color: #197f83;
    transform: rotate(1deg);
  
      }
  
      .footer-nav{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 30px;
        color: white;
      }
      
  
      /* model  */
  
  .highlight {
    font-weight: bold;
    color: #5ce1e6;
    cursor: pointer;
    text-decoration: none;
  }
  
  .highlight:hover {
    text-decoration: underline;
    transform: rotate(1deg);
  
  }



  /* call now  */

  

/* Call Now Button Styling */
.call-now-button {
    position: fixed; 
    top: 50%; 
    right: 0; 
    transform: translateY(-50%); 
    width: 200px; 
    padding: 10px 0;
    background-color: #ff2600; 
    color: white;
    text-align: center;
    border-radius: 8px 0 0 8px; 
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: slide-in 1s ease-in-out; 
    display: none;
    z-index: 9999;
  }
  .call-now-buttonwp{
    position: fixed; 
    top: 50%; 
    left: 0; 
    transform: translateY(-50%); 
    width: 200px; 
    padding: 10px 0;
    background-color: #04c925; 
    color: white;
    text-align: center;
    border-radius:0 8px 8px 0; 
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: slide-inwp 1s ease-in-out; 
    display: none;
    z-index: 9999;
  }
  /* Call Now Link Styling */
  .call-now-link {
    
    display: block;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Slide-in Animation */
  @keyframes slide-in {
    from {
        right: -200px; 
    }
    to {
        right: 0; 
    }
  }
  
  @keyframes slide-inwp {
    from {
        left: -200px; 
    }
    to {
        left: 0; 
    }
  }

  

  
@media (max-width: 768px) { /* Tablet */
   
    
        /* tabs  */
        .sticky-header {
            flex-direction: column;
            padding: 1rem;
            gap: 15px;
        }
        .containersocool {
            flex-direction: column;
            align-items: flex-start;
        }
        .tabs button {
            font-size: 0.8rem;
            padding: 0.5rem;
        }
    
        .custom-section {
            text-align: left;
            gap: 1rem;
            padding: 1px;
        }
        
    
        .content {
            max-width: 60%;
        }
    
        .image-container img {
            max-width: 250px;
        
        }
    
        .top-section h1 {
            font-size: 1.5rem;
        }
    
        .top-section p {
            font-size: 1.2rem;
        }
        .content-section{
            height: 50vh;
        }
      
        /* work  */
        .section-title h2 {
            font-size: 24px;
        }
    
        .work-content h3 {
            font-size: 24px;
        }
    
        .work-content p {
            font-size: 14px;
        }
    
        .work-image {
            height: 200px;
        }
        /* process  */
        .process-header h1 {
            font-size: 2.4rem;
        }
    
        .step h2 {
            font-size: 1.8rem;
        }
    
        .step h3 {
            font-size: 1.2rem;
        }
    
        .step p {
            font-size: 0.9rem;
        }
        /* banner  */
        .banner {
            width: 95%; /* Use 95% width on mobile */
            padding: 30px;
          }
    
          .banner h1 {
            font-size: 2rem; /* Smaller font size for mobile */
          }
    
          .btn {
            font-size: 0.8rem;
            padding: 6px 12px;
          }
    }

  
@media (max-width: 480px) { /* Mobile */

 /* form  */
 
.modal-content {
  margin: 10% auto;
  
  border-radius: 10px;
  width: 350px !important;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
 
}



    .call-now-buttonwp,
    .call-now-button{
     width: 50px;
    }
  
     /* tabs  */
     .sticky-header {
         flex-direction: column;
         gap: 10px;
     }
 
     .tabs {
         flex-direction: row;
         gap: 0.5rem;
         display: none;
     }
 
     .tabs button {
         padding: 0.6rem;
         width: 100%;
     }
 
     .custom-section {
         gap: 1.5rem;
     }
 
     .content {
         max-width: 100%;
     }
 
     .image-container img {
         max-width: 200px;
     }
 
     .top-section h1 {
         font-size: 1.2rem;
     }
 
     .top-section p {
         font-size: 1rem;
        text-align: center;
          padding: 2rem 1rem;
     
        
     }
     .content h1{
         font-size: 1.6rem;
     }
     .content p{
         font-size: 1rem;
     }
     .content-section{
         height: auto;
     }
 
    
     /* process  */
     
     .process-header h1 {
         font-size: 1.8rem;
     }
     
 
     .step {
         padding: 15px;
     }
 
     .step h2 {
         font-size: 1.5rem;
     }
 
     .step h3 {
         font-size: 1rem;
     }
 
     .step p {
         font-size: 0.8rem;
     }
     /* banner  */
     .banner {
         width: 100%; /* Full width on extra small devices */
         padding: 20px;
       }
 
       .banner h1 {
         font-size: 1.6rem; /* Smaller font size for small screens */
       }
 
       .btn {
         font-size: 0.8rem;
         padding: 6px 12px;
       }
       .footer-nav p{
   font-size: .6rem;
       }
 }
 


 /* animate abounce revere se  */

 @keyframes bounce-reverse {
    0%, 100% {
      transform: translateY(0);
      animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
      transform: translateY(-25%);
      animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
  }
  
  .animate-bounce-reverse {
    animation: bounce-reverse 2s infinite;
  }
  


  /* form . */
/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.685);
  z-index: 99999;
}

.modal-content {
  margin: 10% auto;
  
  border-radius: 10px;
  width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 2.6rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
 
}

.close-btn:hover {
  color: #f00;
}



.form-input:focus {
  border-color: #5ce1e6;
  box-shadow: 0px 0px 3px #5ce1e6;
}

.email-container {
  position: relative;
}

.email {
  width: 100%;
}

.email-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: #5ce1e6;
  color: #fff;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 5px;
}

.submit-btn {
  background-color: #5ce1e6 !important;
  color: #1a0000;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #199a9e !important;
  transform: rotate(1deg);
}
.arrowhero{
  margin: 40px 1px 10px 1px;
  filter: opacity(.1);
  
}