    body {
      font-family: 'Poppins', sans-serif;
      color: #1e293b;
      background-color: #fff;
      overflow-x: hidden;
    }

    /* General */
    .section {
      padding: 80px 0;
    }

    .highlight {
      color: #facc15;
    }

    .btn-yellow {
      background-color: #facc15;
      color: #111;
      font-weight: 600;
      border-radius: 30px;
      padding: 12px 35px;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
      display: inline-block;
    }

    .btn-yellow:hover {
      background-color: #eab308;
      color: #fff;
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .hero img {
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 1rem;
      color: #6b7280;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    /* Services */

    .services {
      background-color: #f9fafb;
    }

    .services .heading {
      text-align: center;
      margin-bottom: 50px;
    }

    .service-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      transition: 0.3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .service-body {
      padding: 20px;
      text-align: center;
    }

    .service-body h5 {
      font-weight: 700;
      color: #111827;
    }

    .service-body p {
      color: #6b7280;
      font-size: 0.95rem;
    }

    /* Banner */
    .banner {
      position: relative;
      background: url('assets/panasonic-banner.jpg') center/cover no-repeat;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .banner-content h2 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .hero {
        flex-direction: column-reverse;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 2.2rem;
      }

      .banner {
        height: auto;
        padding: 60px 15px;
      }
    }

    @media (max-width: 576px) {
      .hero-text h1 {
        font-size: 1.8rem;
      }

      .btn-yellow {
        width: 100%;
        padding: 12px;
      }

      .service-card img {
        height: 180px;
      }
    }

        /* ===== Banner Section ===== */
    .banner-section {
      position: relative;
      background: url("assets/panasoni\ appliances.png") center/cover no-repeat;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 15px;
    }

    .banner-content h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .banner-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #f9fafb;
    }

    .btn-yellow {
      background-color: #facc15;
      color: #111;
      font-weight: 600;
      border-radius: 30px;
      padding: 12px 35px;
      border: none;
      transition: all 0.3s;
      text-decoration: none;
    }

    .btn-yellow:hover {
      background-color: #eab308;
      color: #fff;
    }

    @media (max-width: 768px) {
      .banner-section {
        height: 350px;
        padding: 40px 20px;
      }

      .banner-content h1 {
        font-size: 2rem;
      }

      .banner-content p {
        font-size: 1rem;
      }
    }

    /* whatsapp button*/
      .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }

  .floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .floating-buttons a img {
    width: 28px;
    height: 28px;
  }

  /* WhatsApp Button */
  .whatsapp-float {
    background-color: #25D366;
  }

  /* Call Button */
  .call-float {
    background-color: #007aa3;
  }

  .floating-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }

  /* 📱 Mobile Adjustments */
  @media (max-width: 600px) {
    .floating-buttons {
      bottom: 15px;
      right: 15px;
      gap: 10px;
    }
    .floating-buttons a {
      width: 50px;
      height: 50px;
    }
    .floating-buttons a img {
      width: 24px;
      height: 24px;
    }
  }
    /*READ MORE BUTTON */
    .read-more-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b4db, #0083b0);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75em 1.8em;
  border: none;
  border-radius: 2em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 131, 176, 0.3);
  text-align: center;
}

