* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav li {
  cursor: pointer;
  padding: 10px;
  text-transform: uppercase;
}

nav .active {
  background-color: #a0470c;
  color: white;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

.top-bar {
  background-color: #111;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  font-size: 16px;
}

.top-bar a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar .email {
  color: #fff;
}

.top-bar .phone {
  color: #fff;
}

.top-bar i {
  font-size: 14px;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-left,
.about-right {
  flex: 1;
  /* equal width */
}

.about-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
}

/* Override .btn-outline-primary with #5e2413 */
a.btn.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #5e2413;
  border-radius: 5px;
  background-color: transparent;
  color: #000;
  transition: all 0.3s ease;
}

/* Icon wrapper styling */
a.btn .btn-square {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fa6800; /* Keep this orange for contrast */
  border-radius: 5px;
  margin-right: 10px;
}

a.btn .btn-square i {
  font-size: 18px;
}

/* Text spacing */
a.btn .px-3 {
  font-weight: 600;
}

/* Hover effects using custom color */
a.btn:hover {
  background-color: #5e2413;
  color: #fff;
  border-color: #3e170d;
}

a.btn:hover .btn-square {
  background-color: #ff8c32;
}

a.btn:active {
  transform: scale(0.98);
}

/* ======= Hero Section ======= */
.hero {
  position: relative;
  background: url("slide1.jpg") center center / cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero h1 {
  position: relative;
  font-size: 2.2rem;
  z-index: 2;
  padding: 0 10px;
}

/* ======= Strip ======= */
.strip {
  background-color: #843019;
  color: white;
  padding-top: 5px;
  font-weight: bold;
  font-size: 25px;
}

.strip a {
  color: white;
  text-decoration: none;
}

.strip a:hover {
  text-decoration: underline;
}

/* ======= Floating Contact Buttons ======= */
.quick_contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.qwhtsapp,
.qcall {
  background-color: #25d366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 35px;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.qwhtsapp i,
.qcall i {
  font-size: 25px;
  animation: iconBlink 1.5s infinite;
}

.qwhtsapp:hover,
.qcall:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: none;
}

.qcall {
  background-color: #007bff;
}

.qcall:hover {
  background-color: #0056b3;
}

/* ======= Products Section ======= */
.products-section {
  padding: 40px 30px;
  max-width: 1250px;
  margin: auto;
  border-radius: 8px;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  padding: 20px;
}

.product-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 250px;
  /*object-fit: cover;*/
  transition: transform 0.3s ease;
}

.product-info {
  padding: 0 10px 30px 20px;
  flex-direction: column;
}

.product-info h4 {
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  margin-bottom: 20px;
}

.read-more-btn {
  background-color: #843019;
  text-decoration: none;
  border: none;
  color: white;
  padding: 10px 18px;
  width: 150px;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
}

.read-more-btn:active {
  transform: translateY(0);
}

.horizontal-footer {
  background-color: #0c0f11;
  color: #e0e0e0;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.footer-top p {
  font-size: 15px;
  line-height: 1.6;
  margin: 5px 0;
  color: #ccc;
}

.footer-top .highlight {
  color: #fff;
  font-weight: bold;
}

.footer-top a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.footer-top a:hover {
  text-decoration: underline;
  color: #ffcc70;
}

.footer-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-products span {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s, transform 0.2s;
}

.footer-products span:hover {
  background-color: #843019;
  color: #000;
  transform: scale(1.05);
  cursor: default;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 12px;
  font-size: 14px;
  color: #888;
}

.footer-bottom .brand-name {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 600px) {
  .footer-top p {
    font-size: 16px;  /* Increased font size */
    line-height: 1.6;
    display: block;
    text-align: center;
    word-wrap: break-word;
    margin: 12px 0;
  }

  .footer-top p:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-top .highlight {
    font-size: 18px;  /* Slightly larger for the highlighted text */
  }

  .footer-top a {
    font-size: 16px;  /* Increased font size for links */
  }

  .footer-bottom {
    font-size: 15px;  /* Increased font size for footer bottom */
    padding-top: 12px;
  }
}

