.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.submenu {
  padding-left: 15px;
}

.nav-link {
  cursor: pointer;
}

.back-arrow {
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
}

.navbar-brand {
  font-weight: bold;
}

footer {
  background: #f8f9fa;
  padding: 20px 0;
  margin-top: 30px;
}

/* -----------------inquire modal---------------------- */
.modal-custom {
  display: none; 
  position: fixed; 
  z-index: 1050; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}
.modal-content-custom {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right top, #f4f6f9, #e6ecf2);
  color: #2c3e50;
  margin: 0;
  padding: 0;
}

.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  color: #000 !important;
  letter-spacing: 0.6px;
}

.nav-link {
  font-weight: 500;
  color: #000 !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #800080 !important; /* Purple */
}

.custom-inquire-btn {
  background-color: #8e24aa;
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-inquire-btn:hover {
  background-color: #6a1b9a;
  transform: translateY(-2px);
  color: white;
}

.dropdown-menu {
  display: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.dropdown-menu.show {
  display: block;
}

.submenu {
  padding-left: 20px;
}

.back-arrow {
  font-weight: bold;
  color: #800080;
  cursor: pointer;
}

.dropdown-item {
  padding: 12px 22px;
  transition: background-color 0.2s ease;
  font-weight: 500;
  color: #333;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
  color: #800080;
}

.container.contact-section {
  background-color: #fff;
  border-radius: 16px;
  padding: 50px;
  margin-top: 80px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

h2 {
  font-weight: 800;
  color: #34aec6;
  margin-bottom: 30px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  /* background-color: #800080; */
  margin-top: 10px;
  border-radius: 2px;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-info a {
  color: #800080;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

footer {
  background-color: #ffffff;
  color: #333;
  padding: 18px 30px;
  margin: 50px auto 30px;
  border: 1px solid #ccc;
  border-radius: 14px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
}

/* Modal styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal {
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal h2 {
  text-align: center;
  color: #800080;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-field,
.form-field-full {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-field-full {
  flex: 1 1 100%;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
}

input, select, textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #8e24aa;
  box-shadow: 0 0 4px rgba(142, 36, 170, 0.3);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background-color: #8a083e;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
}

.submit-btn:hover {
  background-color: #6a1b9a;
}

.info-text {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #8e24aa;
  color: white;
  border: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 0 8px 0 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .container.contact-section {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .form-field {
    flex: 1 1 100%;
  }
}

/* Mobile inquiry button */
.mobile-inquire-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 12px;
  background-color: #8a083e;
  color: #fff;
  font-size: 18px;
  z-index: 1050;
}

.mobile-inquire-btn:hover {
  background-color: #6a1b9a;
}

/* Carousel text */
.carousel-caption {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  padding: 2rem;
}

.carousel-caption h2 {
  font-size: 3rem;
}

.carousel-caption p {
  font-size: 1.25rem;
  max-width: 800px;
  text-align: center;
}

/* Custom red buttons (if needed) */
.btn-custom {
  background-color: #B22222; /* Firebrick Red */
  color: #fff;
  border: none;
}

.btn-custom:hover {
  background-color: #8B1A1A; /* Darker red on hover */
  color: #fff;
}
.carousel-item img {
  width: 100vw;   /* Full viewport width */
  height: 500px;  /* or any desired fixed height */
  object-fit: cover;
  margin: 0;
}
.bg-packaging {
  background-image: url('assets/images/image.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}
.card-img-top {
  height: 250px;       /* Set a fixed, uniform height for all card images */
  object-fit: cover;   /* Ensures image fills area and crops if needed */
  width: 100%;         /* Full width of the card */
}
.custom-footer {
  background-color: #f8f9fa;
  padding: 12px 0;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

.custom-footer p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu.submenu {
  top: 0;
  left: 100%;
  margin-top: 0;
}
.nav-link.active {
  color: #007bff !important; /* Bootstrap's primary blue, customize if needed */
}
/* ------------------packaging material  block css-----------------------------------------  */
 .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.btn-custom {
  background-color: #b31c1c;
  color: white;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #8c1414;
  color: white;
}

.list-group-flush {
  padding-left: 0;
}

.list-group-flush li {
  list-style: none;
  padding: 8px 0;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.list-group-flush li:hover {
  background-color: #fbe9e7; /* soft beige hover background */
  border-radius: 6px;
}

.list-item {
  text-decoration: none;
  color: #b31c1c; /* brown */
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
}

.list-item:hover {
  color: #6d1b1b; /* darker brown on hover */
}
/* --------------------------------stretch film info css not  nav bar------------------------------------ */
   /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                  url('assets/images/background_stech_film.png') no-repeat center center/cover;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    /* Product Section */
    .product-row {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 60px 0;
      align-items: center;
    }

    .product-image {
      flex: 1 1 40%;
      text-align: center;
    }

    .product-image img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .product-image img:hover {
      transform: scale(1.05);
    }

    .product-details {
      flex: 1 1 55%;
    }

    .product-details h2 {
      font-size: 2rem;
      color: #343a40;
      margin-bottom: 1rem;
    }

    .product-details p {
      font-size: 1.1rem;
      color: #555;
    }

    .product-details ul {
      list-style: none;
      padding-left: 0;
    }

    .product-details ul li {
      margin: 8px 0;
      position: relative;
      padding-left: 24px;
      color: #333;
    }

    .product-details ul li::before {
      content: "\f058";
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: #28a745;
    }

    .btn-quote , .btn-quote1 {
      display: inline-block;
      margin-top: 20px;
      margin-right: 15px;
      padding: 10px 20px;
      background-color: #6f42c1;
      color: white;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .btn-quote:hover {
      background-color: #5936a2;
      color: white;
    }

    /* Footer */
    footer {
      background-color: #f8f9fa;
      padding: 20px 0;
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #ddd;
    }

    footer p {
      margin: 0;
      color: #6c757d;
    }

    @media screen and (max-width: 768px) {
      .product-row {
        flex-direction: column;
      }

      .product-details, .product-image {
        flex: 1 1 100%;
      }

      .hero h1 {
        font-size: 2.2rem;
      }
    }



    /* get qote popup design */
    /* General Button Style */
    
.btn-quote {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #7e22ce; /* Purple */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  font-weight: bold;
}
.btn-quote:hover {
  background: #5b16a8;
}

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal-content {
  background: #fff;
  padding: 30px 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
  text-align: left;
  box-sizing: border-box;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Heading Style */
.modal-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #7e22ce;
  word-wrap: break-word;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  color: #666;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

/* Labels and Inputs */
.modal-content label {
  display: block;
  margin-top: 12px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: #aaa;
}

/* Submit Button */
.modal-content button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}
.modal-content button:hover {
  background-color: #218838;
}

/* Responsive Fixes */
@media (max-width: 480px) {
  .modal-content {
    padding: 20px 15px;
  }

  .modal-content h2 {
    font-size: 18px;
    text-align: center;
  }
}





/* 📱 Responsive slideshow height adjustments */
/* Tablets */
@media (max-width: 768px) {
  .carousel-item img {
    height: 300px; /* smaller for tablets */
  }
 
  .carousel-caption h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
 
  .carousel-caption p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
 
/* Small phones */
@media (max-width: 576px) {
  .carousel-item img {
    height: 220px; /* compact height */
  }
 
  .carousel-caption {
    padding: 0.6rem;
    bottom: 5%;
  }
 
  .carousel-caption h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
 
  .carousel-caption p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}
 
 









