
.hd-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef3fb, #f9fcff);
  font-family: "Poppins", Arial, sans-serif;
}

.hd-container {
  max-width: 1200px;
  margin: auto;
}

.hd-header {
  text-align: center;
  margin-bottom: 40px;
}

.hd-title {
  font-size: 42px;
  color: #1f5f9c;
  margin-bottom: 10px;
}

.hd-tagline {
  font-size: 18px;
  color: #555;
}

.hd-description p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.hd-subtitle {
  font-size: 26px;
  color: #1f5f9c;
  margin: 40px 0 20px;
}

.hd-list {
  list-style: none;
  padding-left: 0;
}

.hd-list li {
  font-size: 16px;
  color: #333;
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
}

.hd-list li::before {
  content: "✔";
  color: #1f5f9c;
  position: absolute;
  left: 0;
  top: 0;
}

.hd-note {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

.hd-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.hd-why-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 15px;
  color: #333;
}

.hd-cta {
  margin-top: 50px;
  text-align: center;
}

.hd-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #1f5f9c;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hd-btn:hover {
  background: #164a78;
}

.hd-cta-text {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    .mt-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef7f1, #f8fbff);
  font-family: "Poppins", Arial, sans-serif;
}

.mt-container {
  max-width: 1200px;
  margin: auto;
}

.mt-header {
  text-align: center;
  margin-bottom: 40px;
}

.mt-title {
  font-size: 42px;
  color: #1f6b3a;
  margin-bottom: 10px;
}

.mt-tagline {
  font-size: 18px;
  color: #555;
}

.mt-description p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mt-subtitle {
  font-size: 26px;
  color: #1f6b3a;
  margin: 40px 0 20px;
}

.mt-list {
  list-style: none;
  padding-left: 0;
}

.mt-list li {
  font-size: 16px;
  color: #333;
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
}

.mt-list li::before {
  content: "✔";
  color: #1f6b3a;
  position: absolute;
  left: 0;
  top: 0;
}

.mt-note {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

.mt-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.mt-why-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 15px;
  color: #333;
}

.mt-cta {
  margin-top: 50px;
  text-align: center;
}

.mt-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #1f6b3a;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.mt-btn:hover {
  background: #15522c;
}

.mt-cta-text {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
}

.view-more-btn {
    text-align: center;
    margin-top: 20px;
}

.view-more-btn a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.view-more-btn a:hover {
    background-color: #0056b3;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}




#customSlider.my-slider-container {
width: 100%;
max-width: 100%;
position: relative;
overflow: hidden;
margin: auto;
}
.my-slider-track {
display: flex;
transition: transform 0.5s ease-in-out;
}
.my-slide {
flex: 0 0 100%;
}
.my-slide img {
width: 100%;
height: auto;
display: block;
}
.my-slider-prev,
.my-slider-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: #fff;
font-size: 1rem;
padding: 0px 10px;
cursor: pointer;
border: none;
z-index: 10;
border-radius: 50%;
}
.my-slider-prev { left: 10px; }
.my-slider-next { right: 10px; }
.my-slider-dots {
text-align: center;
margin-top: 10px;
}
.my-slider-dots span {
display: inline-block;
width: 10px;
height: 10px;
background: #ccc;
margin: 0 4px;
border-radius: 50%;
cursor: pointer;
transition: 0.3s;
}
.my-slider-dots .active {
background: #333;
}
#catName{
        background: #0d375f;
    color: white;
    padding: 8px 16px;
    margin-top: 12px;
    border-radius: 12px;
}

   
        .col-sm-3.col-md-3.mt-4 {
    position: relative;
    overflow: hidden;

}

.col-sm-3.col-md-3.mt-4 img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    border-radius:15px;
}

.col-sm-3.col-md-3.mt-4:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.col-sm-3.col-md-3.mt-4::before {
    /*content: "";*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;

}

.col-sm-3.col-md-3.mt-4:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
      /*border:1px solid red;*/
}

.col-sm-3.col-md-3.mt-4 > a > div {
    position: relative;
    transition: all 0.3s ease;
}

.col-sm-3.col-md-3.mt-4:hover > a > div {
    box-shadow: 0px 15px 20px -5px rgba(0,0,0,0.2);
}
    </style>

<style>
.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    height: 250px; /* Fixed height */
    width: 100%;   /* Full width of the column */
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    transition: transform 0.4s ease;
}

.product-img:hover img {
    transform: scale(1.05);
}




.product-img::before {
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.product-img::after {
    bottom: 0;
    left: 0;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.popup-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 10px;
}
.popup-overlay .close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
}

.tagline-box {
      background: linear-gradient(to right, #004d00, #00b300);
      color: white;
      font-size: 20px;
      font-weight: bold;
      padding: 15px 0;
      overflow: hidden;
      position: relative;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      border-radius: 8px;
      margin: 5px;
    }

    .tagline-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 255, 0, 0.2), transparent 80%);
      z-index: 1;
    }

    .marquee {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 12s linear infinite;
      position: relative;
      z-index: 2;
      padding-left: 100%;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-100%); }
    }

    .highlight {
      color: #ffff00;
      text-shadow: 2px 2px 4px #000000;
    }
/*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/

.why-choose-area {
  background: #f8fbff;
}

.why-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
}

.why-icon {
  font-size: 40px;
  color: #1f6b3a;
  margin-bottom: 15px;
}

.why-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.why-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/

.quality-area {
  background: #f4f9f6;
}

.quality-content h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1f6b3a;
}

.quality-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.quality-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.quality-list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.quality-list i {
  color: #1f6b3a;
  margin-right: 8px;
}

.quality-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.quality-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  height: 100%;
}

.quality-box i {
  font-size: 36px;
  color: #1f6b3a;
  margin-bottom: 12px;
}

.quality-box h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.quality-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.faq-area {
  background: #ffffff;
}

.faq-item {
  background: #f8f9fb;
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.faq-item h5 {
  font-size: 18px;
  color: #1f5f9c;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.product-showcase {
  padding: 80px 20px;
  background: #f7fbf9;
}

.product-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-6px);
}

.product-item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-item h4 {
  font-size: 18px;
  color: #1f6b3a;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-container {
    grid-template-columns: 1fr;
  }
}
