   body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      /*background-color: #f9fafc;*/
      color: #222;
    }

    /* Top Bar */
.top-bar {
  background-color: #222;
  color: #fff;
  padding: 8px 20px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d60000;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #d60000;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #d60000;
}

/* Responsive Styles */
@media (max-width: 768px) {

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-top: 60px;
}
  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    border-top: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  nav.active {
    display: flex;
  }
}


    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-text {
      flex: 1;
      padding-right: 30px;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      color: #111;
    }

    .hero-text p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #444;
    }

    .cta-button {
      display: inline-block;
      background-color: #d60000;
      color: white;
      padding: 14px 30px;
      font-size: 1rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .cta-button i {
      margin-right: 8px;
    }

    .cta-button:hover {
      background-color: #a90000;
    }

    .hero-image {
      flex: 1;
      max-width: 500px;
    }

    .hero-image img {
      width: 100%;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        padding-right: 0;
      }

      nav {
        display: none;
      }
    }

    .why-dish-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.feature-box {
  flex: 1 1 240px;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box .icon {
  font-size: 40px;
  color: #d60000;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
    max-width: 400px;
  }
}

.standout-section {
  background-color: #fff;
  padding: 60px 20px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f4f4f4;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: background 0.3s ease;
}

.highlight-list li:hover {
  background: #efefef;
}

.highlight-icon {
  font-size: 32px;
  color: #d60000;
  margin-top: 4px;
  min-width: 40px;
}

.highlight-list h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #222;
}

.highlight-list p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-list {
    gap: 20px;
  }

  .highlight-list li {
    flex-direction: column;
    text-align: left;
  }

  .highlight-icon {
    margin-bottom: 10px;
  }
}
.providers-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
}

.provider-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.provider-card:hover {
  transform: scale(1.05);
}

.provider-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.provider-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.work-timeline-section {
  background: #fafafa;
  padding: 60px 20px;
}

.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
  border-left: 4px solid #d60000;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #d60000;
  border-radius: 50%;
  border: 3px solid white;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
  margin-top: 0;
  color: #d60000;
  font-size: 1.2rem;
}

.timeline-content p {
  margin: 10px 0 0;
  color: #444;
  font-size: 0.95rem;
}
.cta-section {
  background: linear-gradient(to right, #d60000, #770000);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background: #fcefef;
  color: #d60000;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button i {
  margin-right: 8px;
}

.cta-button:hover {
  background: #ffdddd;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.testimonial-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #444;
}

.testimonial-author {
  margin-top: 20px;
  color: #222;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d60000;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
}

.prev:hover, .next:hover {
  background: #aa0000;
}

.prev {
  left: -40px;
}

.next {
  right: -40px;
}

@media (max-width: 768px) {
  .prev {
    left: -20px;
  }

  .next {
    right: -20px;
  }
}
.faq-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px auto;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #eee;
}

.faq-answer {
  padding: 0 15px 15px 15px;
  display: none;
  background-color: #fff;
  font-size: 0.95rem;
  color: #333;
}

.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer p {
  max-width: 800px;
  margin: 0 auto;
  color: #999;
  font-size: 0.85rem;
  line-height: 1.4;
}

.plans-section {
  padding: 60px 20px;
  text-align: center;
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  background-color: #f8f8f8;
  padding: 30px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d60000;
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-card ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #444;
}

.plan-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d60000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.featured {
  border: 2px solid #d60000;
  background-color: #fff7f7;
}
.installation-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.installation-section .intro-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.installation-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  background-color: #d60000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.vision-mission-section {
  padding: 60px 20px;
  text-align: center;
}

.vision-mission-section .section-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 40px;
}

.vm-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vm-card {
  background-color: #f9f9f9;
  border-left: 6px solid #d60000;
  padding: 25px 20px;
  max-width: 500px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #d60000;
}

.vm-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


.contact-section {
  padding: 60px 20px;

}

.contact-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background-color: #d60000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #b30000;
}

.contact-details {
  flex: 1 1 300px;
  max-width: 400px;
  color: #444;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #d60000;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details i {
  color: #d60000;
  margin-right: 10px;
}

.legal-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
}

.legal-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 2px solid #4a90e2;
  display: inline-block;
  padding-bottom: 5px;
}

.legal-section p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #444;
}

@media (max-width: 768px) {
  .legal-section {
    margin: 30px 20px;
    padding: 20px;
  }

  .legal-section h1 {
    font-size: 1.5rem;
  }

  .legal-section p {
    font-size: 0.95rem;
  }
}