@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

  :root {
      --green: #14a800;
      --dark: #000;
      --light: #fff;
      --gray: #f2f2f2;
      --font: 'Arial', sans-serif;
    }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: inter;
}

.head {
  display: flex;
  justify-content: space-between;
  margin: 20px 30px 20px 30px;
  flex-wrap: wrap;
}
.main {
  display: flex;
  /* justify-content: space-between; */
  gap: 20px;
}

.home > a {
  text-decoration: none;
  color: black;
}
.about > a {
  text-decoration: none;
  color: black;
}

.contact > a {
  text-decoration: none;
  color: black;
}


.circle {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  /* background-color: orange; */
  border: 2px solid black;
  /* position: relative; */
}
#side-img {
  padding: 5px;
}

#side-img1 {
  padding: 5px;
}
.circle-one {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  /* background-color: orange; */
  border: 2px solid black;
}
.square {
  height: 40px;
  width: 150px;
  border-radius: 20px;
  border: 2px solid rgb(15, 13, 13);
  text-align: center;
}

.left-head {
  display: flex;
  gap: 10px;
}

#connect {
  padding: 7px;
  font-size: medium;
}

h3 {
  font-size: 35px;
}

.head {
  font-size: 20px;
  color: #000000;
}

.responsive {
  display: none;
}

 
.banner {
      background: url('../images/contact.png') no-repeat center center/cover;
      height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--light);
      text-align: center;
      padding: 2rem;
    }

    .banner h1 {
      font-size: 3rem;
      margin: 0;
    }

    .banner p {
      max-width: 600px;
      font-size: 1rem;
      margin-top: 1rem;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      background: var(--light);
      margin: -100px auto 2rem;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      max-width: 1100px;
    }

    .contact-info {
      flex: 1 1 300px;
    }

    .contact-info h2 {
      margin-bottom: 1rem;
    }

    .contact-info p {
      margin: 0.5rem 0;
    }

    .contact-info .icon-text {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 1rem 0;
    }

    .contact-info .icon-text svg {
      color: var(--green);
      width: 20px;
      height: 20px;
    }

    .contact-form {
      flex: 1 1 300px;
    }

    .contact-form form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .contact-form form textarea {
      grid-column: 1 / -1;
      height: 100px;
    }

    .contact-form form button {
      grid-column: 1 / -1;
      padding: 0.8rem;
      background: var(--green);
      color: var(--light);
      border: none;
      cursor: pointer;
      font-size: 1rem;
      border-radius: 5px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .contact-form form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
  display: inline-block;
}

.contact-form form div {
  display: flex;
  flex-direction: column;
}


    footer {
      background: var(--dark);
      color: var(--light);
      padding: 2rem 1rem;
    }

    footer .footer-content {
      /* max-width: 1100px; */
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      /* border-top: 2px solid white; */
    }

    footer h4 {
      margin-bottom: 1rem;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
       
    }

    footer ul li {
      margin: 0.5rem 0;
      /* color: white; */
      
    }

     footer ul li a {
      color: white;
      text-decoration: none;
     }

    footer .bottom-text {
      text-align: center;
      font-size: 0.9rem;
      margin-top: 2rem;
      color: #aaa;
    }

    @media(max-width: 768px) {
      .contact-form form {
        grid-template-columns: 1fr;
      }
    }
  

@media screen and (max-width: 750px) {
  .main {
    display: none;
  }
  .responsive {
    display: flex;
  }
  .left-head {
    margin-top: 3vw;
  }
  h3 {
    margin-top: 3vw;
  }

  #openMenu {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    margin: 20px;
  }
  #sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* hidden initially */
    width: 250px;
    height: 100%;
    background-color: black;
    color: white;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  #sidebar a {
    display: block;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
  }
  #sidebar a:hover {
    background-color: grey;
  }

  #closeMenu {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    text-decoration: none;
  }
}

@media screen and (max-width: 490px) {
  .square {
    width: 24vw;
    margin-top: 3vw;
    height: 8vw;
  }
  h3 {
    font-size: 6vw;

    margin-top: 7vw;
  }
  #connect {
    font-size: 3vw;
    text-align: start;
  }
  .container-one {
    margin-top: -26px;
  }
}

@media screen and (max-width: 376px) {
  .head {
    display: flex;
    margin-top: -3vw;
  }
  #openMenu {
    /* background-color: white; */
    border: none;
    margin-top: 7vw;
    border-radius: 21px;
  }
  h3 {
    margin-top: 9vw;
  }

  .container-one {
    margin-top: -20px;
  }
  .square {
    width: 24vw;
    margin-left: 3vw;
    margin-top: 5vw;
    height: 8vw;
  }
}

@media screen and (max-width: 321px) {
  #openMenu {
    margin-left: 0vw;
  }
  .square {
    width: 24vw;
    height: 9vw;
    margin-left: 29px;
  }
  .making {
    left: -38px;
  }
}