/* Hover effect */
.read-more-btn:hover {
  background: linear-gradient(90deg, #0083b0, #00b4db);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 131, 176, 0.5);
}

/* ✅ Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .read-more-btn {
    font-size: 0.9rem;
    padding: 0.7em 1.5em;
    border-radius: 1.8em;
  }
}

@media (max-width: 480px) {
  .read-more-btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
    font-size: 0.95rem;
    padding: 0.8em;
  }
}

/*BLOG */
.panasonic-blog {
    font-family: "Poppins", sans-serif;
    color: #322121;
    background: #fafafa;
    padding: 40px 20px;
    line-height: 1.8;
  }

  .panasonic-blog .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  h1, h2 {
    color: #0d97db;
    margin-bottom: 10px;
  }

  p {
    margin-bottom: 20px;
  }

  ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .responsive-img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .cta {
    text-align: center;
    background: #e6f7fb;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 40px;
  }

  .cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00b4db, #0083b0);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cta-btn:hover {
    background: linear-gradient(90deg, #0083b0, #00b4db);
    transform: translateY(-3px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    h1 { font-size: 1.8rem; text-align: center; }
    h2 { font-size: 1.3rem; }
    p, li { font-size: 0.95rem; }
    .cta-btn { width: 100%; max-width: 280px; }
  }

  @media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    .cta { padding: 15px; }
  }
/*TV REPAIR*/
/* ===== General Section Styling ===== */
.panasonic-repair {
  padding: 40px 15px;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ===== Container ===== */
.panasonic-repair .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #fafafa;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* ===== Headings ===== */
.panasonic-repair h1, 
.panasonic-repair h2 {
  color: #005bb5; /* Panasonic blue tone */
  text-align: center;
  margin-bottom: 20px;
}

.panasonic-repair h1 {
  font-size: 2rem;
}

.panasonic-repair h2 {
  font-size: 1.5rem;
}

/* ===== Paragraphs ===== */
.panasonic-repair p {
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 15px;
}

/* ===== Images ===== */
.panasonic-repair .repair-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 10px;
  object-fit: cover;
}

/* ===== Lists ===== */
.panasonic-repair ul, 
.panasonic-repair ol {
  margin: 10px 0 20px 25px;
}

.panasonic-repair ul li,
.panasonic-repair ol li {
  margin-bottom: 8px;
}

/* ===== Table ===== */
.panasonic-repair .table-wrapper {
  overflow-x: auto;
}

.panasonic-repair .repair-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.panasonic-repair .repair-table th,
.panasonic-repair .repair-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.panasonic-repair .repair-table th {
  background-color: #0078d7;
  color: #fff;
}

/* ===== CTA Box ===== */
.panasonic-repair .cta {
  text-align: center;
  background: #0078d7;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
}

.panasonic-repair .cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #fff;
  color: #0078d7;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.panasonic-repair .cta-btn:hover {
  background: #005bb5;
  color: #fff;
}

/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 992px) {
  .panasonic-repair .container {
    padding: 30px 20px;
  }

  .panasonic-repair h1 {
    font-size: 1.8rem;
  }

  .panasonic-repair h2 {
    font-size: 1.3rem;
  }

  .panasonic-repair p {
    font-size: 0.95rem;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .panasonic-repair .container {
    padding: 20px 15px;
  }

  .panasonic-repair h1 {
    font-size: 1.5rem;
  }

  .panasonic-repair h2 {
    font-size: 1.2rem;
  }

  .panasonic-repair p {
    font-size: 0.9rem;
  }

  .panasonic-repair .repair-img {
    max-width: 100%;
    margin: 15px auto;
  }

  .panasonic-repair .cta {
    padding: 20px;
  }

  .panasonic-repair .cta-btn {
    width: 100%;
    font-size: 1rem;
  }
}
    
/*AC REPAIR */
/* Base (Mobile First) */
.panasonic-ac-blog {
  background-color: #f9f9f9;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
}

.panasonic-ac-blog .container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.ac-section {
  margin-bottom: 40px;
  text-align: center;
}

.ac-section h2 {
  font-size: 1.4rem;
  color: #004b8d;
  margin-bottom: 10px;
}

.ac-section p {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.image-row {
  display: flex;
  flex-direction: column; /* stack images by default on mobile */
  gap: 15px;
}

.image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-box:hover {
  transform: translateY(-4px);
}

.image-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-box .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 75, 141, 0.9);
  color: #fff;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

/* Medium screens (Tablets) */
@media (min-width: 600px) {
  .image-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .image-box {
    flex: 1;
    max-width: calc(50% - 10px);
  }

  .image-box img {
    height: 250px;
  }
}

/* Large screens (Desktop) */
@media (min-width: 992px) {
  .image-box {
    max-width: calc(33.333% - 15px);
  }

  .image-box img {
    height: 280px;
  }

  .ac-section h2 {
    font-size: 1.8rem;
  }

  .ac-section p {
    font-size: 1rem;
  }
}
