* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* roboto  */

@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --color: #343f52;
  --whiteColor: white;
  --BlackColor: black;
  --GeistFont: "Geist Mono", serif;
  --NavColor: #0b4c25;
}

/* header content  */
.navbar {
  background-color: var(--NavColor);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.navbar-brand {
  color: var(--whiteColor);
  img {
    width: 150px;
    height: 50px;
  }
}
.navbar-nav {
  li {
    margin: 0 10px;
    position: relative;
    a {
      display: block;
      padding: 1.2rem 1rem;
      font-size: 1.03rem;
      letter-spacing: 2px;
      font-weight: 650;
      color: var(--whiteColor);
      transition: all 200ms ease-in-out;
      &::after {
        content: "";
        width: 0;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 20px;
        transition: 0.5s ease-in;
        background-color: #ff0000;
      }
      &:hover {
        color: var(--whiteColor);
      }
      &:hover::after {
        width: 100%;
        color: white;
      }
    }
  }
}
.social-icons i {
  font-size: 1.5rem;
  margin: 0 5px;
  cursor: pointer;
  color: white;
}
.navbar-toggler {
  border: 1px solid white;
  &:focus {
    box-shadow: none;
    outline: none;
  }
}
.single-side {
  background-image: url(../images/banner/image.png);
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 500px;
  position: relative;
  z-index: 999;
  &::after {
    content: "";
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.header-content {
  position: relative;
  z-index: 1;
  h6 {
    text-align: center;
    font-size: 22px;
    font-family: cursive;
    color: var(--whiteColor);
  }
  h1 {
    width: 900px;
    margin: auto;
    text-align: center;
    font-size: 55px;
    padding-left: 20px;
    color: var(--whiteColor);
  }
  p{
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 10px;
  }
}

/* card  */

.card-section-title {
  margin-top: 70px;
  h1 {
    width: fit-content;
    margin: auto;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    &::after {
      content: "";
      width: 30%;
      height: 3px;
      background-color: green;
      position: absolute;
      left: 0;
      bottom: -4px;
    }
  }
}
.card {
  width: 100%;
  height: 350px;
  margin-top: 10px;
  .card-body{
    height: 100px;
  }
  .card-image {
    width: 100px;
    height: 100px ;
    border-radius: 50%;
    background-color: #228b221a;
    color: #228b22;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in;



    img {
      width: 80px;
      height: 80px;
      position: relative;
      z-index: 999;
      margin: auto;
      display: flex;
      padding: 10px;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }
    &:hover {
      transform: scale(1.05);
    }
  }
  .card-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .card-text {
    font-size: 15px;
    padding: 15px;
    text-align: center;
  }
}

/* about  */

.container {
  max-width: 1250px;
  margin: auto;
  .about-section {
    display: flex;
    margin: 120px 0;
  }
  .about-image {
    img {
      width: 100%;
      height: 470px;
    }
  }
  .about-title {
    p {
      width: fit-content;
      padding: 12px;
      font-weight: 650;
      font-size: 13px;
      letter-spacing: 1px;
      background-color: #e0f6e9;
    }
    h1 {
      color: #024731;
      font-weight: bold;
      margin: 20px 0 20px 0;
      font-size: 50px;
      letter-spacing: 1px;
    }
  }
  .about-paragraph {
    margin: 20px 0;
    padding: 6px;
    p {
      max-width: 550px;
      font-size: 16px;
      margin: 15px 0;
      color: gray;
    }
  }
  .icon-component {
    display: flex;
    align-items: center;
    margin-right: 10px;
    gap: 50px;
    .time-line {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      i {
        font-size: 25px;
        cursor: pointer;
        color: green;
      }
      p {
        font-size: 15px;
        margin-top: 5px;
      }
    }
  }
  #about {
    padding: 15px 10px;
  }
}
.home-banner {
  width: 100%;
  margin-top: 50px;
  height: 400px;
  background-image: url(../images/banner/Home-section-banner.png);
  background-size: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  &::after {
    content: "";
    width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
  }
  .home-banner-content {
    position: relative;
    z-index: 1;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: auto;
    h3 {
      font-size: 50px;
      color: white;
      text-align: center;
      font-family: var(--GeistFont);
    }
  }
}
.Recycling {
  margin-top: 50px;
  text-align: center;
  h1 {
    width: fit-content;
    margin: auto;
    font-size: 35px;
    color: black;
    position: relative;
    &::after {
      content: "";
      width: 30%;
      height: 3px;
      background-color: var(--NavColor);
      left: 0;
      bottom: 2px;
      position: absolute;
    }
  }
}

/* swiper card  */

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  margin: 60px 70px 55px;
}
.card-list .card-item {
  height: 350px;
  user-select: none;
  border: 1px solid lightgray;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
}
.card-list .card-item .user-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  padding: 4px;
}
.card-list .card-item .user-profession {
  font-size: 12px;
  color: black;
  font-family: cursive;
  font-weight: 500;
  text-align: center;
}
.user-name {
  text-align: center;
  font-size: 22px;
  font-family:monospace;
  font-weight: 500px;
  color: black;
}
.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #030728;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.card-list .card-item .message-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.slider-wrapper .swiper-pagination-bullet {
  background: purple;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}
