:root {
    --color-primary: rgb(42, 140, 130);
    --color-primary-variant: rgb(172, 168, 168);
    --color-black: #0a0a0c;
    --color-dark: #62656a;
    --color-white: #fff;
    --color-light: rgba(127, 141, 131, 0.8);
  
    --width: 84%;
    --mobile-width: 92%;
  }
  
  * {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: var(--color-dark);
    background: bisque;
  }
  
 

  
  img {
    width: fit-content;
    height: fit-content;

  }

  .image img{
    width: auto;
    height: auto;
    align-items: center;
  }
  
  a {
    color: var(--color-black);
    transition: all 300ms ease;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5 {
    color: var(--color-black);
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
  }
  
  h1 {
    font-size: 6rem;
    letter-spacing: -0.4rem;
    line-height: 0.8;
  }
  
  h2 {
    font-size: 3.2rem;
    letter-spacing: -0.2rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  h4,
  h5 {
    font-size: 1.4rem;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    color: var(--color-dark);
  }
  
  h5 {
    font-size: 0.9rem;
  }
  
  p {
    line-height: 1.6;
  }
  
  .btn {
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 500;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 300ms ease;
  }
  
  .btn:hover {
    background: var(--color-primary-variant);;
    color: var(--color-black);
    border: 1px solid var(--color-black);
  }
  
  .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
  }

  
  /* ==================== NAVBAR ===================== */
  nav {
    width: 100vw;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background:rgb(42, 140, 130);
  }
  
  /* styles for navbar when window is scrolled using JavaScript */
  .window-scroll {
    background: var(--color-primary);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  nav button {
    display: none;
  }

  nav img {
    max-height: 80px;
  }
  
  nav .container .logo{
    max-width: 200px;
  }

  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%
  }
  
  nav .container ul {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
  
  nav .container ul li{
    position: relative;
  }

  nav .container ul a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    position: relative;
  }
  
  nav .container ul a.active {
    border-bottom: 6px solid var(--color-primary-variant);
  }
  
  nav .container ul a:hover {
    color: var(--color-primary-variant);
  }
  
  nav .container .icons {
    display: flex;
    gap: 2rem;
    font-size: 1.2rem;
  }
  
  /* ====================== HEADER ======================= */
  header {
    height: auto;
    width: 100vw;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 3rem 20px;
  }

  header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: 100%;
  }

header .header-image,
header .details {
    max-width: 100%; 
}

header .header-image img,
header .details img {
    width: 40vw; /* Make the images take 100% width */
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Set a max-width if needed */
    padding: 2rem;
}


  header .container .info {
    max-width: 30rem; 
    text-align: center;
 } 
 
  header .container .info .delivery {
    background: var(--color-primary-variant);
    width: max-content;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    color: var(--color-black);
    margin-bottom: 1.5rem;
  }
  
  header .container .info .delivery i {
    display: inline-block;
    transform: rotateY(180deg);
    margin-left: 1rem;
  }
  
  header .container .info p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1rem 0 2rem;
  }
  
  header .container .info .cta {
    display: flex;
    flex-direction: col;
    align-items: center;
  }
  
  header .container .info .cta img {
    width: 5rem;
    transition: all 300ms ease;
  }
  
  header .container .info .cta a:last-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    font-weight: 500;
  }
  
  header .container .info .cta a:last-child:hover {
    color: var(--color-dark);
  }
  
  header .container .info .cta a:last-child:hover img {
    filter: saturate(0);
  }
  /*=========slideshow======*/

  * {box-sizing:border-box}
  header .slideshow-container .mySlides img{
    width: 40vw; /* Make the images take 100% width */
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Set a max-width if needed */
    padding: 2rem;
  }
  /* Slideshow container */
  .slideshow-container img {
    max-width: 100px;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }



  /* ============================= PRODUCTS ============================= */
  #products .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  #products h2{
    margin-bottom: 2rem;
    text-align: center;
  }
  
  #products h4{
    color: black;
    text-align: center;
  }

  #products article {
    border: 1px solid #62656a;
    padding: 1.5rem;
    margin-bottom: 2rem;
    margin-right: 2rem;
    margin-left: 2rem;
    transition: background-color 0.3s ease;
    text-align: center;
  }
 
  #products article:hover {
    background: linear-gradient(bisque,rgba(172, 168, 168, 0.451));
    color: black;
  }

  #products article .detail{
    text-align: center;
  }

  #products article h4 {
    margin-bottom: 1rem;
  }
  
  #products article p{
    margin-bottom: 1rem;
  }
  
  /* ====================== WHY CHOOSE US ==================== */
  #why-choose-us .container .head {
    display: flex;
    justify-content: space-between;
    margin-left: 40px;
  }
  
  #why-choose-us .container .head .left h4 {
    font-style: italic;
    padding-left: 20px;
  }


  #why-choose-us .container .head .right h4 {
    margin-top: 1rem;
    color: var(--color-black);
    font-weight: 700;
  }
  
  

  /* =================== TESTIMONIALS ================= */
  .swiper {
    width: var(--width);
    height: 100%;
    margin-top: 5rem;
  }
  
  .swiper-wrapper {
    width: var(--width);
    margin-bottom: 3rem;
  }
  
  .swiper-slide {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  
  .swiper-slide .details h4 {
    color: var(--color-primary);
    font-size: 1rem;
  }
  
  .swiper-slide .details h2 {
    margin: 1rem 0;
  }
  
  .swiper-slide .details p {
    margin-bottom: 1rem;
  }
  
  .swiper-slide .details h5 {
    color: var(--color-black);
    font-size: 1.3rem;
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    margin: 1.6rem 0 0.4rem;
  }
  
  .swiper-pagination-bullet {
    background: var(--color-primary);
  }
  .review {
    padding-top: 30px;
    padding-left: 30px;
  }

  /* ========================== Services =========================== */
#faqs {
  text-align: center;
  padding-bottom: 5rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

#faqs .container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

#faqs h2 {
  margin-bottom: 1.5rem; /* Adjust the spacing between headings */
}