@media screen and (max-width: 375px) {
  .head {
    display: flex;
    justify-content: space-around;
  }
}

.container-one {
  border-top: 2px solid grey;
  display: flex;

  justify-content: space-around;

  padding-right: 20px;
   font-weight: 600;
}

.recycle {
  display: flex;
}

.making {
  font-size: 2vw;
  background-color: black;
  color: aliceblue;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  width: 48vw;
  transform: rotate(-2deg);
}

.right-inside {
  display: flex;
}

.right {
  padding-top: 40px;
}

.middle-pic {
  background-color: #f3eeee;
  border-radius: 25px;
  height: fit-content;
  width: fit-content;
  padding-top: 5px;
  width: auto;
}

.middle-pic > img {
  width: 4.5vw;
}

.waste-plastic {
  padding-top: 30px;
  /* margin-right: 55px; */
}

.waste-plastic > p {
  font-size: 7vw;
}

.waste-plastic > div {
  font-size: 4vw;
}

.recycle > P {
  font-size: 7vw;
}
.recycle > img {
  width: 10vw;
}

.small-squareinside {
  background-color: white;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  padding-top: 20px;
  position: absolute;
  border: 1px solid black;
  text-align: center;

  padding-top: 2px;
}

.small-square {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid black;
}

#arrow {
  position: absolute;
  padding-left: 2px;
  padding-top: 6px;
}

@media screen and (max-width: 780px) {
  .small-square {
    margin-top: 9px;
  }
}

@media screen and (max-width: 675px) {
  .small-square {
    margin-top: 26px;
  }
}

@media screen and (max-width: 427px) {
  .small-square {
    margin-top: 13px;
  }
}

.container-one-lastpic > img {
  width: 20vw;
  padding-top: 20px;
  height: 70%;
}

.three {
  color: grey;
  font-size: 13px;
  padding-left: 50px;

  margin-top: -57px;
}
.three > p {
  font-size: 1.3vw;
}

.drop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid balck;
  margin-top: 50px;
}
.drop-inside {
  border: 1px solid black;
  height: 30px;
  width: 30px;
  border-radius: 22px;
  background-color: black;
  position: absolute;
  padding-left: 8px;
  padding-top: 5px;
  color: white;
}

.work {
  display: flex;
  justify-content: center;
  align-items: center;
}

.work {
  margin-top: 40px;
}

#right-inside-one-pic {
  width: 5vw;
}

#right-inside-last-pic {
  width: 5vw;
}

@media screen and (max-width: 900px) {
  .container-one-firstpic {
    display: none;
  }
  .container-one {
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
  }
  .waste-plastic > p {
    font-size: 9vw;
  }
  .recycle > p {
    font-size: 10vw;
  }
  .waste-plastic > .making {
    font-size: 5vw;
    width: 68vw;
    transform: rotate(0deg);
  }
  .three > p {
    font-size: 1.8vw;
  }
  .three {
    padding-left: 33px;
    margin-top: -93px;
    width: 53vw;
    /* text-align: center; */
  }

  .recycle > img {
    margin-left: 60px;
  }
  .container-one-lastpic {
    margin-top: -12px;
  }
  .container-one-lastpic > img {
    width: 30vw;
  }
  .right-inside {
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 701px) {
  .container-one {
    display: block;
    padding: 0px;
  }
  .waste-plastic {
    text-align: center;
    padding: 0;
  }
  .waste-plastic > p {
    font-size: 14vw;
  }
  .recycle > p {
    font-size: 16vw;
  }
  .making {
    margin-left: 90px;
  }
  .right {
    margin-top: 45px;
    margin-left: 25%;
  }
  .three {
    margin-top: 24px;
    margin-left: 16vw;
    width: 70vw;
  }
  .three > p {
    font-size: 2vw;
  }
  #right-inside-one-pic {
    width: 11vw;
  }
  #right-inside-last-pic {
    width: 11vw;
  }
  .middle-pic > img {
    width: 10vw;
  }
  .container-one-lastpic > img {
    width: 50vw;
    margin-top: 8px;
  }

  .recycle > img {
    width: 17vw;
  }

  .right-inside {
    display: flex;
    justify-content: flex-start;
  }
  .waste-plastic > .making {
    font-size: 8vw;
  }
}

@media screen and (max-width: 488px) {
  .three {
    margin-left: -31px;
    text-align: center;
    margin-top: 18px;
  }
  .three > p {
    font-size: 3.5vw;
    width: 83vw;
    margin-left: 10vw;
  }
  .right {
    margin-top: 22px;
  }
}

