  
    /* Custom Styling */
    *{
        margin: 0px;
        padding: 0px;
    }
    body {
      font-family: Arial, sans-serif;
    }

    /* android phone  for css style*/
    
/* CSS for Android phone */
@media (max-width: 767px) {
  /* General styles */
  .container {
    padding: 0 15px;
  }

  h1.display-5 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
  }
  
  .lead {
    text-align: center;
    font-size: 1rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 80px 0;
    text-align: center;
      background: url('img/index-baner.png') no-repeat center center/cover;
  min-height: 100vh; /* full screen height */
  position: relative;
  color: #fff; /* text white for contrast */
  
  }

  .hero-content .mt-4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-content .btn-custom {
    order: 2; /* "Explore Products" button will be below "Get in Touch" */
  }

  /* Trusted Section */
  .icon-section {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .icon-box {
    flex-basis: 30%;
    margin-bottom: 15px;
  }

  /* About Section */
  .about-section {
    flex-direction: column;
    padding: 20px 0;
  }

  .about-image img {
    height: auto;
    width: 100%;
  }

  .about-content {
    text-align: center;
    padding: 20px;
  }

  .features {
    flex-direction: column;
  }

  .features > div {
    margin-bottom: 10px;
  }

  /* Product Section */
  .product-section h2,
  .product-section p {
    text-align: center;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card {
    text-align: center;
  }

  .product-card img {
    height: auto;
  }

  .sizes span {
    font-size: 0.8rem;
    padding: 3px 8px;
  }

  /* Manufacturing Process Section */
  .manufacturing-process .row {
    flex-direction: column;
  }

  .process-card {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Sustainability Section */
  .sustainability-section .row {
    flex-direction: column-reverse;
  }

  .sustainability-section .col-lg-6 {
    text-align: center;
  }

  .sustainability-list {
    padding-left: 0;
  }

  .sustainability-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sustainability-list .icon {
    margin-bottom: 10px;
  }

  /* Testimonials Section */
  .testimonials-section .row {
    flex-direction: column;
  }

  /* Contact Section */
  .contact-section h3,
  .contact-section p {
    text-align: center;
  }

  .contact-section .row {
    flex-direction: column;
  }
}

    /* android phone  for css style end*/

    .hero-section {
       background: url('img/index-baner.png') no-repeat center center/cover; 
      color: white;
      text-align: left;
      padding: 120px 0;
      position: relative;
    }
    .home-hero {
      background: url('img/prod-baner.png') no-repeat center center/cover;
     height: 700px; 
    }
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
       /* background: rgba(0, 80, 160, 0.6); * */
      background-color: rgba(0, 77, 153, 0.6);

    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .navbar-brand {
      font-weight: bold;
    }
    .btn-custom {
      margin-right: 10px;
    }
  .slider-container {
  position: relative;
  width: 400px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin: auto;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Counter + Arrows */
.controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.controls span {
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.counter {
  font-weight: bold;
}
.icon-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f5f9fd; /* Light background from screenshot */
    padding: 30px 20px;
  }

  .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #3b5998; /* Soft Facebook-style blue */
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  .icon-box i {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .label {
    margin-top: 4px;
  }

  /* about section style  */
  /* style.css */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 40px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  color: #333;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  color: #2e3b8f;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 20px;
  margin-top: 20px;
}

.features div {
  font-size: 14px;
  color: #2e3b8f;
  display: flex;
  align-items: center;
}

.features i {
  color: #2e9cdb;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-image {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

/* our products section style  */
.product-section h2 {
  font-weight: bold;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  min-height: 80px;
}

.sizes {
  margin: 15px 0;
}

.sizes span {
  display: inline-block;
  background: #f1f1f1;
  margin: 3px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.quote-link {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
}

.quote-link:hover {
  text-decoration: underline;
}
 /* our manu facturing company  */
 
  .manufacturing-process {
    padding: 40px 20px;
    background-color: #f9fbfd;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  .manufacturing-process h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .manufacturing-process .subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
 
    justify-content: center;
   
  }

  .process-card {
    background-color: #fff;
    border: 1px solid #e0e6ed;
    border-top: 3px solid #007BFF;
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .process-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #007BFF;
  }

  .process-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
  }

  .process-card p {
    font-size: 14px;
    color: #666;
  }

  /* our commitement section style  */
  
  .sustainability-section {
    background-color: #f7f9fb;
  }

  .sustainability-section h2 {
    font-weight: 600;
    font-size: 26px;
    color: #1a1a1a;
  }

  .sustainability-list .icon {
    font-size: 24px;
    color: #2d9cdb; /* A calm blue tone */
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .sustainability-section .row {
      flex-direction: column-reverse;
    }

    .sustainability-section img {
      margin-bottom: 30px;
    }
  }
   .testimonial-card {
    transition: transform 0.3s;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  .contact-section .form-label {
  font-weight: 500;
}

.contact-section .form-control,
.contact-section .form-select {
  border-radius: 0.375rem;
}

/* products page style  */

/* Filter Button Styles */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  justify-content: center;
  background-color: #f1f5f9;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #e0e0e0;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #007bff;
  color: #fff;
}

/* Product Carousel */
.product-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-behavior: smooth;
}

.product-card {
  min-width: 250px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

.product-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 25px;
  padding: 40px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 16px;
  margin: 10px 0 5px;
  color: #1a1a1a;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  min-height: 40px;
}

.sizes {
  margin-bottom: 10px;
}

.sizes span {
  background-color: #e0ecf8;
  color: #007bff;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 5px;
  display: inline-block;
}

.price-quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-weight: bold;
  color: #007bff;
  font-size: 14px;
}

.quote-btn {
  background-color: #00aaff;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #0077cc;
}

/* manufacturing section page start style  */

.hero-section-m {
  background: url('img/man-baner.png') no-repeat center center;
  background-size: cover;
  height: 80vh;
  
}

.overlay {
   background-color: rgba(0, 77, 153, 0.6);          */
     /* Blue overlay */
}

.breadcrumb-custom a {
  color: white;
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  text-decoration: underline;
}

.stats-section {
  background-color: #f8f9fa; /* light gray background */
}

.stat-card {
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}
.step-number {
  width: 40px;
  height: 40px;
  background-color: #0d6efd; /* Bootstrap Primary */
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* sustainability page css style section  */

.zero-waste-section .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0f2fe; /* Light blue background */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0b4f8d; /* Dark blue icon color */
  font-size: 1.5rem;
}
.zero-waste-section .list-unstyled li {
  border-bottom: 1px solid #e9ecef; /* Light gray border for list items */
}
.zero-waste-section .list-unstyled li:last-child {
  border-bottom: none;
}

.sustainable-materials-section {
  background-color: #f8f9fa; /* Light background to make the cards stand out */
}

.sustainable-materials-section .sustainable-card {
  text-align: center;
}

.sustainable-materials-section .icon-box-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e6f7f2; /* Light green-blue background for icons */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #17a2b8; /* A shade of cyan/teal for the icon color */
  border: 2px solid #17a2b8;
}

/* Specific icon color overrides to match the image */
.sustainable-materials-section .fa-tree {
  color: #28a745; /* Green */
  background-color: #e9f5e9;
  border-color: #28a745;
}

.sustainable-materials-section .fa-leaf {
  color: #17a2b8; /* Teal */
  background-color: #e6f7f2;
  border-color: #17a2b8;
}

.sustainable-materials-section .fa-tint {
  color: #007bff; /* Blue */
  background-color: #eaf3ff;
  border-color: #007bff;
}

.sustainable-materials-section .fa-recycle {
  color: #6c757d; /* Gray */
  background-color: #f1f1f1;
  border-color: #6c757d;
}

.environmental-impact-section .impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #28a745; /* Default color, overwritten below */
}

