#mobile-menu{
    z-index:99
}

  body {
    font-family: 'Inter', sans-serif;
  }
  .navbar {
    font-family: 'Montserrat', sans-serif;
  }
  
  
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
        transition: all 0.3s ease;
    }
    
    .whatsapp-float a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        font-size: 30px;
        animation: pulse 2s infinite;
    }
    
   
    
    .whatsapp-float .whatsapp-text {
        display: none;
        background-color: #25D366;
        color: white;
        padding: 8px 15px;
        border-radius: 30px;
        margin-right: 15px;
        font-size: 16px;
        font-weight: 500;
    }
    
    
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
    
    @media (max-width: 768px) {
        .whatsapp-float a {
            width: 50px;
            height: 50px;
            font-size: 25px;
        }
    }


/* Ensure smooth rotation for the arrow */
.rotate-180 {
    transform: rotate(180deg);
  }



.slider-container {
  position: relative;
  width: 80%;
  margin: auto;
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider img {
  padding: 10px;
  max-height: 100%;
  object-fit: contain;
}

/* Navigation Buttons */
.slick-prev, .slick-next {
  position: absolute !important;  /* Force positioning */
  top: 50% !important;
  transform: translateY(-50%) !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: white !important;
  border: none !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  z-index: 1000 !important;
  cursor: pointer !important;
  display: flex !important;  /* Force visibility */
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;  /* Prevent hiding */
  visibility: visible !important; /* Ensures visibility */
}

.slick-prev:hover, .slick-next:hover {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.slick-prev { left: -30px !important; }
.slick-next { right: -30px !important; }

.slide-item {
  background: #fff !important;
}


.power-up-container {
    margin-top: 70px !important;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #CFE6FF;
    border-radius: 24px;
    overflow: hidden;
  }
  
  .power-up-content {
    flex: 1;
    padding: 20px;
    min-width: 70%;
  }
  .power-up-content h1{ font-size: 32px;} 
  .power-up-image {
    flex: 1;
    min-width: 40%;
    display: flex;
    align-items: flex-end;
  }
  
  .power-up-image img {
    height: 350px !important;
    position: absolute;
    object-fit: cover;
    
  }
  
  h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .power-up-form {
    
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: white;
    border-radius: 48px;
    padding: 6px;
}
  .power-up-form input,
  .power-up-form select {
    flex: 1;
    min-width: 120px;
    width: 320px;
    padding: 0px 10px;
    border-radius: 100px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  .power-up-form select {
    appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 15px center;
    background-size: 15px;
    padding-right: 40px;
  }
  
  .power-up-form button {
    padding: 10px 20px;
    background: #1B214E;
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
  }
  
  @media (max-width: 900px) {
    .power-up-container {
      flex-direction: column;
    }
    
    .power-up-content,
    .power-up-image {
      min-width: 100%;
    }
    
    .power-up-image {
      order: -1;
      height: 300px;
    }
    
    .power-up-image img {
      object-position: center top;
    }
  }
  
  @media (max-width: 600px) {
    .power-up-image img {
      display:none !important;
    }
    .power-up-form {
      flex-direction: column;
      border-radius:8%  !important;
    }
    
    .power-up-form input,
    .power-up-form select,
    .power-up-form button {
      width: 100%;
    }
    
    h1 {
      font-size: 32px;
    }
    
    p {
      font-size: 18px;
    }
  }









  /* Services */
  
  body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  .container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
  }
  .flex-container {
      display: flex;
      gap: 20px;
      align-items: stretch; /* This makes columns equal height */
  }
  .column {
      flex: 1;
      display: flex;
      flex-direction: column;
  }
  .stats-card {
      padding: 30px;
      border-radius: 24px;
      margin-bottom: 20px;
      flex: 1; /* This makes cards take equal space */
      display: flex;
      flex-direction: column;
  }
  .blue-card {
      background-color: #EFF6FF;
  }
  .orange-card {
      background-color: #FFEDD5;
  }
  .dark-blue-card {
      background-color: #1E1B4B;
      color: white;
  }
  .teal-card {
      background-color: #CCFBF1;
  }
  .card-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      object-fit: contain;
  }
  .stat-number {
      font-size: 72px;
      font-weight: 600;
      margin: 20px 0 5px;
      line-height: 1; /* Tighter line height for big numbers */
  }
  .stat-label {
      font-size: 14px;
  }
  .card-text {
      margin-top: 20px;
      font-size: 16px;
      margin-bottom: 0; /* Remove default margin */
  }
  .center-image-container {
      display: flex;
  }
  .center-image {
      width: 100%;
      border-radius: 24px;
      object-fit: cover;
      height: 100%; /* Take full height of container */
  }
  @media (max-width: 768px) {
      .flex-container {
          flex-direction: column;
      }
      .stat-number {
          font-size: 48px;
      }
      .center-image {
          height: 400px; /* Fixed height on mobile */
          margin: 20px 0;
      }
  }




/* Project */

  .h-24{
    height:24rem !important;
}

.tab-button.active {
    background-color: #1e1b4b;
    color: white;
  }
  .project-tab {
    transition: opacity 0.3s ease;
  }




  /* Contact */
  .sdsd{
            
    position: absolute;
    top: 63%;
    left: 61%;

        }
        .faq-answer p{
            color:white;
        }
        .faq-answer {
            margin-top: -20px;
            }
        @media (max-width: 600px) {
          .sdsd {
            
            left: 18% !important;
        }
      
        }