@media screen and (max-width: 321px) {
  #right-inside-one-pic {
    width: 15vw;
  }

  .middle-pic > img {
    width: 12vw;
  }
  #right-inside-last-pic {
    width: 13vw;
  }
  .right {
    margin-top: 36px;
  }
  .container-one-lastpic > img {
    width: 66vw;
    margin-left: -29px;
  }
  .right-inside {
    margin-left: -27px;
  }
}

@media screen and (max-width: 321px) {
  .three > p {
    font-size: 3.9vw;
  }
}

.container-two {
  background-color: #000000;
  color: white;
  border-radius: 80px;
  margin: 20px;
}


@media screen and (max-width: 780px) {
.container-two{
  border-radius: 42px;
}
}


.step-one {
  background-color: green;
  border-radius: 20px;
  width: 90px;
  /* height: ; */
  text-align: center;
  /* padding: 40px; */
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.first {
  display: flex;
  justify-content: space-around;
}

#first-in {
  padding-top: 8vw;
}

.first > div > img {
  width: 30vw;
}

#first-in > div {
  font-size: 1.5vw;
  margin-top: 8px;
}

h2 {
  font-size: 3.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.step-two {
  background-color: green;
  border-radius: 20px;
  width: 90px;
  text-align: center;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.second-in {
  padding-top: 8vw;
}
.second-in > div {
  margin-top: 8px;
  font-size: 1.5vw;
}

.second > div > img {
  width: 30vw;
}
.first {
  position: relative;
}

.line {
  position: absolute;
  bottom: -22%;
  left: 40%;
  width: 4vw;
}

.second {
  display: flex;
  justify-content: space-around;
}

.third {
  display: flex;
  justify-content: space-around;
}

.step-three {
  background-color: green;
  border-radius: 20px;
  width: 90px;
  text-align: center;
  margin-bottom: 15px;
  padding-right: 10px;
  padding-left: 10px;
}

.third-in {
  padding-top: 8vw;
}
.third-in > div {
  font-size: 1.5vw;
  margin-top: 8px;
}
.third > div > img {
  width: 30vw;
}

.second {
  position: relative;
}

.line-one {
  position: absolute;
  left: 40%;
  bottom: -22%;
}
.line-one > img {
  width: 20vw;
}
.four {
  display: flex;
  justify-content: space-around;
}

.four-in {
  padding-top: 8vw;
}
.four-in > div {
  font-size: 1.5vw;
  margin-top: 8px;
}

.four > div > img {
  width: 30vw;
}

.step-four {
  background-color: green;
  border-radius: 20px;
  width: 90px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
}

.step-five {
  background-color: green;
  border-radius: 20px;
  width: 90px;
  text-align: center;
  margin-bottom: 15px;
  padding-right: 10px;
  padding-left: 10px;
}

.five-in {
  padding-top: 8vw;
}
.five-in > div {
  font-size: 1.5vw;
  margin-top: 8px;
}
.five > div > img {
  width: 30vw;
}

.five {
  display: flex;
  justify-content: space-around;
}

.four {
  position: relative;
}
.line-three {
  position: absolute;
  top: 86%;
}

.third {
  position: relative;
}

.line-two {
  position: absolute;
  bottom: -15%;
}

.line-two > img {
  width: 20vw;
}

.waste-plastic {
  font-size: 5.625rem;
}

@media screen and (max-width: 750px) {
  .line {
    display: none;
  }
  .line-one {
    display: none;
  }
  .line-two {
    display: none;
  }
  .line-three {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .first {
    display: block;
    text-align: center;
  }

  .first > div > img {
    width: 50vw;
    padding-top: 6px;
  }

  .second {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .second > div > img {
    width: 50vw;
    padding-top: 6px;
  }
  .third {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .third > div > img {
    width: 50vw;
    padding-top: 6px;
  }

  .four {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  .four > div > img {
    width: 50vw;
    padding-top: 6px;
  }
  .five {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .five > div > img {
    width: 50vw;
    padding-top: 6px;
  }
  h2 {
    font-size: 5vw;
  }
}

@media screen and (max-width: 746px) {
  #first-in > div {
    font-size: 4vw;
  }
  .second-in > div {
    font-size: 4vw;
  }
  .third-in > div {
    font-size: 4vw;
  }
  .four-in > div {
    font-size: 4vw;
  }
  .five-in > div {
    font-size: 4vw;
  }
}
@media screen and (max-width: 400px) {
  .step-one {
    font-size: 2.8vw;
  }
  .step-two {
    font-size: 2.8vw;
  }
  .step-three {
    font-size: 2.8vw;
  }
  .step-four {
    font-size: 2.8vw;
  }
  .step-five {
    font-size: 2.8vw;
  }
  .second-in {
    padding-top: 1vw;
  }
  .third-in {
    padding-top: 1vw;
  }
  .four-in {
    padding-top: 1vw;
  }
  .five-in {
    padding-top: 1vw;
  }
}

.container-one-firstpic {
  width: 26vw;
}

h1 {
  color: #3c9d0c;
  display: flex;
  justify-content: center;
  font-size: 3vw;
}

.gold {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}
.gold > p {
  padding-left: 13%;
  padding-top: 5%;
  /* font-size: clamp(0.5rem, 1.5vw, 1rem); */
   font-size: 1vw;
  text-align: center;
  color: white;
  /* position: absolute; */
}

.gold-circle-invisible {
  position: relative;
  background-color: white;
  width: 36%;
  height: 101%;
  border-radius: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gold-circle-invisible > .gold-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gold-circle-invisible > div {
  background-color: rgb(237, 234, 234);
  height: 6vw;
  width: 6vw;
  border-radius: 3vw;
  /* padding: 10%; */
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-sizing: content-box; */
  /* padding: 10% 20% 10% 20%; */

  /* z-index: 40; */
}

.gold-circle-invisible > div > img {
  width: 3vw;
}

.palladium {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;
  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}

.palladium > p {
  padding-right: 6%;
  padding-top: 5%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
  text-align: center;
  color: white;
  font-size: 1vw;
  /* font-size: 30%; */
}

.palladium-circle-invisible {
  position: relative;

  background-color: white;
  /* width: 9.5vw; */

  /* border-radius: 10vw; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36%;
  height: 101%;
  border-radius: 55%;
}

.palladium-circle-invisible > .palladium-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
}
.palladium-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.palladium-circle-invisible > div > img {
  width: 3vw;
}

.first-box {
  display: flex;
  padding: 10px 20px 10px 20px;
  justify-content: space-around;
  /* border: 4px solid red; */
}

.silver {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}

.silver-circle-invisible {
  position: relative;
  background-color: white;
  width: 37%;
  height: 101%;
  border-radius: 55%;
  /* height: ; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.silver > p {
  padding-left: 16%;
  padding-top: 6%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
   font-size: 1vw;
  text-align: center;
  color: white;
}

.silver-circle-invisible > .silver-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
}

.silver-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.silver-circle-invisible > div > img {
  width: 3vw;
}

.nickel {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}

.nickel > p {
  padding-right: 19%;
  padding-top: 8%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
   font-size: 1vw;
  text-align: center;
  color: white;
}

.nickel-circle-invisible {
  position: relative;
  background-color: white;
  width: 9.5vw;
  /* height: 9.5vw; */
  border-radius: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nickel-circle-invisible > .nickel-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
}

.nickel-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nickel-circle-invisible > div > img {
  width: 3vw;
}

.second-box {
  display: flex;
  justify-content: space-evenly;
  padding: 10px 20px 10px 20px;
  gap: 30%;
}

.copper {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}

.copper-circle-invisible {
  background-color: white;
  width: 9.5vw;
  /* height: 9.5vw; */
  border-radius: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.copper > p {
  padding-left: 14%;
  padding-top: 6%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
   font-size: 1vw;
  text-align: center;
  color: white;
}

.copper-circle-invisible > .copper-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
}

.copper-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copper-circle-invisible > div > img {
  width: 3vw;
}
.lithium {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}
.lithium > p {
  padding-right: 13%;
  padding-top: 6%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
   font-size: 1vw;
  text-align: center;
  color: white;
}
.lithium-circle-invisible {
  background-color: white;
  width: 9.5vw;
  /* height: 9.5vw; */
  border-radius: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.lithium-circle-invisible > .lithium-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
}

.lithium-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lithium-circle-invisible > div > img {
  width: 3vw;
}

.third-box {
  display: flex;
  justify-content: space-evenly;
  padding: 10px 20px 10px 20px;
  gap: 30%;
}

.aluminium {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}

.aluminium > p {
  padding-left: 9%;
  padding-top: 4%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
  font-size: 1vw;
  text-align: center;
  color: white;
}
.aluminium-circle-invisible {
  background-color: white;
  width: 9.5vw;
  /* height: 9.5vw; */
  border-radius: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.aluminium-circle-invisible > .aluminium-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
}

.aluminium-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aluminium-circle-invisible > div > img {
  width: 3vw;
}

.lead {
  background-color: green;
  width: 25vw;
  height: 9vw;
  border-radius: 30vw 30vw 30vw 30vw;
  display: flex;

  justify-content: space-between;
  box-shadow: 4px 3px 5px 3px #3c9d0c52;
}
.lead > p {
  padding-right: 14%;
  padding-top: 6%;
  /* font-size: clamp(0.2rem, 0.8vw, 0.8rem); */
   font-size: 1vw;
  text-align: center;
  color: white;
}

.lead-circle-invisible {
  background-color: white;
  width: 9.5vw;
  /* height: 9.5vw; */
  border-radius: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.lead-circle-invisible > .lead-circle {
  background-color: green;
  width: 8vw;
  height: 8vw;
  border-radius: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-circle-invisible > div {
  position: absolute;
  background-color: white;
  width: 6vw;
  height: 6vw;
  border-radius: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lead-circle-invisible > div img {
  width: 3vw;
}

.four-box {
  display: flex;
  padding: 10px 20px 10px 20px;
  justify-content: space-around;
}

.container-three {
  position: relative;
  margin: 20px;
  /* padding: 60px 60px; */
}

.boy {
  position: absolute;
  left: 33vw;
  bottom: 7vw;
  width: 30vw;
  height: 30vw;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15vw;
}

.boy > img {
  width: 27vw;
}

.container-four {
  margin: 20px;
  background-color: #3b3935;
  border-radius: 4vw;
}
.container-four-inside {
  background-color: #000000;
  border-radius: 4vw;
  padding: 2%;
}
.eco-friendly {
  display: flex;
  padding: 20px;
  gap: 190px;
}

.both-text {
  text-align: center;
  padding-top: 2vw;
  color: white;
}
.both-text > p > b {
  font-size: 2vw;
}

.percentage-section {
  display: flex;
  justify-content: space-around;
  margin: 2vw;
  color: white;
}

.percentage-section > div > p {
  text-align: center;
  font-size: 5vw;
}

/* .testimonials > p > b {
    color: white;
     font-size: 3vw;
      text-align: center;
 } */

/* .left-arrow {
  height: 3vw;
  width: 3vw;
  border-radius: 1.5vw;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .left-arrow > img { */
  /* width: 1.2vw; */
/* } */

/* .right-arrow {
  height: 3vw;
  width: 3vw;
  border-radius: 1.5vw;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
} */
/* .right-arrow > img {
  width: 1.2vw;
} */

/* .both-arrow {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
} */

/* .testimonials {
  display: flex;
  justify-content: space-around;
  gap: 50%;
  margin-top: 2%;
}

.testimonials > p {
  font-size: 2rem;
} */

.first-box-section {
  background-color: #e3dfdc;
  padding: 1%;
  border-radius: 3vw;
}

.firstinside1-box-section {
  background-color: #cfcbc7;
  padding: 20px;
  border-radius: 1vw;
}

.firstinside2-box-section {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}

.last-section {
  display: flex;
  justify-content: space-around;
  margin-top: 3%;
  padding-bottom: 5%;
}

.second-box-section {
  background-color: #e3dfdc;
  /* border: 2px solid black; */
  padding: 1%;
  border-radius: 3vw;
}

.secondinside1-box-section {
  background-color: #cfcbc7;
  padding: 20px;
  border-radius: 1vw;
}

.secondinside2-box-section {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}

@media screen and (max-width: 750px) {
  .gold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .gold > p {
    padding-top: 3%;
    /* font-size: 8px !important; */
    font-size: 1.5vw;
  }
  .gold-circle-invisible {
    background-color: white;
    width: 24%;
    height: 64%;
    border-radius: 55%;
  }
}

@media screen and (max-width: 600px) {
  .gold {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .gold > p {
    /* font-size: 15px !important; */
       font-size: 3vw;
        padding-top: 1px;
  }

  .gold-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: 20px;
  }
  .first-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  }
}

@media screen and (max-width: 750px) {
  .palladium {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .palladium > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
     font-size: 1.5vw;
  }
  .palladium-circle-invisible {
    background-color: white;
    width: 24%;
    height: 64%;
    border-radius: 55%;
  }
}

@media screen and (max-width: 600px) {
  .palladium {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .palladium > p {
    /* font-size: 9px !important; */
      font-size: 3vw;
  }

  .palladium-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right:-44px;
  }
  .second-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  }
}

@media screen and (max-width: 750px) {
  .silver {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .silver > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
      font-size: 1.5vw;
  }
  .silver-circle-invisible {
    background-color: white;
    width: 24%;
    height: 64%;
    border-radius: 55%;
  }
  .second-box {
    gap: 10px;
  }
}

@media screen and (max-width: 600px) {
  .silver {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .silver > p {
    /* font-size: 9px !important; */
     font-size: 3vw;
  }

  .silver-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: 20px;
  }
}

@media screen and (max-width: 750px) {
  .nickel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .nickel > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
      font-size: 1.5vw;
  }
  .nickel-circle-invisible {
    background-color: white;
    width: 26%;
    height: 64%;
    border-radius: 55%;
  }
  .second-box {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 600px) {
  .nickel {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .nickel > p {
    /* font-size: 9px !important; */
      font-size: 3vw;
  }

  .nickel-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: -10px;
  }
  /* .third-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  } */
}

@media screen and (max-width: 750px) {
  .copper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .copper > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
      font-size: 1.5vw;
  }
  .copper-circle-invisible {
    background-color: white;
    width: 25%;
    height: 64%;
    border-radius: 55%;
  }
  /* .third-box {
    display: flex;
    justify-content: space-between;


  } */
}

@media screen and (max-width: 600px) {
  .copper {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .copper > p {
    /* font-size: 9px !important; */
     font-size: 3vw;
  }

  .copper-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: 20px;
  }
  /* .third-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  } */
}

@media screen and (max-width: 750px) {
  .lithium {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .lithium > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
      font-size: 1.5vw;
  }
  .lithium-circle-invisible {
    background-color: white;
    /* width: 26%; */
     width: 25%;
    height: 64%;
    border-radius: 55%;
  }
  /* .third-box {
    display: flex;
    gap: 10px;
   
  } */
}

@media screen and (max-width: 600px) {
  .lithium {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .lithium > p {
    /* font-size: 9px !important; */
     font-size: 3vw;
  }

  .lithium-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: -29px;
  }
  /* .third-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  } */
}

@media screen and (max-width: 750px) {
  .aluminium {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .aluminium > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
      font-size: 1.5vw;
  }
  .aluminium-circle-invisible {
    background-color: white;
    /* width: 26%; */
     width: 25%;
    height: 64%;
    border-radius: 55%;
  }
  .third-box {
    margin-top: 240px;
    display: flex;
    gap: 10px;
  }

  .boy {
    bottom: 44%;
    width: fit-content;
    height: 10vw;
    left: 30%;
  }
  .boy > img {
    width: 36vw;
  }
}

@media screen and (max-width: 600px) {
  .aluminium {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .aluminium > p {
    /* font-size: 9px !important; */
     font-size: 3vw;
  }

  .aluminium-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: 20px;
  }
  .third-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  }
  .third-box {
    margin-top: 41vw;
  }
  .boy {
    top: 49%;
    left: 27%;
  }
  .boy > img {
    width: 44vw;
  }
}

@media screen and (max-width: 750px) {
  .lead {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 15vw;
    border-radius: 10vw;
    gap: 10%;
  }
  .lead > p {
    padding-top: 0.8vw;
    /* font-size: 8px !important; */
      font-size: 1.5vw;
  }
  .lead-circle-invisible {
    background-color: white;
    /* width: 26%; */
     width: 25%;
    height: 64%;
    border-radius: 55%;
  }
  .third-box {
    display: flex;
    gap: 10px;
  }
}

@media screen and (max-width: 600px) {
  .lead {
    width: 70vw;
    height: 27vw;
    display: flex;
    justify-content: space-around;
  }
  .lead > p {
    /* font-size: 9px !important; */
     font-size: 3vw;
  }

  .lead-circle-invisible {
    background-color: white;
    width: 19%;
    height: 48%;
    border-radius: 70%;
    margin-right: -32px;
  }
  .four-box {
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    align-items: center;
    padding-bottom: 1.5rem;
  }
}

@media screen and (max-width: 400px) {
  .gold {
    display: flex;
    justify-content: space-evenly;
    height: 27vw;
    width: 71vw;
  }

  .gold > p {
    font-size: 2.8vw;
  }
  .palladium {
    display: flex;
    justify-content: space-around;
    gap: 0px;
    height: 27vw;
    width: 71vw;
  }

  .palladium > p {
    font-size: 2.8vw;
  }  
  
  .nickel {
    display: flex;
    justify-content: space-around;
    gap: 0px;
    height: 27vw;
    width: 71vw;
  }
  .copper {
    display: flex;
    justify-content: space-around;
    gap: 14px;
    height: 27vw;
    width: 71vw;
  }

  .lithium {
    display: flex;
     justify-content: space-around;
    gap: 15px;
    height: 27vw;
    width: 71vw;
  }

  .lead {
    display: flex;
     justify-content: space-around;
    gap: 15px;
    height: 27vw;
    width: 71vw;
  }
  h1 {
    font-size: 9vw !important; 
  }
}

@media screen and (max-width: 760px) {
  .eco-friendly {
    display: flex;
    flex-direction: column;
    gap: 5px !important;
  }
  .eco-friendly > div {
    text-align: center;
  }
  .percentage-section {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .percentage-section > div > img {
    display: none;
  }
  .percentage-section > div > p {
    padding-top: 30px;
  }
  .last-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 7vw;
  }
}


.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  overflow-x: auto;
  gap: 20px;
}

.card {
  background: #e5e0dc;
  color: #000;
  border-radius: 40px;
  padding: 20px;
  min-width: 6vw;
  max-width: 49vw;
  flex-shrink: 0;
}

.card > p {
  font-size: 1.7vw;
}

h4 {
  font-size: 2vw;
}
.quote {
  font-size: 2rem;
  color: #333;
}

.card p {
  margin: 10px 0 20px;
  /* font-size: 1rem; */
  line-height: 1.4;
}

.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.prev {
  left: 2px;
}
.next {
  right: 2px;
}

@media (max-width: 768px) {
  .slider {
    gap: 10px;
  }
  .card {
    min-width: 90%;
  }
  .prev,
  .next {
    display: none;
  }
}

.faq-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* padding: 50px 20px; */
  flex-wrap: wrap;
  gap: 40px;
}

.faq-left {
  flex: 1;
  min-width: 300px;
}

.faq-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.faq-left img {
  max-width: 100%;
  height: auto;
  margin-bottom: -4px;
}

.faq-right {
  flex: 1.2;
  min-width: 300px;
}

.accordion {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 53px;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.accordion-header::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(-180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.accordion-content p {
  padding: 15px 0;
  font-size: 0.95rem;
  color: #333;
}

@media screen and (max-width: 752px) {
  .accordion {
    margin-top: 0px;
  }
}

@media screen and (max-width: 500px) {
  .accordion-header {
    font-size: 4vw;
  }
}

@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 670px) {
  .card {
    width: 10vw;
  }
  .slider-container {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .card p {
    font-size: 2.2vw;
  }
}


.container-one-a {
    background:url(/assests/images/pic.png);
     background-size: cover;
     height: 20vw;
      /* margin-top: 10px;  */
     
}
.text-a {
    color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
      text-align: center;
       padding-top: 6%;
        font-size: 1.2vw;
}

 .text-a > #about-a {
    font-size: 3vw;
}

@media  screen and (max-width:750px) {
    .text-a {
        font-size: 2vw;
    }
    .text-a > #about-a {
    font-size: 4vw;
    }
}



.container-two-a{
    display: flex;
     justify-content: center;
     align-items: center; 
      padding-top: 50px;
       gap: 20px;
      
    
}

.image-a {
    display: flex;
    justify-content: center;
    align-items: center;
     gap: 20px;
    /* width: 2vw; */
    /* width: ; */
}

 .image-a > img {
    width: 200px;
 }

   #image-one-a{
   padding-top: 130px;
   
 }

 #first-a {
    font-size: 2.7vw;
 }

 .all-text-a {
    display: flex;
    flex-direction: column;
     gap: 30px;
 }

  .all-text-a > p {
    font-size: 0.7rem;
  }
   .discover-a {
    font-size: 1vw;
     background-color: green;
       height: 30px;
    width: 120px;
    text-align: center;
    padding-top: 4px;
   }


   .container-three-a{
    display: flex ;
     gap: 40px;
     justify-content: center;
     align-items: center;
     padding-top: 50px;
   }

   .container-three-a > div{
    font-size: 10px;
   }

    .container-three-a > .history-a {
    font-size: 30px;
   }


   @media screen and (max-width:790px) {
    .container-two-a {
        display: flex;
        flex-direction: column;
         padding-top: 0;
    }
    .discover-a {
        background-color: green;
         /* padding-top: 5px; */
    height: 20px;
    width: 120px;
     font-size: 1.4vw;
   
    text-align: center;
    
    }
   }


    @media screen and (max-width:500px) {
    .image-a > img {
        width: 40vw ;
    } 
     
  
    .discover-a {
        background-color: green;
        
    height: 30px;
    width: 200px;
   
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 3.5vw;
       margin-left:70px;
      
    }

    .container-two-a {
        text-align: center;
    }

    
       
  
      }


     @media screen and (max-width:540px)  {
        .container-three-a {
            display: flex;
            flex-direction: column;
             gap: 20px;
        }
        .container-three-a > div >img {
            display: none;
             /* gap: 0; */
        }
     }

      @media screen and (max-width:700px) {
        .container-three-a {
            margin-bottom: 20px;
        }
      }

   
.lorem {
  background-color: green;
  display: flex;
   
    height: 30px;
    justify-content: center;
    align-items: center;
       transform: rotate(-4deg);
  
   

}

.lorem > div {
    /* font-size: ; */
    color: white;
   
}

  .lorem {
    display: flex;
  
    overflow: hidden;
    white-space: nowrap;
  }

  .lorem::after {
    content: "";
    display: block;
    flex-shrink: 0;
  }

  .lorem > div {
    flex-shrink: 0;
    /* min-width: 300px; */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    /* border: 1px solid #ccc; */
    background:green;
    animation: slide 12s linear infinite;
  }

  @keyframes slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-1800px); } /* 6 slides × 300px */
  }

  /* Optional: clone the slides for seamless infinite effect */
  .lorem > div:nth-child(n+1):nth-child(-n+6) {
    animation: slide 12s linear infinite;
  }