.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.slider-wrapper .swiper-slide-button {
  color: black;
  margin-top: -30px;
  transition: 0.2s ease;
}
.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

/* about page  */

.about-banner {
  background-image: url(../images/banner/about-banner.png);
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 350px;
  position: relative;
  z-index: 999;
  &::after {
    content: "";
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.about-page-content {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  .about-page-image img {
    width: 600px;
    height: 450px;
    border-radius: 10px;
  }
  .about-page-image {
    margin-left: 20px;
  }
  .about-page-title {
    h3 {
      font-size: 18px;
      font-weight: bold;
      color: green;
      margin-top: 20px;
    }
    h2 {
      font-size: 35px;
      font-weight: bold;
    }
    p {
      font-size: 16px;
      color: gray;
      margin-top: 40px;
    }
  }
  .about-page-card {
    display: flex;
    margin: 30px 0;
    gap: 20px;
    .about-card-icon {
      align-items: center;
      width: 200px;
      justify-content: center;
      border: 1px solid lightgray;
      display: flex;
      gap: 10px;
      cursor: pointer;
      i {
        color: green;
        margin-top: -3px;
      }
      p {
        margin-top: 10px;
      }
    }
  }
}
.title{
  text-align: center;
  margin: 50px 0;
  h4{
    font-family: cursive;
    font-size: 15px;
  }
  h1{
    font-size: 35px;
    color: rgb(24, 24, 58);
    font-weight: bold;
    letter-spacing: 2px;
  }
}
.wast-collection{
  margin-top: 50px;
  /* width:100%; */
  height: 300px;
  border-radius: 25px;
  border: 2px solid lightgray;
  .wast-icon{
    margin:15px auto;
    width: 100px;
    border-radius: 50%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    i{
      color: white;
      font-size: 35px;
      color: yellow;
    }
  }
  .wast-title{
    h3{
      font-size: 22px;
      font-weight: bold;
      text-align: center;
    }
  }
  .wast-peragraph{
    p{
      font-size: 15px;
      text-align: center;
    }
  }
}
/* services page  */

.services-banner {
  background-image: url(../images/banner/services.jpg);
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 350px;
  position: relative;
  z-index: 999;
  &::after {
    content: "";
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.services-page-content {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  .about-page-image img {
    width: 600px;
    height: 450px;
    border-radius: 10px;
  }
  .services-page-image {
    margin-left: 20px;
  }
  .services-page-title {
    h3 {
      font-size: 18px;
      font-weight: bold;
      color: green;
      margin-top: 20px;
    }
    h2 {
      font-size: 35px;
      font-weight: bold;
    }
    p {
      font-size: 16px;
      color: gray;
      margin-top: 40px;
    }
  }
  .services-page-card {
    display: flex;
    margin: 30px 0;
    gap: 20px;
    .services-card-icon {
      align-items: center;
      width: 200px;
      justify-content: center;
      border: 1px solid lightgray;
      display: flex;
      gap: 10px;
      cursor: pointer;
      i {
        color: green;
        margin-top: -3px;
      }
      p {
        margin-top: 10px;
      }
    }
  }
}
.title{
  text-align: center;
  margin: 50px 0;
  h4{
    font-family: cursive;
    font-size: 15px;
  }
  h1{
    font-size: 35px;
    color: rgb(24, 24, 58);
    font-weight: bold;
    letter-spacing: 2px;
  }
}
.wast-collection{
  margin-top: 50px;
  /* width:100%; */
  height: 300px;
  border-radius: 25px;
  border: 2px solid lightgray;
  .wast-icon{
    margin:15px auto;
    width: 100px;
    border-radius: 50%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    i{
      color: white;
      font-size: 35px;
      color: yellow;
    }
  }
  .wast-title{
    h3{
      font-size: 22px;
      font-weight: bold;
      text-align: center;
    }
  }
  .wast-peragraph{
    p{
      font-size: 15px;
      text-align: center;
    }
  }
  .services-swiper-slide-hover {
    transform: translateY(-5px);
  }
  
}

/* FAQ Page  */

.faq-banner {
  background-image: url(../images/banner/FAQ-banner.jpg);
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 350px;
  position: relative;
  z-index: 999;
  &::after {
    content: "";
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
  }

}
.faq-page-content {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  .faq-page-image img {
    width: 600px;
    height: 450px;
    border-radius: 10px;
  }
  .faq-page-image {
    margin-left: 20px;
  }
  .faq-page-title {
    h3 {
      font-size: 18px;
      font-weight: bold;
      color: green;
      margin-top: 20px;
    }
    h2 {
      font-size: 35px;
      font-weight: bold;
    }
    p {
      font-size: 16px;
      color: gray;
      margin-top: 40px;
    }
  }
  .faq-page-card {
    display: flex;
    margin: 30px 0;
    gap: 20px;
    .blogs-card-icon {
      align-items: center;
      width: 200px;
      justify-content: center;
      border: 1px solid lightgray;
      display: flex;
      gap: 10px;
      cursor: pointer;
      i {
        color: green;
        margin-top: -3px;
      }
      p {
        margin-top: 10px;
      }
    }
  }
}
.title{
  text-align: center;
  margin: 50px 0;
  h4{
    font-family: cursive;
    font-size: 15px;
  }
  .h1{
    font-size: 35px;
    color: rgb(24, 24, 58);
    font-weight: bold;
    letter-spacing: 2px;
  }
}
.wast-collection{
  margin-top: 50px;
  /* width:100%; */
  height: 300px;
  border-radius: 25px;
  border: 2px solid lightgray;
  .wast-icon{
    margin:15px auto;
    width: 100px;
    border-radius: 50%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    i{
      color: white;
      font-size: 35px;
      color: yellow;
    }
  }
  .wast-title{
    h3{
      font-size: 22px;
      font-weight: bold;
      text-align: center;
    }
  }
  .wast-peragraph{
    p{
      font-size: 15px;
      text-align: center;
    }
  } 
}
  h1 {
    text-align: center;
    color: #2b2b2b;
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .faq-container {
    max-width: 900px;
    margin: auto;
  }

  .faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item h3 {
    margin: 0;
    font-size: 18px;
    color: #1a73e8;
  }

  .faq-item p {
    display: none;
    margin-top: 10px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-item.active p {
    display: block;
  }

/* contact page  */

.contact-section {
  display: flex;
  justify-content: space-between;
}
.contact-banner {
  background-image: url(../images/banner/contact-banner.png);
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 350px;
  position: relative;
  z-index: 999;
  &::after {
    content: "";
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.contact-input{
  margin-left: 50px;
}
.contact-details {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  background-color: #097e51;
  h3 {
    width: 400px;
    font-size: 25px;
    color: white;
    padding: 10px;
  }
  .address {
    padding: 10px;
    display: flex;
    gap: 20px;
    i {
      font-size: 25px;
      color: white;
      margin: 5px 0;
    }
    p {
      color: white;
      font-size: 18px;
    }
  }
}
.contact-input-details {
  p {
    font-size: 18px;
    font-weight: bold;
  }
  h2{
    font-size: 40px;
  }
  h6{
    font-size: 15px;
    color: gray;
  }
}
.inputs-sections {
  width: 700px;
  margin: 20px 0;
  input {
    width: 100%;
    height: 50px;
    &:focus {
      box-shadow: none;
      outline: none;
    }
  }
  #message {
    height: 120px;
    &:focus {
      box-shadow: none;
      outline: none;
    }
  }
  .send-btn {
    width: 150px;
    height: 40px;
    border-radius: 5px;
    font-size: 15px;
    border: none;
    background-color: #097e51;
    color: white;
  }
}


/* client review  */

.client-review {
  text-align: center;
  margin: 50px;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 2px;
}
.client {
  width: 100%;
  margin-top: 50px;
}
.client-reviews {
  display: flex;
  overflow-x: hidden; 
  gap: 10px; 
  padding-bottom: 10px; 
}
.review-card {
  height: 200px;
  flex: 0 0 auto; 
  width: 380px; 
  padding: 10px;
  border: 1px solid lightgray;
  margin: 10px;
  animation: review 5s linear infinite;
}
.review-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 5px;
}
.star-icon i{
  color: rgb(227, 69, 11);
}
.client-name {
  display: flex;
  align-items: center;
  gap: 20px;
}
.client-review-paragraph p {
  width: 100%;
  font-size: 14px;
  padding: 10px;
}
.client-details h5 {
  letter-spacing: 2px;
}
@keyframes review{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}

/* client  */

.dots-menus {
  position: fixed;
  left: 20px;
  bottom: 15px;
  z-index: 999;
  .menus{
    width: 50px;
    height: 50px;
    background-color: green;
    display: flex;
    margin: 10px 0;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
    cursor: pointer;
    i{
      margin: 1.2px;
      font-size: 22px;
      color: white;
    }
  }
  img{
    width: 20px;
    height:20px;
  }
  .callImage{
    img{
      width: 40px;
      height:40px;
      margin: 5px 0;
    }
  }
}
.whatsapp{
  display: none;
}
.UpDwonArrow {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 999;
  display: none;
  img{
    width: 50px;
    height:50px;
    cursor: pointer;
  }
}

.contact{
  width: 50px;
  height: 50px;
  background-color: royalblue;
  display: flex;
  margin: 10px 0;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  cursor: pointer;
  i{
    margin: 1.2px;
    font-size: 22px;
    color: white;
  }
}




/* footer  */

.footer-section {
  width: 100%;
  height: auto;
  clip-path: 30px;
  background-color: #2d363f;
  color: white;
  margin-top: 80px;
  padding: 30px 10px 10px 30px;
  .footer h2 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: var(--openSans);
  }
  .footer-content li {
    list-style-type: none;
    line-height: 30px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
  }
  .socialIcon i {
    margin: 0 5px;
    font-size: 25px;
    cursor: pointer;
  }
  .email {
    margin: 10px 0;
  }
  .footer-content i {
    font-size: 14px;
    margin-right: 5px;
  }
  .footer-content {
    a {
      text-decoration: none;
      color: white;
    }
    p {
      font-size: 15px;
    }
  }
  
}
