/*===============blog==============*//* Hero Section */
 
 body {
      margin: 0;
      font-family: Arial, sans-serif;
      overflow-x: hidden;

    }
/*floating*/
 /*floatingbutton*/
    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
    /* NAVBAR */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 1.5rem;
      background: linear-gradient(90deg, #11998e, #38ef7d);
      color: #fff;
      position: relative;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  
    }

    .navbar .logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .navbar .logo img {
      width: 82px;
      height: 82px;
      object-fit: contain;
    }

    .navbar .logo span {
      font-weight: bold;
      font-size: 1.2rem;
      letter-spacing: 0.5px;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links li a {
      color: #fff;
      font-weight: 500;
      position: relative;
      transition: color 0.3s;
    }

    .nav-links li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: #fff;
      transition: width 0.3s;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 26px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s;
    }

   /* MOBILE MENU */
@media (max-width: 700px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 64px; /* directly below navbar */
    left: 0;
    right: 0;
    background: #004080;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999; /* ensure it shows above */
  }
  .nav-links.active {
    max-height: 300px;
    padding: 1rem 0;
  }
}

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
#blog-hero {
  background: url("/daewooservicecenter/daewooappliances.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  min-height: 80vh; /* 👈 ensures hero fills 80% of screen height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/*buttons*/

/* WhatsApp Button */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
}
.whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
}

/* Book Now Button */
.book-btn {
  background: #ffb703;
  color: #000;
}
.book-btn:hover {
  background: #fb8500;
  transform: translateY(-3px);
}

/* Icon inside buttons */
.btn i {
  font-size: 1.3rem;
  vertical-align: middle;
}
#blog-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
}

.blog-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-hero-content p {
  font-size: 1.2rem;
}

/* Blog Grid */
.latestblog{
  color: #005c1f;
  font-style: italic;
  font-weight: 900;
  font-size: 70px;
  text-decoration: underline;
  text-align: center;
}
#blog-wrapper {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.blog-post {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.blog-post img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-info {
  padding: 1.5rem;
}

.blog-info h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #0a3d62;
}

.blog-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Blog Button */
.blog-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #0a3d62;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.blog-btn:hover {
  background: #1e90ff;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  #blog-hero h1 {
    font-size: 1.8rem;
  }
  #blog-hero p {
    font-size: 1rem;
  }
}
/*testominals*/
/* ============== Testimonials Section ============== */
#testimonials {
  background: linear-gradient(135deg, #0a3d62, #1e90ff);
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.testimonials-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  animation: fadeDown 1s ease-in-out;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.testimonial-author span {
  font-weight: bold;
  font-size: 1rem;
}

/* ============== Animations ============== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*cta*?/
/* ============== CTA Section ============== */
#cta-section {
  background: linear-gradient(135deg, #1e90ff, #0a3d62);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 60%);
  animation: pulse 6s infinite linear;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

#cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

#cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-btn {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-btn {
  background: #fff;
  color: #0a3d62;
}

.primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* Background animation */
@keyframes pulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  #cta-section h2 {
    font-size: 1.8rem;
  }
  #cta-section p {
    font-size: 1rem;
  }
}