#faqs p {
  margin-bottom: 2.5rem; /* Adjust the spacing between paragraphs */
}

#faqs .btn {
  display: inline-block;
  margin-top: 1.6rem;

}

#faqs .container img{
  height: 300px;
  width: 250px
}
  /* =============================== CTA ============================== */
  #cta{
    padding-left: 20rem;
    padding-right: 20rem;
    padding-bottom: 10rem;
  }
  #cta .container {
    background: rgba(42, 140, 130, 0.786);
    display:flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    height: 20rem;
}

#cta .container .info {
    width: 100%;
    text-align: center; 
}

#cta .container .info h3 {
    margin-bottom: 1rem;
    color: var(--color-white);
}

#cta .container .info p {
    color: var(--color-white);
}

#cta .container .btn {
    margin-top: 2rem; 
}
  
  /* ======================= FOOTER ======================== */
  footer {
    background: var(--color-primary);
    padding-left: 30px;
    font-size: 0.9rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
  }

  footer img {
    max-height: 70px;
  }
  
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 80%;
    max-width: 1200px;
    justify-content: center;
  }
  
  footer .container h4 {
    color: var(--color-white);
    margin-bottom: 1.6rem;
  }
  
  footer .container .f1 .logo {
    width: 6rem;
  }
  
  footer .container .f1 p {
    margin: 1rem 0 2rem;
  }
  
  footer .container .f1 .subscribe {
    border: 1px solid var(--color-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
  }
  
  footer .container .f1 .subscribe input {
    background: transparent;
    color: var(--color-white);
    margin-left: 1rem;
  }
  
  footer .container .f1 .subscribe input::placeholder {
    color: var(--color-light);
  }
  
  footer .container .f1 .subscribe button {
    background: var(--color-white);
    color: var(--color-black);
    transition: all 300ms ease;
    width: 3rem;
    height: 100%;
    font-size: 1.3rem;
  }
  
  footer .container .f1 .subscribe button:hover {
    background: var(--color-light);
    color: var(--color-primary);
    cursor: pointer;
  }
  
  footer .container ul li {
    margin-bottom: 1rem;
  }
  
  footer .container ul li a {
    color: white;
  }
  
  footer .container ul li a:hover {
    color: var(--color-white);
    text-decoration: underline;
  }
  
  footer .container .f4 p {
    margin-bottom: 1.6rem;
  }
  
  footer .container .socials {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem;
  }
  
  footer .copyright {
    text-align: left;
    margin-top: 2rem;
    padding: 1.2rem 0;
    color: var(--color-white);
    border-top: 1px solid white;
  }
  
 
 
 
 
 
 
 
 
 
 
 
 
  /* ==================== MEDIA QUERIES (TABLETS) ===================== */
  @media screen and (max-width: 1024px) {
    h1 {
      font-size: 4.4rem;
      letter-spacing: 1px;
    }
  
    h2 {
      font-size: 2.7rem;
      letter-spacing: -1px;
    }
  
    h3 {
      font-size: 2.2rem;
    }
  
    h4 {
      font-size: 1.2rem;
    }
  
    h5 {
      font-size: 0.9rem;
    }
  
    p {
      line-height: 1.6rem;
      font-size: 0.9rem;
    }
  
    .container {
      width: var(--mobile-width);
    }
  
    section {
      overflow-x: hidden;
    }
  
    /* =================== NAVBAR ===================== */
    nav .container {
      width: 100%;
    }
  
    nav .container .logo {
      margin-left: 1rem;
      max-width: 200px;
    }
  
    nav .container ul {
      position: fixed;
      top: 0;
      left: 0;
      flex-direction: column;
      width: 16rem;
      height: 100vh;
      background: var(--color-primary);
      box-shadow: 1rem 0 2rem rgba(0, 0, 0, 0.2);
      z-index: 3;
      display: none;
    }
  
    nav .container ul li {
      height: 4.6rem;
      display: flex;
      align-items: center;
    }
  
    nav .container ul li a {
      width: 100%;
      padding: 0 0 1rem 2rem;
    }
  
    nav .container ul li a:hover {
      padding-left: 3rem;
    }
  
    nav button {
      display: inline-block;
      cursor: pointer;
      background: transparent;
      color: var(--color-black);
      margin-right: 1rem;
      font-size: 1.6rem;
    }
  
    nav button#close-btn {
      display: none;
    }
  
    /* ================== HEADER ================== */
    header {
      height: 100%;
    }
  
    header .container {
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 0;
    }
  
    header .container .details {
      display: none;
    }

    header .container .info .cta img {
      width: 5rem;
      max-height: 5rem;
      transition: all 300ms ease;
    }
  
    /* ================== PRODUCTS ================== */
    #products .container {
     width: var(--mobile-width);
    }


  
    /* ================== FAQs ================== */
    #faqs {
      text-align: center;
      padding-bottom: 5rem;
      padding-left: 3rem;
      padding-right: 3rem;
    }
    #faqs h2 {
      margin-bottom: 3rem;
    }
  
    #faqs .content {
      grid-template-columns: 1fr;
    }
  
    #faqs .content article {
      padding: 1.5rem;
    }

    /* ================== CTA ================== */
   #cta{
    padding: 3rem;
   }
    #cta .container {
      padding: 2rem 1rem;
    }
  
    #cta .info {
      width: 56%;
      align-self: flex-start;
    }
  
    #cta .container .image {
      position: absolute;
      right: 11rem;
    }
  
    #cta .container .btn {
      z-index: 1;
    }
  
    footer .container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
 
 
 
 
 
 
 
 
  /* ====================== MEDIA QUERIES (MOBILE PHONES ======================== */
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 3.4rem;
    }
  
    h2 {
      font-size: 2.4rem;
    }
  
    h3 {
      font-size: 1.6rem;
    }
  
    h4 {
      font-size: 0.96rem;
    }
  
    h5 {
      font-size: 0.7rem;
    }
  
    p {
      font-size: 0.84rem;
    }

  
    /* ==================== NAVBAR ===================== */
    nav .container .icons {
      gap: 1rem;
    }
    
    nav .container .logo img{
      margin-left: 1rem;
      max-width: 100px;
      max-height: 100px;
      padding-top: 15px;
      padding-bottom: 15px;
    }
  
    /* ==================== HEADER ===================== */
    header .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    header .delivery {
      display: none;
    }
  
    header .container .info p {
      font-size: 1rem;
    }
  
    header .container .cta {
      flex-direction: column;
      /* margin-top: 1.4rem; */
      gap: 1rem;
    }
  
    header .container .info .cta img {
      width: 5rem;
      max-height: 5rem;
      transition: all 300ms ease;
    }

    header .container .header-image {
      grid-row: 1;
      width: 60vw;
      margin: 0 auto;
    }
  

  
    /* ==================== PRODUCTS ===================== */
    #products {
      margin-top: 4rem;
    }
  
    #products .container article {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 1.4rem;
    }
  
    #products .container article p {
      margin: 1rem 0;
    }
  
    #products .container article .image {
      width: 100%;
      padding-left: 5rem;
    }
  
    /* ==================== WHY CHOOSE US ===================== */
    #why-choose-us .container .head .right {
      display: none;
    }
  
    #why-choose-us .container article {
      grid-template-columns: 1fr;
      gap: 1rem;
      text-align: center;
    }
  
    /* ==================== TRUSTED CLIENTS ===================== */
    #trusted-clients {
      display: none;
    }
  
    /* ==================== TESTIMONIALS ===================== */
    .swiper-slide {
      flex-direction: column;
      gap: 2rem;
    }
    #faqs {
      text-align: center;
      padding-bottom: 5rem;
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .review {
      padding-top: 30px;
      padding-left: 30px;
      padding-bottom: 90px;
    }
    /* ==================== CTA ===================== */
    #cta .container {
      flex-direction: column;
      height: fit-content;
    }
    #cta .container .info {
      width: 100%;
    }
  
    #cta .container .info h3 {
      font-size: 2.3rem;
    }
  
    #cta .container .info p {
      font-size: 1rem;
    }
  



  
    /* ==================== FOOTER ===================== */
    footer .container {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }
  
    footer .container .logo img{
      margin-left: 1rem;
      max-width: 100px;
      max-height: 100px;
      padding-bottom: 10px;
    }
  
    footer .socials {
      justify-content: center;
    }
  
    footer .socials i {
      font-size: 1.5rem;
    }
  }
  
  