 /* daewooappliancesrepaircenter */

 
 body {
      margin: 0;
      font-family: Arial, sans-serif;
      overflow-x: hidden;

    }

    /* NAVBAR */
    .navbar {
      text-decoration: none;
      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;
      text-decoration: 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);
    }

    /* daewoorepaircenter */
    #daewooappliances{
      color: white;
      text-align: center;
      padding-top: 230px;
      font-size: 40px;
      
    }
    /* Hero Slider */
.hero-slider {
  background: url("/daewooservicecenter/daewooapplianceshome.jpg") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* dark overlay */
  z-index: 1;
}

.hero-slider-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-slider h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-slider h1 span {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Services Button */
.services-btn {
  background: #1e90ff;
  color: #fff;
}
.services-btn:hover {
  background: #0b75d1;
  transform: translateY(-3px);
}

/* 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;
}

    /*servicehighlights */
    .service-section {
      padding: 3rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #004080, #0066cc);
      color: #fff;
    }

    .service-section h2 {
      font-size: 2.2rem;
      margin-bottom: 2rem;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background: #fff;
      color: #333;
      border-radius: 12px;
      padding: 2rem 1.5rem;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    .card i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #0066cc;
    }

    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
      color: #004080;
    }

    .card p {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    /* Highlight keywords */
    strong {
      font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .service-section h2 {
        font-size: 1.8rem;
      }
      .card {
        padding: 1.5rem;
      }
      .card i {
        font-size: 2rem;
      }
    }

/*blogsection*/
    .blog-section {
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .blog-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #004080;
    }

    .blog-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 1.2rem;
    }

    .card-content h3 {
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      color: #004080;
    }

    .card-content p {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .read-more {
      display: inline-block;
      background: #0066cc;
      color: #fff;
      padding: 0.6rem 1rem;
      text-decoration: none;
      border-radius: 6px;
      font-size: 0.9rem;
      transition: background 0.3s;
    }

    .read-more:hover {
      background: #004080;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .card-content h3 {
        font-size: 1rem;
      }
      .card-content p {
        font-size: 0.9rem;
      }
    }
   
/*FAQ*/
.faq-section {
      max-width: 800px;
      margin: 50px auto;
      padding: 20px;
    }

    .faq-section h2 {
      text-align: center;
      color: #004080;
      margin-bottom: 30px;
    }

    .faq-item {
      background: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-question {
      width: 100%;
      padding: 15px 20px;
      font-size: 18px;
      font-weight: bold;
      text-align: left;
      background: #0073e6;
      color: #fff;
      border: none;
      cursor: pointer;
      outline: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question:hover {
      background: #005bb5;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: #f9f9f9;
      padding: 0 20px;
      color: #333;
      line-height: 1.6;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-answer.open {
      padding: 15px 20px;
      max-height: 200px; /* enough to show text */
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .arrow.rotate {
      transform: rotate(90deg);
    }
    /*CAll section*/
       .cta-section {
      background: linear-gradient(135deg, #0073e6, #005bb5);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .cta-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .cta-buttons a {
      display: inline-block;
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      color: white;
      transition: background 0.3s ease;
    }

    .whatsapp-btn {
      background: #25D366;
    }

    .whatsapp-btn:hover {
      background: #1eb75c;
    }

    .call-btn {
      background: #ff4c4c;
    }

    .call-btn:hover {
      background: #cc0000;
    }

    @media (max-width: 600px) {
      .cta-section h2 {
        font-size: 22px;
      }
      .cta-buttons a {
        font-size: 16px;
        padding: 12px 20px;
      }
    }
    /*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);
}
/*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;
      }
    }


    /*ABUOT US NEW /////////////////////*/
    .hero-sliderabout {
  background-image: url("/daewooservicecenter/daewoorefrigreatorrepairdubai.jpg");
  background-size: cover;       /* ensures image covers the area */
  background-position: center;  /* keeps image centered */
  background-repeat: no-repeat; /* avoids repetition */
  height: 600px;                /* your requested height */
  display: flex;                /* for centering content inside */
  align-items: center;          /* vertical center */
  justify-content: center;      /* horizontal center */
  color: #fff;                  /* text color if content inside */
  text-align: center;
  position: relative;
}

    .who-we-are {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 1200px;
      margin: 3rem auto;
      padding: 2rem;
      align-items: center;
    }

    .who-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .who-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      
    }
    h4{
      color: goldenrod;
    }

    .who-content p {
      margin-bottom: 1.5rem;
      color: #555;
      line-height: 1.6;
    }

    .who-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem 1.2rem;
    }

    .who-list li {
      background: #6ee004;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      font-weight: 500;
      position: relative;
      padding-left: 2rem;
    }

    .who-list li::before {
      content: "✔";
      color: #00a86b;
      position: absolute;
      left: 0.6rem;
      font-weight: bold;
    }

    /* Responsive */
    @media(max-width: 900px) {
      .who-we-are {
        grid-template-columns: 1fr;
      }
    }
/*whatsapp*/
.whatsapp-btn-square {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: #25D366;
      color: #fff;
      padding: 0.8rem 1.2rem;
      border-radius: 6px;   /* square shape with slightly rounded corners */
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }
    .whatsapp-btn-square:hover {
      background-color: #1ebe5b;
      transform: translateY(-2px);
    }
    .whatsapp-btn-square i {
      font-size: 18px;
    }
    /*missionsectiom*/
    .mission-section {
      background: linear-gradient(135deg, #e0f7f4, #0b6ade);
      padding: 4rem 2rem;
      text-align: center;
    }

    .mission-section h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #0a3d62;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .mission-card {
      background: #65ebe7;
      border-radius: 12px;
      padding: 2rem 1.5rem;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mission-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    }

    .mission-card i {
      font-size: 2rem;
      color: #25D366; /* WhatsApp green for consistency */
      margin-bottom: 1rem;
    }

    .mission-card h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #0a3d62;
    }

    .mission-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .mission-cards {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .mission-cards {
        grid-template-columns: 1fr;
      }
    }
 .about-section {
  
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-text {
      padding-right: 1rem;
    }

    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #0a3d62;
    }

    .about-text p {
      font-size: 1rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .about-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .about-text {
        padding-right: 0;
      }
    }
    /*services////////////////////////////////*/
    

  /* Hero Banner */
.hero-banner {
  background: url("/daewooservicecenter/daewoorepaircenter.webp") center/cover no-repeat;
  min-height: 80vh;   /* Full hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for text readability */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
}

/* Services Section (plain, no background) */
.services-section {
  padding: 5rem 2rem;

}

.daewoorepair{
  font-size: 40px;
  color: goldenrod;
  text-align: center;
  padding-top: 25px;
}
/* Remove overlay */
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: none;
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: bold;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  background: none; /* removed */
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0a3d62;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.service-card strong {
  color: #000;
}

.read-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  color: #454040;
  background-color: blue;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  background: none; /* removed */
}

.read-more-btn:hover {
  background-color: grey; /* removed */
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}
/*whychossesus*/
/* Why Choose Us */
.why-choose-us {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #0a3d62;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card i {
  font-size: 2.5rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0a3d62;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}
/*Call to action*/
/* CTA Section */
.cta {
  background: linear-gradient(to right, #0077b6, #0096c7); /* blue gradient */
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 4rem auto;
  max-width: 1000px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #ffb703;
  color: #000;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fb8500;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}
/*herobuttons*/
/* Hero Banner Buttons */
.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 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;
}




