:root {
  --bosch-blue: #004aad;
  --light-blue: #e8f0ff;
}
   /* Navbar base */
    .bosch-header {
      background-color: var(--bosch-blue);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 5%;
      color: white;
      font-family: "Poppins", sans-serif;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    /* Brand section */
    .brand-box {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 40px; /* space from left */
    }
    .brand-box img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
    }
    .brand-name {
      font-weight: 600;
      font-size: 1.2rem;
    }

    /* Menu links */
    .menu-links {
      display: flex;
      justify-content: center;
      list-style: none;
      gap: 35px;
      margin: 0;
    }
    .menu-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }
    .menu-links a:hover {
      border-bottom: 2px solid #fff;
    }

    /* Call button */
    .contact-btn {
      background: linear-gradient(45deg, #ff6b6b, #ff3b3b);
      color: white;
      padding: 23px 39px;
      border-radius: 8px;
      border: 2px solid white;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      white-space: nowrap;
      margin-right: 180px; /* space from right edge */
    }
    .contact-btn:hover {
      background: white;
      color: var(--bosch-blue);
      transform: scale(1.05);
    }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 35px;
      height: 28px;
      cursor: pointer;
      margin-right: 40px;
    }
    .hamburger span {
      background: white;
      width: 100%;
      height: 4px;
      margin: 3px 0;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Mobile View */
    @media (max-width: 900px) {
      .bosch-header {
        flex-direction: column;
        align-items: flex-start;
        height: 50px;
        padding: 14px 5%;
      }

      .brand-box {
        margin-left: 10px;
      }

      .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--bosch-blue);
        text-align: left;
        padding: 10px 0;
        gap: 20px;
      }

      .menu-links.active {
        display: flex;
      }

      .contact-btn {
        margin: 10px 0;
        width: 100%;
        text-align: center;
      }

      .hamburger {
        display: flex;
        position: absolute;
        top: 18px;
        right: 25px;
      }

      /* Animation when menu opens */
      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    }
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

/* ---------- Top Banner ---------- */
.top-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.top-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Hero Banner ---------- */
.hero-banner {
  background: linear-gradient(rgba(0, 74, 173, 0.85), rgba(0, 74, 173, 0.85)),
    url("/assests/bosch-service-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-banner p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f0f4ff;
}

.hero-btn {
  background: #fff;
  color: var(--bosch-blue);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e5ecff;
}

/* ---------- Blog Section ---------- */
.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-container h1 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--bosch-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  color: #555;
  margin-bottom: 60px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.blog-post {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--light-blue);
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.blog-post img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-bottom: 4px solid var(--bosch-blue);
}

.blog-content {
  padding: 25px;
}

.blog-post h2 {
  font-size: 1.7rem;
  color: var(--bosch-blue);
  margin-bottom: 12px;
}

.meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.blog-post p {
  color: #444;
  margin-bottom: 22px;
}

.read-more {
  display: inline-block;
  background: var(--bosch-blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  background: #00337a;
}
.support-section {
  background: #f8fbff;
  padding: 100px 20px;
}

.support-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.support-title {
  color: #004aad;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.support-intro {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 45px;
}

.accordion {
  text-align: left;
}

.accordion-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #e1ebff;
}

.accordion-header {
  width: 100%;
  background: #fff;
  color: #004aad;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header i:first-child {
  margin-right: 10px;
}

.accordion-header:hover {
  background: #e8f0ff;
}

.icon {
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  color: #333;
  line-height: 1.7;
  background: #fdfdff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 18px 22px;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}



@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .support-title {
    font-size: 1.8rem;
  }

  .accordion-header {
    font-size: 1rem;
  }
}
/*call cta action*/
/* 🌟 Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #004f91, #007bff);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
/*Floating buttons*/
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  pointer-events: none; /* let children manage pointer events */
}

/* Button base */
.floating-contact .btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center;
}