.environmental-impact-section .text-success { color: #28a745 !important; }
.environmental-impact-section .text-info { color: #17a2b8 !important; }
.environmental-impact-section .text-primary { color: #6c5ce7 !important; } /* Customizing primary for the specific purple shown */
.environmental-impact-section .text-secondary { color: #6c757d !important; }

.environmental-impact-section .progress {
  background-color: #e9ecef;
}

.sustainability-goals-section .icon-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #d1e7dd; /* Light green background */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #198754; /* Green icon color */
}
.sustainability-goals-section .icon-circle-blue {
  background-color: #cfe2ff; /* Light blue background */
  color: #0d6efd; /* Blue icon color */
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sustainability-goals-section .sustainability-list .fa-check-circle {
  font-size: 1rem;
}

.sustainability-cta {
  background-color: #0d9488; /* A teal-like color to match the image */
}

/* Optional: Adjust for smaller screens */
@media (max-width: 576px) {
  .sustainability-cta .btn-lg {
    width: 100%;
  }
}

/* contact page css style page  */

.get-in-touch-section {
  min-height: 400px;
}

.contact-info-section {
  background-color: #f8f9fa; /* A light background color */
}

.contact-info-section .contact-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-section .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e0f7ff; /* Light blue background */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #007bff; /* Blue icon color */
}

/* Specific icon colors to match the image */
.contact-info-section .fa-phone-alt {
  color: #007bff;
}

.contact-info-section .fa-envelope {
  color: #28a745;
}

.contact-info-section .fa-map-marker-alt {
  color: #ffc107;
}

.contact-info-section a {
  color: #212529 !important; /* Ensure link color is dark */
}

  .contact-section {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
  }

  .form-control:focus, .form-select:focus, textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.15);
  }

  button[type="submit"]:hover {
    background-color: #0b5ed7;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  }

  .business-hours-section {
  background-color: #f8f9fa; /* A light background color */
}

.business-hours-section .hours-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.business-hours-section .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0f7ff; /* Light blue background */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #0d6efd; /* Blue icon color */
}

.business-hours-section .icon-circle-green {
  background-color: #e9f5e9; /* Light green background */
  color: #198754; /* Green icon color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}