h2 {
    color: white;
    text-align: center;
    font-size: 40px;
    
  }

  .container-four-a{
    background-color: black;
    padding: 35px;
     margin-top: 80px;
     border-radius: 2px solid white;
     border-bottom: 2px solid white;
     
  }

  .content-box-a > p {
   color: #1E1E1E;
   text-align: center;
    font-size: 0.9vw;
  }

  .image-box-a  > img {
    width: 23vw;
  }

  .container-a {
    display: flex;
    justify-content: center;
     gap: 30px;
    align-items: center;
    background-color: white;
    height: 30vw;
     margin: auto;
     width: 69vw;
 }

  @media screen and (max-width:1024px) {
    .container-a {
        display: flex;
        gap: 30px;
    }
    h2 {
        font-size: 20px;
    }
  }

   @media screen and (max-width:816px) {
    .content-box-a {
        padding-bottom: 20px;
    }
   }
  
 
 @media screen  and (max-width:814px){
   .content-box-a > p  {
     font-size: 10px;
   }
   .content-box-a > h2 {
      font-size: 5vw;
      
   }
   .container-a {
flex-direction: column;
 width: 100%;
  height: 100%;
   }

    .image-box-a  > img {
    width: 23vw;
  }

 }
     

   .what-about-a {
    /* margin: auto; */
    text-align: center;
    margin-top: 90px;
   }

 .what-about-a > p {
 color: white;
  font-size: 30px;
 }

 .what-about-a > p > img {
    width: 75px;
     margin-left: 30px;
 }

 /* .first-a {
    color: white;
     background-color: #D9D9D93B;
      padding: 20px;
      border-radius: 20px;
 } */
