

/* ===== HEADER STYLE ===== */
.main-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;

  
}

.header-left img {
  height: 60px;
  width: auto;
  gap: 15px;
 
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s ease;

}

.header-icon.call {
  background-color: #f2b01e;
  
}

.header-icon.call:hover {
  background-color: #d69c0f;
}

.header-icon.whatsapp {
  background-color: #25d366;

}

.header-icon.whatsapp:hover {
  background-color: #1eb54a;
}






/* ===== BODY & LAYOUT ===== */
body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f6f6f6;
  padding-top: 80px; /* to offset fixed header */
  margin: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.service-wrapper {
  max-width: 700px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 30px 20px;
  box-sizing: border-box;
  text-align: center;
}



/* Logo */
.logo-container {
  margin-bottom: 20px;
}

.logo-container img {
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Headings */
h1, h2 {
  margin-bottom: 15px;
  color: #111;
  line-height: 1.3;
  text-transform: capitalize;
  font-weight: 600;
}

h1 {
  font-size: clamp(22px, 4vw, 28px);
}

h2 {
  font-size: clamp(20px, 3.5vw, 26px);
  border-bottom: 2px solid #f2b01e;
  padding-bottom: 6px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Description */
.description {
  font-size: clamp(16px, 2vw, 20px);
  color: #555;
  margin-bottom: 25px;
  font-weight: 200;
  line-height: 1.5;
  padding: 0 10px;
}

/* Buttons container */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Buttons */
.btn {
  background-color: #f2b01e;
  color: white;
  font-weight: 600;
  font-size: 17px;
  padding: 15px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 140px;
  justify-content: center;
  white-space: nowrap;
}

.btn i {
  font-size: 20px;
}

.btn.call-btn {
  background-color: #f2b01e;
}

.btn.call-btn:hover {
  background-color: #d69c0f;
  transform: translateY(-2px);
}

.btn.whatsapp-btn {
  background-color: #25d366;
}

.btn.whatsapp-btn:hover {
  background-color: #1eb54a;
  transform: translateY(-2px);
}

/* Footer */
.footer-text, .footer-para {
  text-align: center;
  color: #888;
  font-weight: 500;
  margin: 10px 0;
  padding: 0 10px;
}

.footer-para {
  color: #202124;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-width: auto;
    padding: 14px 0;
  }

  .header-right {
    justify-content: center;
    width: 100%;
    order: 2;
    margin-top: -25px;
  }
  .header-left {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .service-wrapper {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 10px 10px;
  }

  .header-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  h1 {
    font-size: clamp(18px, 5vw, 22px);
  }

  h2 {
    font-size: clamp(16px, 5vw, 20px);
  }

  .description {
    font-size: clamp(14px, 4vw, 16px);
  }

  .logo-container img {
    width: 140px;
  }
}