/* ======= Responsive Fixes ======= */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
  }

  .menu-toggle {
    display: flex;
    margin-left: 55px;
  }

  .hero {
    height: 16vh;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .product-card img {
    height: 180px;
  }

  .product-info {
    height: auto;
  }

  .products-section {
    padding: 30px 20px;
  }

  .products-grid {
    gap: 20px;
  }

  .footer-products {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-top p {
    font-size: 14px;
  }
}

/* model */

.open-modal-btn {
  display: block;
  width: 40px;
  padding: 12px;
  background-color: #8b4513;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  position: fixed;
  right: 10px;
  bottom: 150px;
  text-align: center;
  cursor: pointer;
  writing-mode: vertical-rl;
}

.open-modal-btn:hover {
  background-color: #a0522d;
}

.modal {
  position: fixed;
  /* Fixes modal on viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Allows scrolling inside modal if needed */
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent background */
  display: none;
  /* Hide modal initially */
  z-index: 1000;
  /* On top */
}

body.modal-open {
  overflow: hidden;
  /* Prevent background scroll */
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 10px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 8px 0 4px;
  color: #333;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #8b4513;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #d6732c;
}

.footer-bottom a {
  color: #a52a2a;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #7a1f1f;
}



.strip {
  background-color: #843019;
  color: white;
  padding-top: 5px;
  font-weight: bold;
  font-size: 25px;
}

.strip a {
  color: white;
  text-decoration: none;
}

.strip a:hover {
  text-decoration: underline;
}

.features-section {
  background-color: #f2f2f1;
  text-align: center;
  padding: 20px 20px;
}

.features-section h4 {
  color: #000000;
  /* Dark red text */
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 32px;
  /* text-transform: uppercase; */
}

.features-section .divider {
  width: 60px;
  height: 4px;
  background-color: #000;
  margin: 0 auto 40px auto;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1250px;
  margin: 0 auto;
}

.feature-item i {

  color: #843019;
  font-size: 50px;
}

.feature-item p {
  font-size: 18px;
  color: #000;
  margin-top: 30px;
}

.stats-section {
  background-color: #5e2413;
  /* Match background color */
  color: #fff;
  /* Light grayish text */
  padding: 50px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  margin: 20px;
}

.stat-box .number {
  font-size: 32px;
  font-weight: bold;
}

.stat-box .label {
  font-size: 18px;
  margin-top: 8px;
}

.enquiry-section {
  background-color: #843019;
  color: #fff;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.enquiry-text {
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  max-width: 700px;
}

.enquiry-button {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s ease;
  text-decoration: none;
  margin:7px;
}

.enquiry-button:hover {
  background-color: #222;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 50px;
  animation: scroll-left 10s linear infinite;
}

.logo-track img {
  height: 80px;
  width: auto;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


  .testimonial-section {
      background: #f9f9f9;
      padding: 50px 20px;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
      font-weight: bold;
    }

    .testimonial-carousel {
      position: relative;
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial-item {
      flex: 0 0 100%;
      box-sizing: border-box;
      padding: 25px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin: 0 10px;
      text-align: center;
    }

    .testimonial-item img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #eee;
      margin-bottom: 15px;
    }

    .testimonial-item p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .testimonial-item h4 {
      font-size: 16px;
      font-weight: bold;
      color: #111;
    }

    /* === Navigation Buttons === */
    .carousel-arrow {
      all: unset;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #333;
      color: #fff;
      font-size: 24px;
      width: 40px;
      height: 40px;
      text-align: center;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-arrow.prev {
      left: 10px;
    }

    .carousel-arrow.next {
      right: 10px;
    }

    /* === Responsive Layout === */
    @media (min-width: 600px) {
      .testimonial-item {
        flex: 0 0 50%;
      }
    }

    @media (min-width: 992px) {
      .testimonial-item {
        flex: 0 0 33.33%;
      }
    }
/* ✅ Auto sliding animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ✅ Responsive */
@media (max-width: 1024px) {
  .testimonial-card { flex: 0 0 45%; }
}
@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 90%; }
}
.industries-section {
  padding: 60px 20px 40px;
  text-align: center;
  background-color: #d3d3d3;
  overflow-x: hidden; /* prevent horizontal scroll */
}

.marquee-content {
  display: flex;
  gap: 20px;
}

.industry-card {
  flex: 0 0 auto;
  width: 220px; /* make it flexible for responsiveness */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: scale(1.05);
}

.industry-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.industry-card span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .industry-card {
    width: 160px;
  }

  .industries-section h2 {
    font-size: 28px;
    color:#000;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .industry-card {
    width: 130px;
    padding: 10px;
  }

  .industry-card img {
    height: 90px;
  }

  .industries-section h2 {
    font-size: 20px;
  }
}
  @media (max-width: 480px) {
      .top-bar a {
        font-size: 12px;
      }
    }
    
        .faq-section {
      background-color: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    .faq-section h2 {
      font-size: 32px;
      color: #222;
      margin-bottom: 40px;
      letter-spacing: 1px;
    }
    .faq-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: 0 auto;
      text-align: left;
    }
    .faq-column {
      flex: 1 1 400px;
      max-width: 500px;
    }
    .faq-item {
      background-color: #f1f1f2;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
      position: relative;
    }
    .faq-item:hover {
      transform: translateY(-5px);
    }
    .faq-item h4 {
      margin-bottom: 10px;
      color: #222;
      font-size: 18px;
      font-weight: 600;
      padding-right: 30px;
      position: relative;
    }
    .faq-item h4::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 0;
      font-size: 24px;
      line-height: 1;
      color: #333;
      transition: transform 0.3s ease;
      user-select: none;
    }
    .faq-item.active h4::after {
      content: '−';
      color: #d33;
    }
    .faq-item p {
      font-size: 15px;
      color: #555;
      line-height: 1.5;
      display: none;
      margin-top: 0;
    }
    .faq-item.active p {
      display: block;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .faq-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
      }
      .faq-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .faq-column {
        max-width: 100%;
      }
      .faq-item {
        text-align: left;
      }
    }
    @media (max-width: 480px) {
      .faq-section h2 {
        font-size: 20px;
      }
      .faq-item {
        padding: 15px;
      }
    }
