/* =========================
   Global Styles
========================= */
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
   
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #ff9800 !important;
}

/* =========================
   Top Slider
========================= */
.top-slider {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  animation: slideInDown 1s ease;
}

/* =========================
   Header
========================= */
header .logo img {
  border: 2px solid #ddd;
  padding: 5px;
}


/* =========================
   Hero Section
========================= */
.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7)), 
              url("/assets/quick-home-appliance-repair-dubai-abu-dhabi.webp") center/cover no-repeat;
  height: 90vh;
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  color: #fff;
}

.hero h2 {
  color: #ffeb3b;
  margin-bottom: 1rem;
}

.pulse-btn {
  background: #ff9800;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pulse-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

/* =========================
   Services Cards
========================= */
.service-card {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 1rem;
  border-radius: 0 0 12px 12px;
}

/* =========================
   Product Section
========================= */
.product-section {
  background: linear-gradient(to right, #fdfdfd, #f7f7f7);
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.product-section ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* =========================
   Testimonials
========================= */
.testimonial-slider blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin: 1rem auto;
  max-width: 600px;
}

.testimonial-slider img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff9800;
}

/* =========================
   News Section
========================= */
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.news-card img {
  height: 220px;
  object-fit: cover;
}
/* Hero Section */
    .hero-banner {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    /* Background */
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(63,94,251,0.6), rgba(252,70,107,0.7)),
        url("/assets/electric\ stove.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      animation: zoomInBg 18s ease-in-out infinite alternate;
      z-index: -1;
    }

    /* Content */
    .hero-text {
      max-width: 850px;
      padding: 20px;
    }

    .hero-text h3 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      font-weight: 500;
      opacity: 0;
      animation: fadeDown 1.5s forwards;
    }

    .hero-text h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.2;
      background: linear-gradient(90deg, #3f5efb, #fc466b);
      -webkit-text-fill-color: transparent;
      color: transparent; /* important for Firefox */
      opacity: 0;
      animation: fadeUp 2s forwards;
    }

    .hero-btn {
      display: inline-block;
      padding: 14px 32px;
      font-size: 1.1rem;
      font-weight: bold;
      background: linear-gradient(90deg, #3f5efb, #fc466b);
      color: #fff;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 14px rgba(0,0,0,0.3);
      animation: pulseButton 2.5s infinite;
      cursor: pointer;
    }

    .hero-btn:hover {
      background: linear-gradient(90deg, #fc466b, #3f5efb);
      box-shadow: 0 0 20px rgba(252,70,107,0.8);
      transform: translateY(-3px);
    }

    /* Animations */
    @keyframes zoomInBg {
      from { transform: scale(1); }
      to { transform: scale(1.1); }
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulseButton {
      0% { transform: scale(1); }
      50% { transform: scale(1.07); }
      100% { transform: scale(1); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-text h3 {
        font-size: 1.3rem;
      }
      .hero-text h1 {
        font-size: 2.2rem;
      }
      .hero-btn {
        font-size: 1rem;
        padding: 12px 25px;
      }
    }

    @media (max-width: 480px) {
      .hero-text h3 {
        font-size: 1rem;
      }
      .hero-text h1 {
        font-size: 1.5rem;
      }
      .hero-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
      }
    }

/* =========================
   Footer
========================= */
footer {
  border-top: 3px solid #ff9800;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

footer a:hover {
  color: #ff9800;
}

/* =========================
   WhatsApp Floating Button
========================= */
.whatsapp-float {
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =========================
   Animations
========================= */
@keyframes slideInDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,152,0,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255,152,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,152,0,0); }
}

/* =========================
   Map Section
========================= */
.map-section h2 {
  font-size: 1.8rem;
  color: #222;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/*Blog Design*/

#bompani-services h2 {
  font-size: 2rem;
  color: #222;
}

.bompani-service-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bompani-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.bompani-service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.bompani-service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.bompani-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background: #ff9800;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.bompani-btn:hover {
  background: #e68900;
  color: #fff;
}
/* ---------- HERO SECTION ---------- */
    .section-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      background-image: url('assets/homeappliance.png');
      background-size: cover;
      background-position: center;
      filter: brightness(60%);
      animation: heroZoom 12s ease-in-out infinite alternate;
      z-index: -1;
    }

    @keyframes heroZoom {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

    .hero-inner {
      max-width: 90%;
      padding: 1.5rem;
      animation: fadeUp 2s ease;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-heading {
      font-size: 2rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .hero-description {
      font-size: 1rem;
      color: #f1f1f1;
      margin-bottom: 2rem;
    }

    .hero-button {
      display: inline-block;
      background-color: #ff6600;
      color: #fff;
      padding: 12px 30px;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .hero-button:hover {
      background-color: #ff8533;
    }

    /* ---------- RESPONSIVE DESIGN ---------- */

    /* Tablets */
    @media (min-width: 600px) {
      .hero-heading { font-size: 2.5rem; }
      .hero-description { font-size: 1.1rem; }
    }

    /* Desktops */
    @media (min-width: 992px) {
      .hero-inner { max-width: 700px; }
      .hero-heading { font-size: 3rem; }
      .hero-description { font-size: 1.2rem; }
      .hero-button {
        padding: 14px 36px;
        font-size: 1.1rem;
      }
    }

/*freezer repair hero section*/
/* ==== HERO (Bompani Refrigerator Repair) ==== */
.bompani-fridge-hero {
  background: linear-gradient(rgba(0, 51, 102, 0.6), rgba(0, 51, 102, 0.6)),
              url('assets/bomapni\ fridge.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  border-radius: 0 0 20px 20px;
  animation: fadeInFridgeHero 1.5s ease-out;
}

.bompani-fridge-hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.bompani-fridge-hero-content p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInFridgeHero {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (min-width: 768px) {
  .bompani-fridge-hero-content h1 { font-size: 2.6rem; }
  .bompani-fridge-hero-content p { font-size: 1.2rem; }
}


    
/*washing machine */

/* ==== HERO ==== */
/* ==== HERO ==== */
.bompani-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('assets/bomapni appliance.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  animation: fadeInHero 1.5s ease-out;
}

.bompani-hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bompani-hero-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ==== MAIN CONTENT ==== */
.bompani-sections {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.bompani-block {
  text-align: center;
  margin-bottom: 60px;
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.bompani-block img {
  display: block;
  margin: 0 auto 20px; /* ✅ Centers image */
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.bompani-block:hover img {
  transform: scale(1.05);
}

.bompani-block h2 {
  color: #006699;
  font-size: 1.5rem;
  margin: 10px 0;
  text-align: center; /* ✅ Ensures heading is centered */
}

.bompani-block p {
  color: #444;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center; /* ✅ Centers text */
}

/* ==== CONTACT ==== */
.bompani-contact {
  background: linear-gradient(135deg, #006699, #004d66);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
}

.bompani-contact a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
}

/* ==== HERO ANIMATION ==== */
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== RESPONSIVE ==== */
@media (min-width: 768px) {
  .bompani-hero-content h1 { font-size: 2.6rem; }
}




    /*Dryer repair*/
    
    .bompani-dryer-header {
      background: linear-gradient(135deg, #00bcd4, #2196f3);
      text-align: center;
      padding: 70px 20px;
      color: #fff;
    }
    .bompani-dryer-header h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
    }
    .bompani-dryer-header p {
      max-width: 850px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    .bompani-dryer-section {
      max-width: 1100px;
      margin: auto;
      padding: 50px 20px;
    }

    .bompani-dryer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .bompani-dryer-grid img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .bompani-dryer-grid h2 {
      color: #2196f3;
      margin-bottom: 15px;
    }

    .bompani-dryer-issues {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .bompani-dryer-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .bompani-dryer-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,188,212,0.2);
    }
    .bompani-dryer-card h3 {
      color: #00bcd4;
    }

    .bompani-dryer-tips h2 {
      color: #2196f3;
      margin-bottom: 15px;
    }
    .bompani-dryer-tips ul {
      list-style: none;
      padding: 0;
    }
    .bompani-dryer-tips li {
      padding: 8px 0;
    }

    .bompani-cta-light {
      text-align: center;
      background: #00bcd4;
      color: #fff;
      padding: 50px 20px;
      border-radius: 12px;
      margin: 50px 20px;
    }
    .bompani-cta-light h2 {
      margin-bottom: 15px;
    }
    .bompani-btn-light {
      display: inline-block;
      margin-top: 20px;
      background: #fff;
      color: #00bcd4;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .bompani-btn-light:hover {
      background: #2196f3;
      color: #fff;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
      .bompani-dryer-grid {
        grid-template-columns: 1fr;
      }
    }
    /*dishwasher repair*/
    
    /* ==== Hero Section ==== */
    .bompani-dish-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('assets/dishwasher.jpg') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      animation: heroFadeIn 1.8s ease-in-out;
    }

    .bompani-dish-hero h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .bompani-dish-hero p {
      font-size: 1rem;
      opacity: 0.9;
    }

    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ==== Main Content ==== */
    .bompani-dish-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .bompani-dish-section {
      margin-bottom: 40px;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .bompani-dish-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .bompani-dish-section img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .bompani-dish-section h2 {
      font-size: 1.3rem;
      color: #0077a3;
      margin-bottom: 10px;
    }

    .bompani-dish-section p {
      font-size: 0.95rem;
      color: #444;
    }

    /* ==== Contact Box ==== */
    .bompani-dish-contact {
      text-align: center;
      background: #0077a3;
      color: #fff;
      padding: 30px 20px;
      border-radius: 12px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .bompani-dish-contact.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .bompani-dish-contact a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }

    @media (min-width: 768px) {
      .bompani-dish-hero h1 {
        font-size: 2.5rem;
      }
      .bompani-dish-section h2 {
        font-size: 1.5rem;
      }
      .bompani-dish-section p {
        font-size: 1rem;
      }
    }
/*microoven repair*/

    /* ✅ Hero */
    .micro-banner {
      position: relative;
      background: url('https://via.placeholder.com/1600x800?text=Bompani+Microwave+Repair+Dubai') center/cover no-repeat;
      height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .micro-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255,87,34,0.75);
    }
    .micro-banner .banner-content {
      position: relative;
      z-index: 1;
      max-width: 850px;
      padding: 20px;
    }
    .micro-banner h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
    }
    .micro-banner p {
      font-size: 1.1rem;
    }

    /* ✅ About */
    .micro-info {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 70px 20px;
      align-items: center;
      background: #fff;
    }
    .micro-info img {
      width: 100%;
      max-width: 480px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .micro-textbox {
      flex: 1;
    }
    .micro-textbox h2 {
      color: #e64a19;
      margin-bottom: 15px;
    }

    /* ✅ Issues Section */
    .micro-problems {
      background: #fff3e0;
      padding: 70px 20px;
    }
    .micro-problems h2 {
      text-align: center;
      color: #d84315;
      margin-bottom: 50px;
    }
    .problem-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    .problem-box {
      background: #fff;
      border: 2px solid #ffe0b2;
      padding: 25px;
      border-radius: 15px;
      transition: all 0.3s ease;
      text-align: center;
    }
    .problem-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(255,87,34,0.25);
    }
    .problem-box h3 {
      color: #ff5722;
      margin-bottom: 10px;
    }

    /* ✅ Timeline */
    .micro-steps {
      padding: 70px 20px;
      background: #fff;
      text-align: center;
    }
    .micro-steps h2 {
      margin-bottom: 50px;
      color: #e65100;
    }
    .steps-track {
      max-width: 800px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    .step-item {
      background: #fbe9e7;
      border-left: 6px solid #ff7043;
      padding: 20px;
      border-radius: 12px;
      text-align: left;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .step-item h3 {
      margin: 0 0 10px;
      color: #ff5722;
    }

    /* ✅ CTA */
    .micro-cta {
      background: linear-gradient(135deg, #ff5722, #e64a19);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
    }
    .micro-cta h2 {
      margin-bottom: 15px;
      font-size: 2rem;
    }
    .call-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 14px 35px;
      background: #fff;
      color: #d84315;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .call-btn:hover {
      background: #bf360c;
      color: #fff;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
      .micro-info {
        flex-direction: column;
        text-align: center;
      }
      .micro-banner h1 {
        font-size: 2.1rem;
      }
    }