

/* ===== HEADER STYLE ===== */
.main-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 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: #4bb864;
  
}

.header-icon.call:hover {
  background-color: #d69c0f;
}

.header-icon.whatsapp {
  background-color: #134e6e;

}

.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 10px;
  margin-left: 15px;
  margin-right: 15px;
  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;
}



/* =========================
   MOBILE RESPONSIVE (≤768px)
========================= */
@media (max-width: 768px) {

    /* Default logo */
    .logo-container img {
        width: 130px;        /* smaller for mobile */
        padding-left: 0;
    }

    /* Service card logo */
    .service-card .logo-container img {
        max-width: 180px;
        width: 100%;
        margin-bottom: 12px;
        
}
}


/* === H1 (Main Heading) === */
h1 {
 font-size: clamp(22px, 1vw, 25px);
  font-weight: 700;
  color: #111;
  margin: 0px auto 15px;
  padding: 0;
  line-height: 1.3;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  max-width: 800px;
   
    white-space: nowrap;
    
    
    
}
@media (max-width: 768px) {
  h1 {
    max-width: 40ch; /* fewer words per line on mobile */
  }
}


/* === 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;
  
  display: block;
  padding-bottom: 6px;
  max-width: 850px;
  min-width: 50px;
}

h4 {
    text-align: center;
}



.description {
  font-size:  clamp(18px, 1vw, 20px);
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
  margin-left: 10px;
  margin-right: 10px;
  
  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: 10px;
  padding: 10px 10px;
  width: 90%;
  max-width: 180px;
  transition: all 0.3s ease;
}

.btn i {
  margin-right: 10px;
  font-size: 18px;
}

.call-btn {
  background-color: #4bb864;
}

.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%;
}



.popup-overlay {
    position: fixed;
    display: none;
}
.popup-form {
    position: fixed;
    display: none;
}


.popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 999;
}

.form-box {
    width: 92%; max-width: 280px; background: #fff;
    padding: 24px 20px; border-radius: 18px;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -55%); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-box h2 { text-align: center; font-size: 22px; margin-bottom: 4px; }
.form-box h2::after {
    content: ""; display: block; width: 44px; height: 3px;
    background: #f5b300; margin: 10px auto 18px; border-radius: 2px;
    
}

/* Icons Logic */
.input-group { position: relative; margin-bottom: 12px; }
.input-icon {
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%); width: 16px; color: #666; pointer-events: none;
}

input, select {
    width: 100%; height: 35px; border-radius: 10px;
    border: 1px solid #ddd; padding: 0 12px 0 38px;
    font-size: 14px; outline: none; box-sizing: border-box;
}

/* Phone Section */
.phone-wrapper { position: relative; width: 100%; height: 42px; margin-bottom: 12px; }
.phone-wrapper input { padding-left: 75px; height: 35px; }
.flag-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 22px; height: 14px; z-index: 2;
    background: url("https://upload.wikimedia.org/wikipedia/en/4/41/Flag_of_India.svg") center/cover;
}
.country-code {
    position: absolute; left: 44px; top: 50%; transform: translateY(-50%);
    font-size: 14px; font-weight: 600; z-index: 2;
}

/* Select Styling */
select {
    appearance: none;
    background: 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'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
}

.other-input { display: none; margin-top: -8px; margin-bottom: 12px; padding-left: 12px; border-color: #f5b300; }

/* Warranty */
.warranty-field { font-size: 14px; font-weight: 600; margin-bottom: 15px; }
.radio-row { display: flex; gap: 15px; margin-top: 5px; }
.radio-row label { font-weight: normal; cursor: pointer; display: flex; align-items: center; }
.radio-row input { width: 16px; height: 16px; margin-right: 5px; accent-color: #007bff; }

.close-btn { position: absolute; top: 12px; right: 14px; cursor: pointer; font-size: 22px; color: #666; }
button[type="submit"] {
    width: 100%; height: 35px; border-radius: 12px;
    background: #134e6e; color: #fff; border: none;
    font-size: 18px; font-weight: 600; cursor: pointer;
}

/* REGISTER BUTTON FIX (Landing Page) */
/* Replace your current 'button' css with this */
button.register-btn {
    background: #f0f0f0;
    border: 1px solid #999;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* SUBMIT BUTTON (Inside Popup) */
.submit-btn {
    width: 100%;
    height: 45px;
    background: #134e6e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* SUBMIT BUTTON (Inside Popup) */
.submit-btn {
    width: 100%;
    height: 45px;
    background: #134e6e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* THANK YOU POPUP STYLING (Matching your image) */
.thank-you-state {
    text-align: center;
    padding: 20px 10px;
}

.thank-you-state .check-icon {
    width: 70px;
    height: 70px;
    background: #22c55e; /* Bright green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.thank-you-state h2 {
    color: #e91e63 !important; /* The Pink color from your image */
    font-family: 'Georgia', serif; /* Serif font for "Thank You!" */
    font-size: 32px;
    margin-bottom: 15px;
}

.thank-you-state h2::after { display: none; } /* Hide the yellow bar on success */

.thank-you-state p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Footer & Back Home Button */
.thank-you-footer {
    border-top: 1px solid #eee;
    margin: 0 -20px -26px; /* Align with box padding */
    padding: 15px 20px;
    text-align: right;
}

.back-home-btn {
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
}

/* Thank You Popup Container */
.thank-you-container {
    text-align: center;
    padding: 20px 0 0 0;
    background: #fff;
    border-radius: 12px;
}

/* Green Checkmark */
.success-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 15px;
}

/* Pink "Thank You!" Text */
.thank-you-container h2 {
    color: #e91e63; /* Pink shade from your image */
    font-family: 'Georgia', serif; /* Classic serif style */
    font-size: 30px;
    margin-bottom: 8px;
}

/* Subtext Message */
.thank-you-container p {
    color: #444;
    font-size: 15px;
    margin-bottom: 25px;
    padding: 0 15px;
}

/* Footer with Border */
.thank-you-footer {
    border-top: 1px solid #eee;
    padding: 15px;
    text-align: right; /* Aligns button to the right */
}

/* Blue Button */
.back-home-btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

/* BUTTON */
button {
    width: 65%;
    height: 40px;
    border-radius: 12px;
    background: #383838;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}