/* RESET */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: "Segoe UI", Arial, sans-serif;
      background: linear-gradient(135deg, #001f3f, #005f99);
      color: #fff;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }

    
    /* HERO */
    .SamsungAppliancesRepairCentreHero {
      background: url("https://images.unsplash.com/photo-1590502593747-26aaad7e0e79") center/cover no-repeat;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }
    .SamsungAppliancesRepairCentreHero::after {
      content: "";
      position: absolute;
      top:0; left:0; right:0; bottom:0;
      background: rgba(0,0,0,0.6);
    }
    .SamsungAppliancesRepairCentreHeroContent {
      position: relative;
      z-index: 1;
      color: #fff;
      padding: 2rem;
    }
    .SamsungAppliancesRepairCentreHeroContent h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .SamsungAppliancesRepairCentreHeroContent p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* BLOG SECTION */
    .SamsungAppliancesRepairCenterContainer {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .SamsungAppliancesRepairCenterContainer h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #ffcc00;
    }
    .SamsungAppliancesRepairCenterBlogGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .SamsungAppliancesRepairCenterBlogCard {
      background: #fff;
      color: #333;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }
    .SamsungAppliancesRepairCenterBlogCard:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
    .SamsungAppliancesRepairCenterBlogCard img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .SamsungAppliancesRepairCenterBlogContent {
      padding: 1.2rem;
    }
    .SamsungAppliancesRepairCenterBlogContent h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #003366;
    }
    .SamsungAppliancesRepairCenterBlogContent p {
      font-size: 0.95rem;
      margin-bottom: 1rem;
      color: #444;
    }
    .SamsungAppliancesRepairCenterReadMore {
      display: inline-block;
      background: linear-gradient(90deg, #ff9900, #ffcc00);
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-weight: bold;
      color: #fff;
      transition: background 0.3s;
    }
    .SamsungAppliancesRepairCenterReadMore:hover {
      background: linear-gradient(90deg, #cc7a00, #e6b800);
    }

    /* FOOTER */
    footer.SamsungAppliancesRepairCentreFooter {
      background: rgba(0,0,0,0.7);
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: #ddd;
    }

    /* RESPONSIVE HERO TEXT */
    @media (max-width: 600px) {
      .SamsungAppliancesRepairCentreHeroContent h1 { font-size: 1.8rem; }
      .SamsungAppliancesRepairCentreHeroContent p { font-size: 1rem; }
    }
    /* Fix headings and text on small screens */
@media (max-width: 600px) {
  h1, h2, h3, p {
    text-align: center;
  }
  .SamsungAppliancesRepairCenterBlogContent {
    text-align: center;
  }
}


/* RESET */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: "Segoe UI", Arial, sans-serif;
      line-height: 1.8;
      color: #fff;
      background: linear-gradient(135deg, #001f3f, #005f99, #0099cc);
      background-size: 300% 300%;
      animation: gradientShift 15s ease infinite;
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    a { text-decoration: none; color: #ffcc00; }

    /* NAVBAR */
    nav {
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0,0,0,0.6);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo {
      font-size: 1.4rem;
      font-weight: bold;
      color: #ffcc00;
    }
    .nav-links {
      display: flex;
      gap: 1rem;
    }
    .nav-links a {
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: #ffcc00; }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      color: #fff;
      cursor: pointer;
    }
#samsunglogo{
  height: 80px;
  width: 80px;
  border-radius: 80%;
}
/* Navbar base styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav .nav-links {
  display: flex;
  gap: 20px;
}

nav .hamburger {
  display: none; /* hidden by default */
  font-size: 28px;
  cursor: pointer;
}

/* Responsive - small screens */
@media (max-width: 768px) {
  nav .nav-links {
    display: none; /* hide links */
    flex-direction: column;
    
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }

  nav .nav-links.active {
    display: flex; /* show when active */
  }

  nav .hamburger {
    display: block; /* show hamburger */
  }
}

    /* HERO */
    .hero {
      min-height: 60vh;
      background: url("/images/blogachero.png") center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero::after {
      content: "";
      position: absolute;
      top:0; left:0; right:0; bottom:0;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
      color: #fff;
    }
    .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #ffcc00;
    }
    .hero-content p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
    }

    /* CONTENT */
    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .container h2 {
      margin: 2rem 0 1rem;
      font-size: 2rem;
      color: #ffcc00;
      text-align: center;
    }
    .blog-section {
      margin-bottom: 2rem;
      background: rgba(255,255,255,0.1);
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .blog-section h3 {
      color: #ffe066;
      margin-bottom: 0.8rem;
    }
    .blog-section img {
      width: 100%;
      border-radius: 10px;
      margin: 1rem 0;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 1rem;
      background: rgba(0,0,0,0.7);
      margin-top: 2rem;
      font-size: 0.9rem;
    }

    

    /* RESPONSIVE NAVBAR */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        width: 100%;
        justify-content: center;
        background: rgba(0,0,0,0.8);
        padding: 0.5rem 0;
      }
      .nav-links.active {
        display: flex;
        flex-wrap: wrap;
      }
      .nav-links a {
        padding: 0.5rem 1rem;
      }
      .hamburger {
        display: block;
      }
    }

    /* Very small screens < 350px */
    @media (max-width: 350px) {
      .nav-links {
        flex-direction: column;
        align-items: center;
      }
    }

    /* Responsive Hero */
    @media (max-width: 600px) {
      .hero-content h1 { font-size: 1.8rem; }
      .hero-content p { font-size: 1rem; }
    }


     body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background: linear-gradient(135deg, #1a73e8, #6f42c1, #20c997);
      color: #fff;
      line-height: 1.7;
    }

    /* Unique wrapper */
    .washer-page-wrapper {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
    }

    .washer-hero-img {
      width: 100%;
      border-radius: 16px;
      margin: 20px 0;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .washer-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin: 20px 0;
      color: #fff;
    }

    .washer-section {
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 20px;
      margin: 20px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .washer-section h2 {
      color: #ffd166;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .washer-section ul {
      padding-left: 20px;
    }

    .washer-section li {
      margin: 10px 0;
    }

    .washer-content-img {
      width: 100%;
      border-radius: 12px;
      margin: 15px 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .washer-tip {
      background: rgba(255, 209, 102, 0.15);
      border-left: 5px solid #ffd166;
      padding: 12px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .washer-warning {
      background: rgba(255, 77, 77, 0.2);
      border-left: 5px solid #ff4d4d;
      padding: 12px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .washer-cta-box {
      text-align: center;
      background: rgba(32, 201, 151, 0.2);
      border-radius: 16px;
      padding: 20px;
      margin-top: 30px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .washer-cta-box h3 {
      margin-bottom: 10px;
      color: #06d6a0;
    }

    /* WhatsApp Floating Button */
    .washer-whatsapp-float {
      position: fixed;
      width: 55px;
      height: 55px;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .washer-whatsapp-float:hover {
      transform: scale(1.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .washer-heading {
        font-size: 1.6rem;
      }
      .washer-section {
        padding: 15px;
      }
    }








     

    .fridge-page-wrapper {
      max-width: 1100px;
      margin: auto;
      padding: 25px;
    }

    .fridge-heading {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin: 20px 0;
      color: #fff;
    }

    .fridge-hero-img {
      width: 100%;
      border-radius: 18px;
      margin: 20px 0;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .fridge-section {
      background: rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 22px;
      margin: 25px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    }

    .fridge-section h2 {
      color: #ffd166;
      font-size: 1.6rem;
      margin-bottom: 15px;
    }

    .fridge-section ul {
      padding-left: 22px;
    }

    .fridge-section li {
      margin: 12px 0;
    }

    .fridge-content-img {
      width: 100%;
      border-radius: 14px;
      margin: 18px 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    }

    .fridge-tip {
      background: rgba(102, 255, 178, 0.18);
      border-left: 5px solid #06d6a0;
      padding: 14px;
      border-radius: 10px;
      margin: 20px 0;
    }

    .fridge-warning {
      background: rgba(255, 99, 71, 0.2);
      border-left: 5px solid #ff4040;
      padding: 14px;
      border-radius: 10px;
      margin: 20px 0;
    }

    .fridge-cta-box {
      text-align: center;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      padding: 25px;
      margin-top: 35px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .fridge-cta-box h3 {
      margin-bottom: 12px;
      color: #06d6a0;
    }

    /* WhatsApp Floating Button */
    .fridge-whatsapp-float {
      position: fixed;
      width: 55px;
      height: 55px;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .fridge-whatsapp-float:hover {
      transform: scale(1.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .fridge-heading {
        font-size: 1.7rem;
      }
      .fridge-section {
        padding: 16px;
      }
    }


      /* Page-specific unique namespace to avoid global conflicts */
    :root {
      --mic-bg-1: #0f172a; /* deep navy */
      --mic-grad-a: #0ea5a0; /* teal */
      --mic-grad-b: #7c3aed; /* purple */
      --mic-accent: #ffd166; /* warm accent */
      --mic-panel: rgba(255,255,255,0.06);
      --mic-text-light: #f1f5f9;
    }

    html,body {
      height: 100%;
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background: linear-gradient(135deg,var(--mic-grad-a),var(--mic-grad-b));
      color: var(--mic-text-light);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height: 1.6;
    }

    /* Wrapper */
    .microwave-page-wrap {
      max-width: 1100px;
      margin: 32px auto;
      padding: 26px;
    }

    .microwave-hero {
      display:block;
      width:100%;
      border-radius:18px;
      overflow:hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .microwave-title {
      font-weight: 800;
      font-size: 2.1rem;
      margin: 20px 0 10px;
      text-align: left;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .microwave-lead {
      color: rgba(255,255,255,0.92);
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    /* Content panels */
    .mic-panel {
      background: var(--mic-panel);
      border-radius: 14px;
      padding: 20px;
      margin: 18px 0;
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.03);
    }

    .mic-panel h2 {
      margin-top: 0;
      color: var(--mic-accent);
      font-size: 1.25rem;
      letter-spacing: 0.01em;
    }

    .mic-panel p { margin: 12px 0; color: rgba(255,255,255,0.95); }

    .mic-list {
      padding-left: 20px;
      margin: 12px 0;
    }

    .mic-list li {
      margin: 10px 0;
      list-style: none;
      position: relative;
      padding-left: 34px;
      color: rgba(255,255,255,0.95);
    }

    .mic-list li:before {
      content: "⚙️";
      position: absolute;
      left: 0;
      top: 0;
      transform: translateY(0.08em);
      font-size: 0.95rem;
    }

    .mic-image {
      width: 100%;
      border-radius: 12px;
      display:block;
      margin: 14px 0;
      box-shadow: 0 6px 18px rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.04);
    }

    /* Tip & warning */
    .mic-tip {
      background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border-left: 4px solid #06d6a0;
      padding: 12px 14px;
      border-radius: 8px;
      margin: 16px 0;
      color: rgba(255,255,255,0.98);
    }

    .mic-warning {
      background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border-left: 4px solid #ff6b6b;
      padding: 12px 14px;
      border-radius: 8px;
      margin: 16px 0;
      color: rgba(255,255,255,0.98);
    }

    /* Two-column layout for desktop */
    .mic-row {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 20px;
      align-items: start;
    }

    .mic-aside {
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
      border-radius: 12px;
      padding: 16px;
      position: sticky;
      top: 30px;
      height: fit-content;
      border: 1px solid rgba(255,255,255,0.03);
    }

    .mic-aside h3 { margin: 0 0 8px; color: var(--mic-accent); }

    .mic-aside ul { padding-left: 16px; margin: 8px 0 0; }
    .mic-aside li { margin: 8px 0; color: rgba(255,255,255,0.95); }

    /* Footer CTA panel (no buttons) */
    .mic-cta {
      margin-top: 22px;
      padding: 18px;
      border-radius: 12px;
      background: linear-gradient(90deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
      border: 1px solid rgba(255,255,255,0.02);
      text-align: left;
    }

    .mic-cta h3 { color: var(--mic-accent); margin: 0 0 8px; }
    .mic-cta p { margin: 0; color: rgba(255,255,255,0.95); }

    /* Floating WhatsApp (unique id) */
    .mic-wa-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.35);
      z-index: 1200;
      text-decoration: none;
      transition: transform .18s ease;
    }
    .mic-wa-float:hover { transform: scale(1.06); }

    /* Responsive adjustments */
    @media (max-width: 980px) {
      .mic-row { grid-template-columns: 1fr; }
      .mic-aside { position: relative; top: 0; }
    }

    @media (max-width: 520px) {
      .microwave-title { font-size: 1.45rem; }
      .microwave-page-wrap { padding: 16px; margin: 16px; }
    }

    /* accessibility focus */
    .mic-wa-float:focus { outline: 3px solid rgba(255,255,255,0.18); }






    
  .footer-section {
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    color: #f1f5f9;
    padding: 50px 20px 20px;
    font-family: 'Inter', sans-serif;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }

  .footer-box {
    padding: 10px;
  }

  .footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ff512f; /* accent color */
  }

  .footer-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin: 6px 0;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin: 8px 0;
  }

  .footer-link {
    text-decoration: none;
    color: #cbd5e1;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: #ff512f;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .fab {
    color: #25d366;
    margin-right: 6px;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-box {
      padding: 0;
    }
  }