/* SVG icons */
.floating-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* Labels */
.floating-contact .label {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

/* WhatsApp style */
.btn-whatsapp {
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}

/* Phone style */
.btn-call {
  background: linear-gradient(180deg, #0078d7 0%, #005ea6 100%);
  color: #fff;
}

/* Hover / active */
.floating-contact .btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 26px rgba(0,0,0,0.2);
}

/* Small 'ping' animation to draw attention */
.btn-whatsapp::after,
.btn-call::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.15);
  animation: ping 2.6s infinite;
}

@keyframes ping {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(0,0,0,0.12); opacity: 0.9; }
  70% { transform: scale(2.2); box-shadow: 0 0 0 6px rgba(0,0,0,0.02); opacity: 0; }
  100% { transform: scale(2.2); box-shadow: 0 0 0 6px rgba(0,0,0,0.00); opacity: 0; }
}

/* Make it compact on small screens */
@media (max-width: 500px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }
  .floating-contact .label { display: none; } /* icons only on very small screens */
  .floating-contact .btn { padding: 10px; min-width: 48px; }
}
/* Floating background bubbles */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: float 6s infinite ease-in-out alternate;
  z-index: 1;
}

.cta-section::before {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -80px;
}

.cta-section::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -100px;
  animation-delay: 2s;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(20px); }
}

.cta-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

.cta-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease forwards;
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease forwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  animation: fadeInUp 1.4s ease forwards;
}

/* 🎨 Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25d366, #1ebe57);
  color: #fff;
  animation: pulse 2.5s infinite ease-in-out;
}

.call-btn {
  background: linear-gradient(45deg, #ff6b6b, #f44336);
  color: #fff;
}

/* Hover glow */
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.8);
  z-index: -1;
}

.cta-btn:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* 🌈 Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 600px) {
  .cta-content h2 { font-size: 1.7rem; }
  .cta-btn { padding: 12px 25px; font-size: 1rem; }
}
/*footer*/
   /* 🌐 Bosch Footer */
    .bosch-footer {
      background: linear-gradient(135deg, #002f5e, #005fb8);
      color: #fff;
      padding: 70px 20px 30px;
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
    }

    /* Floating circles for animation */
    .bosch-footer::before,
    .bosch-footer::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      animation: footerFloat 6s infinite alternate ease-in-out;
      z-index: 0;
    }

    .bosch-footer::before {
      width: 220px;
      height: 220px;
      top: -60px;
      left: -80px;
    }

    .bosch-footer::after {
      width: 280px;
      height: 280px;
      bottom: -80px;
      right: -100px;
      animation-delay: 3s;
    }

    @keyframes footerFloat {
      from { transform: translateY(0); }
      to { transform: translateY(20px); }
    }

    /* Footer layout */
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .footer-col h3, .footer-col h4 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 15px;
      border-bottom: 2px solid #00bcd4;
      display: inline-block;
      padding-bottom: 6px;
      animation: fadeInUp 1s ease;
    }

    .footer-col p, 
    .footer-col ul li a {
      color: #ddd;
      font-size: 0.95rem;
      line-height: 1.7;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    /* ← Add bold white arrow before every link */
    .footer-col ul li a::before {
      content: "→ ";
      color: #fff;
      font-weight: 900;
      margin-right: 6px;
      transition: transform 0.3s ease, color 0.3s ease;
      display: inline-block;
    }

    .footer-col ul li a:hover {
      color: #00bcd4;
      transform: translateX(5px);
    }

    .footer-col ul li a:hover::before {
      color: #00bcd4;
      transform: translateX(4px);
    }

    /* Social icons */
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 1.2rem;
      margin-right: 10px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-links a:hover {
      background: #00bcd4;
      transform: scale(1.15) rotate(10deg);
      color: #fff;
    }

    /* Bottom bar */
    .footer-bottom {
      text-align: center;
      padding-top: 25px;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 40px;
      font-size: 0.9rem;
      color: #bbb;
      animation: fadeInUp 1.5s ease;
    }

    /* Animation */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 600px) {
      .footer-col h3, .footer-col h4 { font-size: 1.1rem; }
      .footer-col p, .footer-col ul li a { font-size: 0.9rem; }
    }
    /*==========================fridge repai=============================*/
    /* Hero Section */
    .bosch-fridge-hero {
      background: url('/assests/blogfridgeherobanner.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 160px 10%;
      position: relative;
    }
    .bosch-fridge-hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 50, 130, 0.6);
    }
    .bosch-fridge-hero-content {
      position: relative;
      z-index: 1;
    }
    .bosch-fridge-hero-content h1 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .bosch-fridge-hero-content p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Featured Blog */
    .bosch-featured-article {
      text-align: center;
      padding: 80px 10%;
      background-color: #fff;
    }
    .bosch-featured-article h2 {
      color: #004aad;
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .bosch-featured-article img {
      width: 100%;
      max-width: 900px;
      border-radius: 15px;
      margin-bottom: 30px;
    }
    .bosch-featured-article p {
      color: #444;
      line-height: 1.8;
      max-width: 850px;
      margin: auto;
    }

    /* Blog Grid */
    .bosch-repair-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 25px;
      padding: 80px 10%;
    }
    .bosch-repair-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .bosch-repair-card:hover {
      transform: translateY(-6px);
    }
    .bosch-repair-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .bosch-repair-card-content {
      padding: 20px;
    }
    .bosch-repair-card-content h3 {
      color: #004aad;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .bosch-repair-card-content p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Customer Satisfaction */
    .bosch-customer-section {
      background: #f7f9fc;
      padding: 80px 10%;
      text-align: center;
    }
    .bosch-customer-section h2 {
      color: #004aad;
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .bosch-customer-section img {
      width: 100%;
      max-width: 900px;
      border-radius: 15px;
      margin-bottom: 30px;
    }
    .bosch-customer-section p {
      max-width: 850px;
      margin: 0 auto;
      color: #444;
      line-height: 1.8;
    }

    .hero-content a.call-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #004aad; /* Bosch Blue */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-content a.call-btn:hover {
  background-color: #003580;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

    /*=======================ac repair*=======================/
/* Hero */
.ac-hero {
  position: relative;
  text-align: center;
  color: white;
}
.ac-hero-img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  filter: brightness(65%);
}
.ac-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
}
.ac-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}
.ac-hero-content p {
  font-size: 1.1rem;
}

