    /* style.css */
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      background: #fefefe;
      color: #333;
    }
    header {
      background: linear-gradient(90deg, #0975a0, #0077cc);
      color: white;
      padding: 20px 15px;
      text-align: center;
      animation: slideIn 1s ease-in-out;
    }
    header h1 {
      font-size: 26px;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background: #ffffffde;
      padding: 10px;
      border-radius: 5px;
      margin-top: 5px;
    }
    nav a {
      margin: 5px 10px;
      text-decoration: none;
      color: #00509e;
      font-weight: bold;
    }
    nav a:hover {
      text-decoration: underline;
    }
        .hero {
    position: relative;
    background: url('./images/homeApplianceAll.webp') no-repeat center center/cover;
    height: 35em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    animation: fadeIn 2s ease-in-out;
    flex-direction: column;
    row-gap: 10px;
    overflow: hidden;
    }

    .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Change color and opacity here */
    z-index: 1;
    }

    .hero > * {
    position: relative;
    z-index: 2;
    }
    .heroContactbutton{
        flex-direction: column;
    }
    .coverButton {
    background-color: #007bff;      /* Blue background */
    padding: 12px 24px;             /* Space inside button */
    border: none;                   /* No border */
    border-radius: 30px;            /* Rounded corners */
    font-size: 16px;                /* Text size */
    font-weight: bold;              /* Bold text */
    cursor: pointer;                /* Hand cursor */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow */
    transition: all 0.3s ease;      /* Smooth animation */
    text-decoration: none;
    }
    .coverButtonHref{
        color: white;                   /* White text */
        text-decoration: none;
    }
    .coverButton:hover {
    background-color: #0056b3;      /* Darker blue on hover */
    transform: scale(1.05);         /* Slight zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* More shadow */
    }
    .hero h2 {
      font-size: 22px;
    }
    .section {
      padding: 20px;
      animation: fadeInUp 1s ease-in-out;
    }
    .sectionCover {
      animation: fadeInUp 1s ease-in-out;
      width:70%;
    }
    .coverContentConatiner{
        padding: 10px;
        background-color: rgba(43, 153, 226, 0.251);
    }
    .coverContentConatinerA{
        text-align: center;
    }
    .coverContentConatinerB{
        padding: 10px;
        display: flex;
        flex-direction: row;
    }
    .coverContentConatinerB {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* ✅ This allows children to wrap on small screens */
    gap: 10px; /* Optional - spacing between items */
    }
    .coverSubConatiner{
        padding: 5px;
    }
.product img {
  width: 100%;
  max-width: 400px; /* You can change this value as per your design */
  height: auto;
  display: block;
  margin: 0 auto; /* center the image */
  border-radius: 8px;
}
    .product img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 10px;
    }
    .contact, .booking {
      background: #e3f2fdcd;
      padding: 20px;
      border-radius: 10px;
    }
    .choiceSection{
        background-color: #0077cc;
        
       
        padding: 20px;
        color:white
    }
    .faq-container {
      max-width: 800px;
      margin: auto;
    }

    .faq-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 28px;
      color: #333;
    }

    .faq {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .faq-question {
      padding: 20px;
      cursor: pointer;
      font-weight: bold;
      font-size: 18px;
      position: relative;
    }

    .faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .faq.active .faq-question::after {
      content: '-';
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #555;
      background-color: #fafafa;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .faq.active .faq-answer {
      max-height: 500px;
      padding: 15px 20px 20px 20px;
    }

    @media (max-width: 600px) {
      .faq-question {
        font-size: 16px;
      }
      .faq-answer {
        font-size: 14px;
      }
    }
 /* Always hide by default (desktop & tablet) */
.mobile-call-button {
  position:fixed;
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
/* Timing and Loaction section*/
 .service-table-container {
    margin: 40px 20px;
    padding: 25px;
    background: #f9fbff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .service-table-container h3 {
    color: #007bff;
    margin-bottom: 15px;
  }

  .service-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
  }

  .service-table th, .service-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
  }

  .service-table th {
    background-color: #007bff;
    color: white;
  }

  .holiday-row {
    background-color: #ffebeb;
    color: red;
    font-weight: bold;
  }

  .districts-area h4 {
    margin-bottom: 10px;
    color: #333;
  }

  .districts-area ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .districts-area ul li {
    margin: 5px 0;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .service-table-container {
      padding: 15px;
    }

    .service-table th, .service-table td {
      font-size: 14px;
      padding: 8px;
    }
  }

/* Disclaimer Section */
 .disclaimer-section {
    background-color: #fff7e6;
    border-left: 5px solid #ff9800;
    padding: 20px;
    margin: 30px 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  .disclaimer-section h4 {
    color: #d17b00;
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    .disclaimer-section {
      margin: 20px 10px;
      font-size: 14px;
    }
  }

/* Show only in mobile view */
@media (max-width: 768px) {
  .mobile-call-button {
    display: block !important;
    visibility: visible;
    pointer-events: auto;

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: green;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
    cursor: pointer;
  }

  .mobile-call-button:hover,
  .mobile-call-button:focus {
    background-color: #009900;
    outline: none;
  }
}
    form input, form textarea {
      width: 100%;
      margin: 8px 0;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    form button {
      background: #0077cc;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
    }
    footer {
      text-align: center;
      background: #0975a0;
      color: white;
      padding: 15px;
      margin-top: 40px;
      /* margin-bottom: 80px; */
      height: 10rem;
    }
    @keyframes slideIn {
      from { transform: translateY(-100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes fadeInUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @media (max-width: 600px) {
      header h1 { font-size: 20px; }
      .hero h2 { font-size: 18px; text-align: center; padding: 0 10px; }
    }
  /* Spinner Section */
    .spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* overlay top of everything */
  }

  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db; /* spinner color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  

  
/* Section Styling */
section {
  background-color: #ffffff;
  padding: 30px 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  max-width: 800px;
}

section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  border-bottom: 2px solid #27ae60;
  padding-bottom: 10px;
}

section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Style for the unordered list inside "Why Choose Us" and "Our Services" */
section ul {
  list-style-type: none;
  padding-left: 0;
}

section ul li {
  font-size: 1.1rem;
  margin: 15px 0;
  position: relative;
}

section ul li::before {
  /* content: "✔"; */
  color: #27ae60;
  position: absolute;
  left: 0;
  font-size: 1.rem;
  top: 0;
}

/* Hover Effect for Sections */
section:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Styling for strong elements inside the paragraph */
section p strong {
  color: #27ae60;
  font-weight: bold;
}

/* Mobile Responsive Styling */
@media screen and (max-width: 768px) {
  section {
    padding: 20px;
    margin: 15px;
  }

  section h2 {
    font-size: 1.6rem;
  }

  section p {
    font-size: 1rem;
  }

  section ul li {
    font-size: 1rem;
  }
}