        .carousel {
  background-color: black;
}

.carousel-inner {
  /*// make H/W ratio of 1/5*/
  width: 100vw;
  height: 35vw;

  .item {
    height: 100%;

    &.one {
      background-image: url('../img/stp/stp-4.jpeg');
      background-position: center center;
      background-size: cover;
    }

    &.two {
      background-image: url('../img/wtp/1.jpg');
      background-position: center center;
      background-size: cover;
    }

    &.three {
      background-image: url('../img/napkin-banner.jpg');
      background-position: center center;
      background-size: cover;
    }

    &.four {
      background-image: url('../img/composting-banner.jpg');
      background-position: center center;
      background-size: cover;
    }
  }
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    .carousel-caption
    {
        font-size: 30px;
        letter-spacing: 1px;
        /* line-height: 1.3em !important; */
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 2px 2px #000;
    }
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  .carousel-caption
    {
        font-size: 30px;
        letter-spacing: 1px;
        /* line-height: 1.3em !important; */
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 2px 2px #000;
    }
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
    .carousel-caption
    {
        font-size: 15px;
        letter-spacing: 1px;
        /* line-height: 1.3em !important; */
        /* margin-bottom: 15px; */
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 2px 2px #000;
    }

    .carousel-inner {
        height:50vw;
    }
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
    .carousel-caption
    {
        font-size: 15px;
        letter-spacing: 1px;
        /* line-height: 1.3em !important; */
        /* margin-bottom: 15px; */
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 2px 2px #000;
    }

    .carousel-inner {
        height:50vw;
    }
  
}
/* SECTION BACKGROUND */
.why-choose-us-sec {
    padding: 80px 20px;
    background: #ffffff;
}

/* TITLE */
.title-wcu {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #006435;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* GRID */
.wcu-grid-box {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.wcu-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

/* HOVER */
.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.18);
}

/* ICON */
.wcu-icon {
    height: 70px;
    width: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* HEADING */
.wcu-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

/* TEXT */
.wcu-card p {
    color: #202135;
    line-height: 2em;
    font-family: "League Spartan", sans-serif!important;
    letter-spacing: 1px;
    line-height: 1.8em;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wcu-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wcu-grid-box {
        grid-template-columns: 1fr;
    }
    .title-wcu {
        font-size: 26px;
    }
}


.heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: #006435; /* Green text */
  margin: 40px 0;
}

.heading-line::before,
.heading-line::after {
  content: "";
  width: 50px; /* SHORT LINE SIZE */
  height: 2px;
  background-color:limegreen; /* Orange lines */
  margin: 0 12px;
}

/* ------------------------------------
   SECTION TITLE
--------------------------------------- */
.why-choose {
  padding: 90px 7%;
  text-align: center;
}

.why-title {
  font-size: 36px;
  color: var(--cecon-green);
  font-weight: 800;
  margin-bottom: 55px;
  position: relative;
  display: inline-block;
}

.why-title:before,
.why-title:after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--cecon-green);
  position: absolute;
  top: 50%;
}

.why-title:before {
  right: 105%;
}

.why-title:after {
  left: 105%;
}

/* ------------------------------------
   GRID LAYOUT (3 FIXED PER ROW)
--------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ------------------------------------
   PREMIUM BOX
--------------------------------------- */
.why-box {
  background: var(--box-bg);
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 35px var(--shadow);
  transition: 0.35s ease;
  border-top: 4px solid var(--cecon-blue);
  cursor: pointer;
  position: relative;
}

.why-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.22);
}

.why-box i {
  font-size: 60px;
  color: var(--cecon-green);
  margin-bottom: 20px;
  display: block;
}

.why-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }
}