/* AC Blocks */
.ac-content {
  padding: 70px 10%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.ac-block {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}
.ac-block img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 25px;
  border-radius: 12px;
}
.ac-details h3 {
  color: #004aad;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.ac-details p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 15px;
}
.ac-details strong {
  color: #000;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .ac-hero-img {
    height: 280px;
  }
  .ac-hero-content h1 {
    font-size: 1.8rem;
  }
  .ac-content {
    padding: 40px 5%;
  }
  .ac-details h3 {
    font-size: 1.1rem;
  }
}
/*=========================washing===============*/

    /* Hero Section */
    .wash-hero {
      background: url('/assests/blogwashingherobanner.jpg') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 160px 10%;
      position: relative;
    }
    .wash-hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 40, 100, 0.6);
    }
    .wash-hero-content {
      position: relative;
      z-index: 1;
    }
    .wash-hero-content h1 {
      font-size: 2.6rem;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .wash-hero-content p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    /* Section Wrapper */
    .wash-section {
      text-align: center;
      padding: 80px 10%;
      background-color: #fff;
      border-bottom: 1px solid #e5e5e5;
    }
    .wash-section h2 {
      color: #004aad;
      font-size: 2rem;
      margin-bottom: 25px;
    }
    .wash-section img {
      width: 100%;
      max-width: 850px;
      border-radius: 12px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .wash-section p {
      max-width: 850px;
      margin: auto;
      font-size: 1rem;
      color: #444;
    }

    /* Subheadings */
    .wash-details {
      text-align: left;
      max-width: 850px;
      margin: 40px auto 0;
    }
    .wash-details h3 {
      color: #004aad;
      margin-top: 25px;
      font-size: 1.3rem;
    }
    .wash-details p {
      color: #333;
      margin: 10px 0 20px;
    }

    @media (max-width: 768px) {
      .wash-hero {
        padding: 120px 5%;
      }
      .wash-section {
        padding: 50px 5%;
      }
      .wash-hero-content h1 {
        font-size: 2rem;
      }
    }