* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }



  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* navbar11 */
  .navbar11 {
    width: 100%;
    
    padding: 10px 40px;
    position: relative;
    z-index: 10;
  }
  
  .navbar11 img {
    height: 50px;
  }
  
  /* hero11 Section */
  .hero11 {
    /* Adjust this value as needed */
    background: url('img/banner1.jpg') no-repeat top center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
  overflow: hidden;  /* ✅ add this */
  }
  
  /* Gradient Overlay */
  .hero11-overlay11 {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 45%, rgba(0, 0, 0, 0.6) 65%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
   padding: 60px 15px;
    color: #fff;
  }
  
  /* Text Content */
  .hero11-content11 {
    
    max-width: 600px;
  }
  
  .hero11-content11 h1 {
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .hero11-content11 p {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .chat-btn11 {
    display: inline-block;
    background-color: #e30613;
    color: #fff;
    padding: 16px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 35px;
  }
  
  .highlight11 {
    color: #fff523;
    font-weight: bold;
  }
  
  .platforms11 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero11-overlay11 {
      padding: 30px;
      text-align: left;
      justify-content: center;
      background-color: black;
    }
    .chat-btn11 {

        font-size: 28px;
    }
     .call-box {
    display: none !important;
  }
  
  
    .hero11-content11 {
      margin: auto;
    }
 
}
  /* service box  */
  .service-box > span {
    margin-top: -82px;
  }

  .call-box {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #0d6efd;
  border-radius: 50px;
  padding:0px 13px 0px 0px;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.call-icon {
  width: 40px;
  height: 40px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-icon img {
  width: 20px;
  height: 20px;
}

.call-text {
  font-size: 28px;
  color: #0d6efd;
  font-weight: bold;
  text-decoration: none;
}

.call-text:hover {
  text-decoration: underline;
}