
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

   /* ====== HEADER NAVIGATION ====== */
  header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Top bar */
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    padding: 5px 20px;
    font-size: 18px;
  }

  .top-bar .email {
    flex: 1;
    text-align: left;
  }

  .top-bar .phones {
    flex: 1;
    text-align: center;
  }

  .top-bar a {
    text-decoration: none;
    color: #0072ff;
    margin-left: 10px;
  }

  .top-bar i {
    margin-right: 5px;
  }

  .top-bar .email i {
    color: red;
  }

  .top-bar .phones i {
    color: black;
    margin-left: 10px;
  }

  /* Navigation */
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    position: relative;
  }

  .navbar a {
    margin: 10px 15px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s;
  }

  .navbar a:hover {
    color: #0072ff;
  }

  /* Hamburger button */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: -42px;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: black;
    margin: 4px 0;
    border-radius: 5px;
    transition: 0.3s;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #fff;
      padding: 10px 0;
      border-top: 1px solid #eee;
    }

    .nav-links.active {
      display: flex;
    }

    .hamburger {
      display: flex;
    }

    .navbar a {
      margin: 10px;
      width: 100%;
    }
  }

 
   

    /* --- About Section --- */
    .about-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 50px 10%;
      background: #f9f9f9;
    }

    .about-text {
      flex: 1 1 500px;
      padding: 20px;
    }

    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #222;
    }

    .about-text p {
      font-size: 1rem;
    }

    .about-image {
      flex: 1 1 400px;
      text-align: center;
      padding: 20px;
    }

    .about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* --- Second Section --- */
    .container {
      padding: 40px 10%;
      text-align: center;
    }

    .container img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        padding: 30px 20px;
      }

      .about-text h2 {
        font-size: 1.6rem;
      }
    }


     .services-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      background: #fafafa;
    }

    .services-image {
      flex: 1 1 350px;
      text-align: center;
      padding: 15px;
    }

    .services-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .services-content {
      flex: 1 1 400px;
      padding: 15px 30px;
    }

    .services-content h2 {
      color: #c0392b;
      font-size: 32px;
      margin-bottom: 20px;
    }

    .services-content h3 {
      font-size: 20px;
      margin-top: 20px;
      color: #000;
    }

    .services-content p {
      font-size: 16px;
      line-height: 1.6;
      margin: 10px 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .services-section {
        flex-direction: column;
        text-align: center;
      }
      .services-content {
        padding: 20px;
      }
    }


    .container img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      section {
        padding: 20px 10px;
      }
    }

    /* ====== TESTIMONIAL SECTION ====== */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}
.testimonial-section h2 {
  color: #c0392b;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.testimonial-container {
  max-width: 800px;
  margin: auto;
  position: relative;
}
.testimonial-slide {
  display: none;
  font-size: 20px;
  font-style: italic;
  /*color: #555;*/
  line-height: 1.6;
}
.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}
.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  /*color: #000;*/
  font-size: 16px;
}
/* Navigation arrows */
.prev-testimonial, .next-testimonial {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f1f1f1;
  color: #333;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}
.prev-testimonial:hover, .next-testimonial:hover {
  background: #c0392b;
  color: #fff;
}
.prev-testimonial { left: -40px; }
.next-testimonial { right: -40px; }

/* Testimonial Dots */
.testimonial-dots {
  margin-top: 30px;
}
.testimonial-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonial-dot.active {
  background-color: #c0392b;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
  .testimonial-section h2 { font-size: 26px; }
  .testimonial-slide { font-size: 18px; padding: 0 10px; }
  .prev-testimonial, .next-testimonial {
    top: auto; bottom: -50px; transform: none; margin: 0 15px;
  }
  .prev-testimonial { left: 30%; }
  .next-testimonial { right: 30%; }
}


    .map-section {
      padding: 50px 20px;
      text-align: center;
      background: #fff;
    }

    .map-section h2 {
      color: #c0392b;
      font-size: 32px;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    .map-container {
      position: relative;
      width: 100%;
      max-width: 1100px;
      height: 450px;
      margin: auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .map-section h2 {
        font-size: 26px;
      }
      .map-container {
        height: 300px;
      }
    }

    @media (max-width: 480px) {
      .map-container {
        height: 250px;
      }
    }

    /* Pickup Section */
.pickup-section {
  background: url('imges/background-new.png') no-repeat center center/cover;
  padding: 50px 20px;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
}

.pickup-content {
  max-width: 800px;
  width: 100%;
}

.pickup-content h2 {
  text-align: left;
  font-size: 32px;
  color: brown;
  margin-bottom: 10px;
}

.pickup-content p {
  text-align: left;
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}

.pickup-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Two-column layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.pickup-form input,
.pickup-form select,
.pickup-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.pickup-form input:focus,
.pickup-form select:focus,
.pickup-form textarea:focus {
  border-color: brown;
  outline: none;
  box-shadow: 0 0 6px rgba(165, 42, 42, 0.3);
}

.pickup-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 15px;
}

.pickup-agree {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #555;
}

.pickup-btn {
  text-align: center;
}

.pickup-btn button {
  background: brown;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.pickup-btn button:hover {
  background: #a52a2a;
}

/* ✅ Responsive: stack inputs on small screens */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .pickup-content h2 {
    font-size: 26px;
  }
}

/* Reset only checkbox styles */
.pickup-agree input[type="checkbox"] {
  width: auto;
  height: auto;
  margin: 0 6px 0 0; /* spacing between checkbox and text */
  vertical-align: middle;
  accent-color: #6a1b9a; /* modern browsers: custom checkbox color */
}

/* Container alignment */
.pickup-agree {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}

/* Styling the link */
.pickup-agree a {
  color: #6a1b9a;
  text-decoration: underline;
}

    footer {
      background: #222;
      color: #ddd;
      padding: 50px 20px 20px;
      font-family: Arial, sans-serif;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-column h3 {
      font-size: 16px;
      margin-bottom: 15px;
      color: #fff;
      text-transform: uppercase;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #bbb;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .footer-column p, .footer-column a {
      font-size: 14px;
      color: #bbb;
      line-height: 1.6;
    }

    .footer-column a {
      text-decoration: none;
    }

    .footer-social {
      margin-top: 10px;
    }

    .footer-social a {
      display: inline-block;
      margin-right: 10px;
      color: #bbb;
      font-size: 18px;
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      text-align: center;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 13px;
      color: #aaa;
    }

    .footer-bottom a {
      color: #3498db;
      text-decoration: none;
    }






    * {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  /*max-width: 1000px;*/
  position: relative;
  margin: auto;
}

.slideshow-container1 {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}




/* Floating icons container */
.floating-icons-container {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  display: flex;
  flex-direction: column;
  gap: 12px;          /* space between icons */
  z-index: 1000;      /* always on top */
}

/* Floating icon styling */
.floating-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366; /* Default: WhatsApp green */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect */
.floating-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Optional: custom color for call button */
.floating-icon[href^="tel:"] {
  background-color: #0072ff; /* Blue for call */
}



