.top-bar {
    background: #0b3c6d;
    color: white;
    padding: 6px 0;
    font-size: 14px;
}

.navbar-brand img {
    height: 55px;
}

.hero {
    background: #e8eff5;
    padding: 70px 0;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.granule-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.granule-label {
    background: rgba(0, 0, 0, 0.65);
    color: white;
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
}


.carousel-item img {
    /*height: 520px;*/
    object-fit: cover;
}

#heroCarousel .carousel-item img {
  width: 100%;
  /*height: 80vh;  */
  object-fit: contain; /* prevents cropping */
  background-color: #ffffff; /* or use any background behind image */
}


.carousel-caption {
    bottom: 20%;
}

.carousel-caption h1 {
    font-size: 42px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.years-box {
    background: #0b3c6d;
    color: white;
    padding: 14px 24px;
    border-radius: 6px;
    bottom: 20px;
    left: 20px;
}

.small-right-img {
    max-width: 350px;
    border-radius: 12px;
}

.feature-box:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.product-card {
    border-radius: 18px;
    background: #ffffff;
    transition: 0.3s ease;
    border-bottom: 4px solid #0d47a1;
    /* blue bottom border */
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.read-more-link {
    display: inline-block;
    margin-top: 8px;
    color: #0d47a1;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-link:hover {
    letter-spacing: 1px;
}

.services-section {
    background: #e4e7eb;
    /* light grey background like screenshot */
    position: relative;
    padding-top: 90px;
    padding-bottom: 120px;
}

.services-box {
    background: #ffffff;
    border-radius: 18px;
    margin-top: -50px;
    /* floating effect */
}

.service-item img {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.service-item p {
    font-size: 16px;
    line-height: 22px;
    color: #333;
}

/* Floating White Services Box */
.services-box {
    background: #ffffff;
    border-radius: 20px;
    margin-top: -60px;
    /* Makes it float over background */
    padding: 60px 40px;
    border-bottom: 6px solid #0d47a1;
    /* Blue bottom accent (optional) */
}

/* Icon style */
.service-item img {
    transition: 0.3s ease;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.15));
}

/* Hover animation */
.service-item:hover img {
    transform: scale(1.1);
}

/* Text */
.service-item p {
    font-size: 15px;
    line-height: 22px;
    color: #333;
    margin-top: 5px;
}

/* Coming Soon Script Text */
.coming-text {
    font-family: 'Brush Script MT', 'Pacifico', cursive;
    font-size: 40px;
    color: #1c2b4a;
    font-weight: 500;
}

.contact-cta-section {
    position: relative;
    background-image: url("assets/images/contact-bg.webp");
    /* <-- your image */
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}

/* Blue overlay */
.contact-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22, 60, 108, 0.45);
    /* adjust darkness */
    backdrop-filter: blur(1px);
}

/* Ensure text stays above overlay */
.contact-cta-section .container {
    position: relative;
    z-index: 2;
}

/* Button style */
.contact-btn {
    background: #0d47a1;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background: #08306a;
    transform: translateY(-2px);
}

.blog-section {
    background: #f3f3f3;
    /* light grey section background */
}

.blog-card img {
    transition: 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card h5 {
    color: #1a1f36;
    margin-bottom: 4px;
}

.read-more-link {
    text-decoration: none;
    color: #0d47a1;
    font-weight: 500;
    transition: 0.3s ease;
}

.read-more-link:hover {
    letter-spacing: 1px;
}

.blog-list-item img {
    flex-shrink: 0;
}

.blog-list-item p:hover {
    cursor: pointer;
    color: #0d47a1;
    text-decoration: underline;
}

.site-footer {
    background: #ffffff;
    color: #1c1c1c;
    font-size: 15px;
}

.footer-text {
    color: #555;
    line-height: 1.6;
    max-width: 420px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0d47a1;
    letter-spacing: 0.5px;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    background: #f1f1f1;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #0d47a1;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0d47a1;
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    background: #0d47a1;
    color: #fff;
    font-size: 14px;
}

.footer-icon {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #efefef;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.footer-icon img {
    width: 22px;
    height: 22px;
    opacity: 0.85;
    fill: currentColor;
    transition: 0.3s ease;
}

.footer-icon:hover {
    background: #0d47a1;
}

.footer-icon:hover img {
    filter: brightness(1000%);
    opacity: 1;
}

/* Hero Section */
.about-hero-section {
  background-image: url("../images/about-hero.jpg"); /* Add your image here */
  background-size: cover;
  background-position: center;
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Text in Hero */
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-content h1 {
  color: #ffffff;
  font-weight: 600;
  font-size: 42px;
}

/* Content Section */
.about-content-section p {
  font-size: 16px;
  line-height: 28px;
  max-width: 850px;
  margin: auto;
}

/* Optional: Blue highlight under title (as screenshot) */
.about-hero-content h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d47a1;
  margin: 10px auto 0;
}

.why-choose-section {
  background: #dff0ff; /* Light clean blue */
}

.why-box {
  border-radius: 16px;
  transition: 0.3s ease;
  cursor: pointer;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.blog-listing-section {
  background: #ffffff;
}

.blog-card {
  transition: 0.3s ease;
  cursor: pointer;
}

.blog-card img {
  transition: 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card h5 {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 8px;
  color: #1d1d1d;
}

.blog-read-link {
  font-weight: 500;
  color: #0d47a1;
  text-decoration: none;
  transition: 0.3s;
}

.blog-read-link:hover {
  letter-spacing: 1px;
}
.contact-section {
  background: #ffffff;
}

.custom-form-control {
  border: 1.5px solid #dcdcdc;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.custom-form-control:focus {
  border-color: #0d47a1;
  box-shadow: none;
}

.contact-submit-btn {
  background: #0d47a1!important;
  color: #fff!important;
  padding: 10px 32px;
  border-radius: 6px;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: #072a63;
  transform: translateY(-2px);
}
/* Main Background */
.waste-section {
  background: #e6ebef;
  position: relative;
  overflow: hidden; /* Needed for pattern fade */
}

/* Button */
.waste-btn {
  background: #0d47a1;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.waste-btn:hover {
  background: #072f77;
  transform: translateY(-2px);
}
.map-section iframe {
    width: 100%;
    height: 450px; /* adjust height if needed */
    display: block;
}
.product-category-section {
  background: #ffffff;
}

.product-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: 0.3s ease;
}

.product-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-box:hover img {
  transform: scale(1.08);
}

.product-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 8px 5px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.product-box:hover .product-label {
  background: #072f77;
}
.ldpe-card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 270px; /* <-- fixed height for same size boxes */
}

.ldpe-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
}

.ldpe-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0;
  min-height: 38px; /* <-- ensures two-line space always */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ldpe-btn {
  display: block;
  width: 100%;
  background: #0b3f8a;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  margin-top: auto; /* ensures button stays at bottom */
}

.ldpe-btn:hover {
  background: #062a5f;
}


.modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.form-control {
  border-radius: 0;
  border: 1px solid #ccc;
}
.form-control:focus {
  border-color: #1d3b6e;
  box-shadow: none;
}
.btn {
  border-radius: 0;
}
