

/* ===== 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 10px;
    justify-content: space-around;
}

.header-left img {
  height: auto;
  display: flex;
  width: auto;
  gap: 15px;
 
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  
}

.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 {
   font-family: "Poppins", Arial, sans-serif;
   background-color: #f6f6f6;
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   padding: 100px;

}

.service-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 80px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


  .logo-container img {
  width: 150px;
  padding-left: 0px;
}


/* === H1 (Main Heading) === */
h1 {
 font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: #111;
  margin: 0px auto 15px;
  padding: 0;
  line-height: 1.3;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  max-width: 800px;
    text-overflow: ellipsis; 
    white-space: nowrap;
    overflow: hidden;
    
}

/* === H2 (Sub Headings) === */
h2 {
  font-size: 25px;
  font-weight: 600;
  color: #222;
  margin: 20px auto 12px;
  padding: 0;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  border-bottom: 2px solid #f2b01e;
  display: block;
  padding-bottom: 6px;
  max-width: 850px;
  min-width: 50px;
}


.description {
  font-size:  clamp(18px, 1vw, 20px);
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
  margin-left: 0px;
  text-align: center;
    
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  padding: 14px 25px;
  width: 90%;
  max-width: 250px;
  transition: all 0.3s ease;
}

.btn i {
  margin-right: 10px;
  font-size: 18px;
}

.call-btn {
  background-color: #f2b01e;
}

.call-btn:hover {
  background-color: #d69c0f;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #1eb54a;
  transform: translateY(-2px);
}

.footer-text {
  font-size: 17px;
  color: #888;
  margin-top: 10px;
 font-weight: bold;

}

.footer-para {
  font-size: 18px;
  color: #202124;
  margin-top: 10px;
 font-weight: 0px ;
}

.one-line {
  white-space: nowrap;
  overflow: hidden;      /* optional */
  text-overflow: ellipsis; /* optional (adds … if too long) */
}


html, body {
    margin: 0;
    padding: 0;
    padding-top: 50px;
    width: 100%;
    overflow-x: hidden;
    display: flex;
}

section, div {
    max-width: 100%;
}
