

/* ===== 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%;
}



/* OVERLAY */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

/* POPUP */
.form-box {
    width: 92%;
    max-width: 360px;
    background: #fff;
    padding: 24px 20px 26px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}

/* TITLE */
.form-box h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-box h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: #f5b300;
    margin: 10px auto 18px;
    border-radius: 2px;
}

/* INPUT COMMON */
input,
select {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 16px;
    font-size: 15px;
    margin-bottom: 14px;
    outline: none;
    box-sizing: border-box;
}

/* PHONE WRAPPER */
.phone-wrapper {
    position: relative;
    width: 100%;
    height: 52px;
    margin-bottom: 14px;
}

/* INPUT */
.phone-wrapper input {
    width: 100%;
    height: 52px;
    padding-left: 75px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

/* FLAG */
.flag-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 14px;
    background-image: url("https://upload.wikimedia.org/wikipedia/en/4/41/Flag_of_India.svg");
    background-size: cover;
    background-position: center;
    z-index: 2;
    pointer-events: none;
}

/* +91 */
.country-code {
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #000;
    z-index: 2;
    pointer-events: none;
}


/* SELECT ARROW */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' 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");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* BUTTON */
button {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    background: #1466ff;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}
