* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Reusable container17 */
.container17 {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Reusable Section */
.section {
  width: 100%;
  /* padding: 60px 0; */
}

/* Navbar */
.navbar11 {
  width: 100%;
  background-color: #fff;
  padding: 12px 0;
}

.navbar-container1711 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo11 {
  height: 70px;
}

.tollfree11 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toll-icon11 {
  width: 65px;
}

.toll-number11 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

/* Hero Section */
.hero11 {
  background: url('img/banner1.jpg') no-repeat top center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.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 0;
  color: #fff;
  overflow-x: hidden;
}

.hero11-content11 {
  max-width: 600px;
}

.hero11-content11 h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero11-content11 p {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Phone Button */
.chat-btn11 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e30613;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 44px;
  white-space: nowrap;
}

.phone-icon11 {
  width: 30px;
  height: 30px;
}

.highlight11 {
  color: #fff523;
  font-weight: bold;
}

.platforms11 {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero11-overlay11 {
    padding: 30px 0;
    text-align: left;
    justify-content: center;
    background-color: black;
  }

  .hero11-content11 {
    margin: auto;
    max-width: 100%;
  }

  .chat-btn11 {
    font-size: 28px;
    padding: 8px 20px;
  }

  .phone-icon11 {
    width: 20px;
    height: 20px;
  }

  .tollfree11 {
    display: none !important;
  }
  .call-box{
      display: none !important;

  }
}
 .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: 22px;
  color: #0d6efd;
  font-weight: bold;
  text-decoration: none;
}

.call-text:hover {
  text-decoration: underline;
}