/*footer*/
  footer {
      background: #002b5c;
      color: white;
      padding: 50px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-column {
      flex: 1;
      min-width: 250px;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 20px;
      border-bottom: 2px solid #0073e6;
      display: inline-block;
      padding-bottom: 5px;
    }

    .footer-column p,
    .footer-column a {
      color: #ddd;
      font-size: 15px;
      text-decoration: none;
      line-height: 1.6;
    }

    .footer-column a:hover {
      color: #fff;
    }

    .contact-info {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .contact-info img {
      width: 22px;
      height: 22px;
      margin-right: 10px;
    }

    .contact-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 12px 20px;
      background: #25D366;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .contact-btn:hover {
      background: #1eb75c;
    }

    /* Centered Quick Links */
    .quick-links {
      text-align: center;
    }

    .quick-links p {
      margin: 6px 0;
    }
    .quick-links {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center the whole group under heading */
  text-align: left;      /* keep arrows + text aligned in a straight line */
}

.quick-links h3 {
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.quick-links p {
  margin: 5px 0;
  width: 160px;          /* fixed width so all links align straight */
}

.quick-links a {
  text-decoration: none;
  color: #fff;
  display: flex;          /* flex keeps arrow + text in line */
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.quick-links a::before {
  content: "➤";
  color: #fff;
  font-size: 14px;
}


    /* Social Media */
    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      margin-right: 12px;
      display: inline-block;
    }

    .social-icons img {
      width: 28px;
      height: 28px;
      transition: transform 0.3s ease;
    }

    .social-icons img:hover {
      transform: scale(1.2);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid #0073e6;
      padding-top: 15px;
      font-size: 14px;
      color: #bbb;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
      .contact-info {
        justify-content: center;
      }
    }


    /*============Oven repair==================*/
     /* Hero */
    .hero {
      height:90vh;
      background:   url('/daewooservicecenter/daewooovenrepairblog.jpg') center/cover no-repeat;
      color:#e06a6a;display:flex;flex-direction:column;justify-content:center;align-items:center;
      text-align:center;padding:20px;
    }
    .hero h1 {font-size:3rem;animation:fadeUp 1.5s;}
    .hero p {font-size:1.2rem;margin:15px 0;animation:fadeUp 2s;color: blue;}
    .btn {background:#00bcd4;color:#fff;padding:12px 25px;border-radius:30px;font-weight:bold;transition:.3s;}
    .btn:hover {background:#0097a7;transform:scale(1.05);}

    /* Sections */
    .section {display:flex;align-items:center;gap:40px;padding:70px 10%;flex-wrap:wrap;}
    .section:nth-child(even){background:#fff;}
    .section:nth-child(odd){background:#f1f8fc;}
    .section img {flex:1;max-width:450px;border-radius:15px;box-shadow:0 5px 15px rgba(0,0,0,0.2);transition:.4s;}
    .section img:hover {transform:scale(1.05);}
    .section .content {flex:1;min-width:280px;}
    .section h2 {color:#004d66;font-size:2rem;margin-bottom:15px;}
    .section strong {color:#00bcd4;}

    /* CTA */
    .cta {background:linear-gradient(135deg,#007acc,#00c6ff);color:#fff;text-align:center;padding:60px 20px;}
    .cta h2 {font-size:2.2rem;margin-bottom:20px;}
    .cta a {background:#fff;color:#007acc;padding:14px 30px;border-radius:30px;font-weight:bold;transition:.3s;}
    .cta a:hover {background:#004d66;color:#fff;}

    /* Testimonials */
    .testimonials {padding:70px 10%;background:#fdfdfd;text-align:center;}
    .testimonials h2 {margin-bottom:40px;color:#004d66;}
    .grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
    .card {background:#fff;padding:25px;border-radius:15px;box-shadow:0 5px 15px rgba(0,0,0,.1);transition:.3s;}
    .card:hover {transform:translateY(-5px);}
    .card p {font-style:italic;}

    /* FAQ */
    .faq {padding:70px 10%;background:#f1f8fc;}
    .faq h2 {text-align:center;color:#004d66;margin-bottom:30px;}
    .accordion {max-width:800px;margin:auto;}
    .accordion-item {background:#fff;margin-bottom:10px;border-radius:8px;overflow:hidden;box-shadow:0 3px 10px rgba(0,0,0,.05);}
    .accordion-title {padding:15px;cursor:pointer;background:#007acc;color:#fff;font-weight:bold;}
    .accordion-content {padding:15px;display:none;background:#fff;}
    .accordion-item.active .accordion-content {display:block;}

    /* Final CTA */
    .final-cta {background:#002633;color:#fff;text-align:center;padding:80px 20px;}
    .final-cta h2 {font-size:2.5rem;margin-bottom:20px;}
    .final-cta a {background:#00bcd4;color:#fff;padding:16px 35px;border-radius:30px;font-weight:bold;transition:.3s;}
    .final-cta a:hover {background:#fff;color:#002633;}

    /* Animations */
    @keyframes fadeUp {from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}
    .footer-bottom a {
  color: #0073e6; /* blue link */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  color: #ff6600; /* orange on hover */
  text-decoration: underline;
}
.partners {
  padding: 60px 20px;
  background: linear-gradient(120deg, #f0f4ff, #e6f0ff);
  text-align: center;
}

.partners h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.brand-card {
  background: linear-gradient(145deg, #ffffff, #d9e6ff);
  border-radius: 20px;
  width: 250px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #0073e6;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.brand-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.brand-card:hover {
  background: linear-gradient(145deg, #0073e6, #005bb5);
  color: #fff;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}
/*============refrigreator================*/
img {
      max-width: 100%;
      border-radius: 12px;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

    /* Hero */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("/daewooservicecenter/daewoorefrigreatorrepairblog.jpg") center/cover no-repeat;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .hero h1 {
      font-size: 3rem;
      background: rgba(0,0,0,0.6);
      padding: 18px 30px;
      border-radius: 10px;
    }

    /* Section */
    .section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      margin-bottom: 80px;
    }
    .section:nth-child(even) {
      grid-template-columns: 1fr 1fr;
      direction: rtl;
      text-align: left;
    }
    .section-content {
      direction: ltr;
    }
    .section h2 {
      font-size: 2rem;
      color: #004a99;
      margin-bottom: 15px;
    }
    .section p {
      font-size: 1.05rem;
      color: #444;
    }

    /* CTA */
    .cta {
      background: #0073e6;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 12px;
      margin: 50px 20px;
    }
    .cta h3 {
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .cta a {
      display: inline-block;
      background: #fff;
      color: #0073e6;
      padding: 14px 35px;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s;
    }
    .cta a:hover {
      background: #004a99;
      color: #fff;
    }

    @media(max-width: 900px) {
      .section {
        grid-template-columns: 1fr;
        text-align: center !important;
      }
      .section:nth-child(even) {
        direction: ltr;
      }
    }
    /*==================washing machine repair========================*/
     img {
      max-width: 100%;
      border-radius: 12px;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

    /* Hero Section */
    .hero {
      background: url("/daewooservicecenter/daewoowashingrepairblog.jpg") center/cover no-repeat;
      height: 65vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      position: relative;
      color: #fff;
      z-index: 2;
    }
    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    .hero-content p {
      font-size: 1.2rem;
      color: #ddd;
    }

    /* Card Sections */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    .card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .card:hover {
      transform: translateY(-8px);
    }
    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .card-content {
      padding: 20px;
    }
    .card-content h2 {
      font-size: 1.5rem;
      color: #0066cc;
      margin-bottom: 10px;
    }
    .card-content p {
      color: #444;
      font-size: 1rem;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #004a99, #0073e6);
      color: #fff;
      text-align: center;
      padding: 70px 20px;
      border-radius: 14px;
      margin: 60px 20px;
    }
    .cta h3 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    .cta a {
      display: inline-block;
      background: #fff;
      color: #0073e6;
      padding: 16px 40px;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s;
    }
    .cta a:hover {
      background: #003366;
      color: #fff;
    }

    @media(max-width: 768px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
    }
    /*====================kettles repair=================*/



/* Hero Banner */
#hero-kettle {
  position: relative;
  background: url("/daewooservicecenter/daewookettlesrepairblog.jpg") no-repeat center center/cover;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 12px;
}

#hero-kettle h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

#hero-kettle p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-kettle-btn {
  background: #ff8c00;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.3s;
}
.cta-kettle-btn:hover { background: #e67e00; }


    /* Sections */
    .uae-kettle-section {
      width: 90%;
      max-width: 1200px;
      margin: 3rem auto;
    }
    .uae-kettle-section p { text-align: justify; }

    /* Services */
    #kettle-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }
    .kettle-repair-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.12);
      overflow: hidden;
      transform: translateY(40px);
      opacity: 0;
      transition: all 1s ease;
    }
    .kettle-repair-card.show {
      opacity: 1;
      transform: translateY(0);
    }
    .kettle-repair-card img {
      width: 100%;
      height: 390px;
      object-fit: cover;
    }
    .kettle-repair-content {
      padding: 1.5rem;
    }
    .kettle-repair-content h3 {
      color: #004a99;
      margin-bottom: 0.7rem;
    }
    .keywords {
      margin-top: 0.8rem;
      font-size: 0.9rem;
      color: #555;
    }
    .keywords strong {
      background: #ffefcc;
      padding: 2px 6px;
      border-radius: 5px;
      margin-right: 4px;
    }

    /* Why Choose */
    .why-kettle {
      background: #002d62;
      color: #fff;
      text-align: center;
      padding: 3rem 1rem;
    }
    .why-kettle h2 { color: #ffcc00; }

    /* FAQ */
    .faq-section h2 { text-align: center; margin-bottom: 1rem; }
    .faq-item { margin-bottom: 1.5rem; }
    .faq-item h3 { color: #004a99; }
/*===================AC=================*/
  /* Hero Banner */
    .ac-hero {
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                  url('/daewooservicecenter/daewooacrepairblog.png') no-repeat center/cover;
      height: 70vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
    }
    .ac-hero h1 {
      font-size: 3rem;
      margin: 0;
      animation: fadeInDown 1.2s ease;
    }
    .ac-hero p {
      font-size: 1.3rem;
      margin-top: 10px;
      animation: fadeInUp 1.5s ease;
    }

    /* Section */
    .ac-section {
      padding: 60px 10%;
    }
    .ac-section h2 {
      font-size: 2rem;
      color: #0066cc;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
    }
    .ac-section h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: #ff6600;
      margin: 10px auto 0;
      border-radius: 3px;
    }

    .ac-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .ac-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform .3s, box-shadow .3s;
    }
    .ac-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }
    .ac-card img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    .ac-card h3 {
      color: #ff6600;
      margin-bottom: 10px;
    }

    /* Animations */
    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    /*?==========================Irons repair===============*/
    /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* Hero */
#iron-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("/daewooservicecenter/daewooironrepairblog.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.iron-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.iron-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.iron-btn-call {
  background: #ff5722;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.iron-btn-call:hover {
  background: #e64a19;
}

/* About */
#iron-about {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
#iron-about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
#iron-about p {
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services */
#iron-services {
  padding: 70px 20px;
  background: #fff;
}
.iron-services-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}
.iron-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.iron-card {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.iron-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.iron-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.iron-card h3 {
  margin-bottom: 10px;
  color: #ff5722;
}
.iron-card p {
  color: #555;
  line-height: 1.5;
}

/* Why Choose Us */
#iron-why-choose {
  padding: 60px 20px;
  background: linear-gradient(120deg, #ff5722, #ff8a50);
  color: #fff;
  text-align: center;
}
#iron-why-choose h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
#iron-why-choose p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Common Problems */
#iron-problems {
  padding: 60px 20px;
  background: #f1f1f1;
}
#iron-problems h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}
#iron-problems ul {
  max-width: 600px;
  margin: 0 auto 20px;
  list-style: none;
  padding-left: 0;
}
#iron-problems ul li {
  background: #fff;
  margin: 8px 0;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#iron-problems p {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}