/* 
 .second-a > div {
    color: #FFFFFF;
   
 }  */


 /* .second-a  {
     display: flex; 
      margin-top: 15px;
      font-size: 15px;
 
 } */

  /* .five-star-a {
    width: 8.5vw;
 } */


 /* .last-section-a  > .second-a {

    text-align: center;
 } */


 /* .third-a {
       color: white;
         background-color: #D9D9D93B;
          padding: 20px;
           border-radius: 20px;
 } */

/* 
.four-a{
   display: flex;
         margin-top: 15px;
      font-size: 15px;

 } */

 /* .four-a > div {
color: #FFFFFF;
 } */

 /* .last-section-a { 
    display: flex;
   
    margin-top: 70px;
     gap: 20px;
      
 } */

 /* .five-a{
  
     color: white;
         background-color: #D9D9D93B;
          padding: 20px;
           border-radius: 20px;
 } */

 /* .six-a{
 display: flex;
 margin-top: 15px ;
 }

  @media screen and (max-width:790px) {
    .last-section-a{
        flex-direction: column;
    }
  } */  
    .slider-container {
      max-width: 1440px;
      margin: 50px auto;
      overflow: hidden;
      padding: 20px;
    }

    .slider-track {
      display: flex;
      gap: 20px;
      animation: scroll 20s linear infinite;
      width: max-content;
    }

    .card-s {
      background: #2c2c2c;
      border-radius: 10px;
      padding: 20px;
      min-width: 350px;
      max-width: 34vw;
      flex-shrink: 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .card-s {
      font-size: 0.95rem;
      color: #ddd;
    }

    .profile {
      display: flex;
      align-items: center;
      margin-top: 15px;
    }

    .profile img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
    }

    .profile-info {
      display: flex;
      flex-direction: column;
    }

    .profile-info span {
      font-weight: bold;
      color: white;
    }

    .stars {
      margin-top: 5px;
    }

    .stars span {
      color: gold;
      font-size: 1rem;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px) {
      .slider-container {
        padding: 10px;
      }

      .card-s {
        min-width: 51vw;
        font-size: 0.9rem;
        padding: 15px;
      }

      .card-s p {
        font-size: 0.9rem;
      }
    }

     @media (max-width: 321px) {
      .card-s {
        min-width: 63vw;
      }
     }

.read-more-btn {
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  margin-top: 8px;
  font-weight: bold;
}
.read-more-btn:hover {
  text-decoration: underline;
}

.home-testimonial-section {
  max-width: 1440px;
  margin: auto;
  padding: 50px 20px;
}

/* Heading + Buttons Row */
.home-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.home-title {
  font-size: 32px;
  font-weight: 700;
}

.home-btn-wrap {
  display: flex;
  gap: 10px;
}

.home-slider-btn {
  background: #000;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider */
.home-slider-container {
  overflow: hidden;
  width: 100%;
}

.home-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.home-card {
  background: #e4dfdc;
  color: #000;
  border-radius: 20px;
  min-width: 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .home-card {
    min-width: 48%;
    max-width: 48%;
  }
}

.home-card-content {
  background-color: #c8c3c0;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
}

.home-quote-icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.home-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-user h4 {
  margin: 0;
  font-weight: 600;
}

.home-user p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.home-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive button positioning under heading */
@media (max-width: 600px) {
  .home-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .home-btn-wrap {
    justify-content: flex-start;
  }
}


 /* li  {
  color: white;
} */