/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;;
    overflow-x: hidden;
    /* z-index: 50; */
  }

  h1 {
    font-family: 'Baskervville', serif
  }
  a {
    text-decoration: none;
    color: #262626;
  }
  .hamburger-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 90px;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    gap: 4px;
  }
  
  .nav-links {
    display: flex;
    justify-content: start;
    align-items: start;
    list-style-type: none;
    /* background-color: red; */
    gap: 50px;
    /* justify-content: start; */
    /* align-items: start; */
    /* text-align: left; */
  }
  
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
  }
  
  .cta-button {
    background-color: #46B97D;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
   
  }
  .btn {
    margin-top: 100px;
    display: inline-block;
  }
  
  .cta-button:hover {
    background-color: #389464;
  }
  .cancel-button {
    display: none;
    color: black;
    border: none;
    cursor: pointer;
    right: 0;
    top: 0;
    z-index: 2;
    font-size: 2rem;
  }
  
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    /* background-color: red; */
    width: 50px;
  }
  .hamburger img {
    width: 40px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px;
    transition: 0.4s;
  }
 

  /* Hero Section styles */
  .hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 20px; /* Add padding for mobile */
    color: #004B52;
    margin: auto;
    /* margin-top: 30px; */
    /* padding-left: 500px; */
  }
  
  .hero-content {
    animation: zoom-in 0.3s ease-out forwards;
    opacity: 0;
  
  }
  .hero-content h1 {
    margin-bottom: 16px;
  
  }
  .hero-content button {
    margin-top: 2px;
    background-color: red;
  
  }

  .hero-content p {
    font-size: 1.2rem;
    color: #555;
    width: 40%;
    margin: 0px auto 40px ;
    /* letter-spacing: 1px; */
    /* margin-bottom: 40px; */
  }
  
  .highlight {
    position: relative;
    background-image: url('../images/Ellipse.svg'); /* Replace with your image path */
    background-size: contain; /* Ensures the image covers the entire background */
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .floating-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .floating-images img {
    position: absolute;
    width: 110px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease; /* Optional hover effect */
  }
  
  .img-top-left {
    position: absolute;
    top: 100px;
    left: 200px;
    animation: slide-in-left 0.5s ease-out forwards;

  }
  
  .img-top-right {
    position: absolute;
    top: 200px;
    right: 200px;
    animation: slide-in-right 0.5s ease-out forwards;

  }
  
  .img-bottom-left {
    bottom: 100px;
    left: 200px;
    animation: slide-in-left 0.5s ease-out forwards;
  }
  
  .img-bottom-right {
    bottom: 50px;
    right: 200px;
    animation: slide-in-right 0.5s ease-out forwards;
  }
/* Why section styles */
  .h1 {
    font-size: 5rem;
    font-weight: lighter;
    /* margin: 40px auto 20px; */
    text-align: center;
    color: #004B52;
    /* max-width: 50vw; */
  }
  .why {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 130vh;
    /* background-color: #001C1F; */
    min-width: 100vw;
    margin: auto;
    align-items: center;
    margin-bottom: 100px;
    /* overflow: hidden; */
  
  }
  .why h1 {
    position: relative; 
    z-index: 5;    
   margin-bottom: 2rem;
  
  }
 

  
  /* Base styling for whydivs */
.whydiv {
  background-color: #001C1F;
  position: relative;
  height: 90vh;
  width: 85vw;
  top: 30%;
  /* left: 50%; */   
  transform: translateY(200px) scale(1); /* Start from below */
  border-radius: 48px;
  display: flex;
  gap: 5rem;
  transition: transform 0.8s ease, opacity 0.8s ease;
  /* opacity: 0; Initially hidden */
  /* transition-delay: 1s; */
  padding-left: 2rem;
  padding-right: 2rem;
  z-index: 1;
  /* overflow: hidden; */
}
.whydiv.visible {
  opacity: 1; /* Fully visible */
  /* transform: translateY(0); Slide to the original position */
}
.whydiv.in-view {
  opacity: 1;
}


/* Styling for text inside the whydiv */
.whytext > h1 {
  color: #46B97D;
  text-align: left;
  display: flex;
  justify-content: start;
  align-items: start;
  position: relative;
  /* z-index: 4; */

}


  .whyimage {
    height: auto;
    margin: 30px 0px;
    /* padding-left: 2rem; */
    object-fit: cover;
    border-radius: 24px;
    width: 40%;
    /* overflow: hidden; */
  }
  .mobile-image {
    display: none;
  }
  
  .whytext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-width: 50%;
    /* min-width: 100%; */
    /* align-items: center; */
  }


  .whytext p {
    color: #BFBFBF;
    font-size: 1.2rem;
    font-weight: lighter;
    max-width: 80%;
    text-align: left;
    letter-spacing: 1px;
  }
  
  /* integrity section */
  .integritysection {
    min-height: 100vh;
    /* margin-top: 700px; */
  }
  .integritydiv {
    position: relative;
    background-image: url('../images/bgimg.png');
    background-color: #063d33;
    margin: 50px auto;
    display: flex;
    /* border: 2px solid black; */
    width: 70vw;
    min-height: 700px; 
    /* object-fit: cover; */
    border-radius: 24px;
    overflow: hidden;
  }
  .integrityh1 {
    max-width: 50vw;
    margin: auto;
    padding-top: 150px;
  }
  .groupimg {
    margin: 100px auto;
    /* display: flex; */
    width: 920px;
    height: 600px;
    object-fit: contain;
    border-radius: 24px;
    /* border: 2px solid #001C1F; */
    padding-bottom: 70px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 120px;
    /* z-index: 50; */
    animation: moveZoom 10s infinite;

  }

  @keyframes moveZoom {
    0% {
      transform: translateY(0) scale(1);
    }
    25% {
      transform: translateY(-50px) scale(1.1); /* Move slightly up */
    }
    50% {
      transform: translateX(150px) scale(1.1); /* Move right and zoom out */
    }
    75% {
      transform: translateX(-150px) scale(1.1); /* Move left and stay zoomed out */
    }
    100% {
      transform: translate(0, 0) scale(1); /* Move back to center and zoom in */
    }
  }

  /* Designed for everyone */
 .section4 {
  padding: 100px 0px;
 }
 .section4 h1 {
  margin-bottom: -35px;
  /* background-color: red; */
 }
 .section4 p {
  font-size: 32px;
  text-align: center;
  color: #46B97D;
  font-family: 'Satoshi', sans-serif;;
 }
  
  /* Cards section */
  .cards-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.card {
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 10px 40px 30px;
    width: 500px;
    text-align: center;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card h3 {
    font-size: 1.75rem;
    color: #004B52;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #004B52;
    margin-bottom: 50px;
    font-weight: normal;
    width: 70%;
    margin: 0px auto 40px;
}
.displayimg {
  width: 400px;
}

.icons {
  display: grid;
  grid-template-areas: 
      ". icon1 ."
      "icon4 . icon2"
      ". icon3 .";
  /* gap: 2px; */
  justify-content: center;
  align-items: center;
  /* margin-top: 20px; */
  width: 400px;
}
.icon {
  height: 80px;
  width: 80px;
}

.icon1 { grid-area: icon1; }
.icon2 { grid-area: icon2; }
.icon3 { grid-area: icon3; }
.icon4 { grid-area: icon4; }

/* why section */
.container {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  /* max-width: 70vw; */
  /* max-width: 1200px; */
  background-color: #91FDC5;
  margin: 50px auto;
  border-radius: 24px;
  position: relative;
  padding: 50px 150px 50px;
  transform-origin: center;
  transition: transform 0.5s ease;
}

.group1img {
   /* border: 2px solid #001C1F; */
  /* padding-bottom: 70px; */
  /* width: 100%; */
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: contain;
  /* opacity: 0; */
}


.left-section {
  flex: 1;
  transform: translateX(-100%);
  opacity: 0;
}

.left-section h1 {
  /* font-size: 3rem; */
  /* font-weight: 600; */
  line-height: 1.4;
  color: #063d33;
  text-align: left;
  /* margin-left: 100px; */
}

.right-section {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  transform: translateX(100%);
  opacity: 0;
}

.feature {
  border-radius: 10px;
  padding: 20px;
  /* text-align: center; */

}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #075e55;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  /* padding: 16px; */
  /* margin: 0 auto 15px; */
}

.icon {
  color: white;
  font-size: 2rem;
}

.feature h3 {
  font-size: 1.25rem;
  color: #004B52;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #004B52;
  line-height: 1.5;
}



.container1 {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
  width: 80vw;
  /* max-width: 1200px; */
  background-color: #91FDC5;
  margin: 50px auto;
  padding:  50px;
  border-radius: 24px;
  position: relative;
}

.group2img {
  /* border: 2px solid #001C1F; */
 /* padding-bottom: 70px; */
 /* width: 100%; */
 position: absolute;
 width: 100%;
 bottom: 0;
 left: 0;
 object-fit: contain;
}

.container1 h1 {
  margin-bottom: 24px;
  max-width: 50%;
}
.container1 p {
  text-align: center;
  font-size: larger;
  max-width: 60%;
  margin: 0px auto 20px;
  /* padding-bottom: 100px; */
}
.container1 button {
  padding: 10px 15px;
  border-radius: 24px;
  margin-bottom: 100px;
  border: 1px solid #D0D5DD;
  font-size: larger;
}
/* Faq styles */
.faq-container {
  display: flex;
  padding: 50px;
  justify-content: space-around;
  /* background-color: #001C1F; */
  /* height: 50vh; */
}

.faq-left {
  max-width: 30%;
}

.faq-left h2 {
  color: #69a691;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-left h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-align: left;
}

.faq-left p {
  font-size: 1rem;
  line-height: 1.5;
  color: #063d33;
}

.faq-left a {
  color: #063d33;
  text-decoration: none;
}

.faq-right {
  /* max-width: 50%;
  min-width: 50%; */
  width: 50%;
}

.faq-item {
  /* margin-bottom: 20px; */
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  /* padding: 15px 0; */
  /* background-color: red; */
}

.faq-question .icon {
  font-size: 1.5rem;
  /* color: #000; */
}

.faq-answer {
  display: none;
  padding: 10px 0;
  font-size: 1rem;
  color: #555;
}

.see-more a {
  color: #28A745;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

/* footer */
.footer {
  background-color: #F5F5F5;
  height: 25vh;
  display: flex;
  justify-content: space-between;
  padding: 50px 10rem;
  align-items: center;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.logo2 {
  font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    gap: 8px;
    
}
.footer-icon {
  display: flex;
  gap: 20px;
}
.footer-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}
.footer-link a {
  text-decoration: none;
  color: #595959;
  font-weight: 700;
}
.legal {
  background-color: #F5F5F5;
  padding: 50px 10rem;
  

}
.legal-text {
  display: flex;
  justify-content: space-between;
  width: 80vw;
  margin: auto;
  border-top: 1px solid black;
}
.legal-flex {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 10px;
}
 


.sltnsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #f4f4f4;
}

.section-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 200px 0;
}

.text-content {
  flex: 1;
  text-align: left;
  margin-left: 100px;
}
.text-content h1 {
  
  text-align: left;
  width: 90%;
  margin-bottom: 0;
  /* background-color: red; */
}
.text-content p {
  color: #46B97D;
  font-size: 24px;
}

.infocards-container {
  display: flex;
  /* overflow: hidden; */
  width: 600px; /* Adjust to show partial second card */
  position: relative;
}

.infocard {
  min-width: 400px; /* Card width slightly smaller to show part of the next card */
  padding: 30px 20px;
  background: #fff;
  border-radius: 24px;
  transition: transform 0.5s ease, scale 0.5s ease;
  margin-right: 20px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #004B52;
  flex: 1;
  /* align-items: ; */
}

.infocard img {
  height: 120px;
  width: 120px;
}
.infocard a {
  color: #46B97D;
}

.infocard.shrinking {
  transform:  scale(0.2); 
}

.infocard.expanding {
  transform: translateX(-100%) scale(1); 
}
.infocard.shrinking2 {
  transform: translateX(40%) scale(1); 
}
.infocard.expanding2 {
  transform: translateX(0) scale(1); 
}

#next:disabled, #prev:disabled {
  background-color: transparent;
  color: black;
  cursor: not-allowed;
  border: 1px solid #999;
}


.arrow-buttons {
  margin-top: 20px;
}

.arrow-buttons button {
  background-color: #4caf50;
  border: none;
  color: white;
  font-size: 40px;
  /* padding: 10px; */
  cursor: pointer;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  margin: 0 5px;
}






  /* Fade-in animation */
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .hero-content {
    opacity: 0;
    animation: fadeIn 5s forwards;
  }
  
  /* Media Queries for Mobile */
  @media (max-width: 768px) {
    /* Hide images on mobile */
    .h1 {
      font-size: 3rem;
    }
    .floating-images {
      display: none;
    }
    .hero {
      width: 90vw;
      margin-top: -100px;
      
      /* position: absolute; */
      /* background-color: #228B22; */
    }
  
    .hero-content h1 {
      font-size: 3rem;
      /* margin-top: 50px; */
      /* background-color: red; */
      min-width: 80%;
    }
  
    .hero-content p {
      font-size: 1rem;
      /* background-color: red; */
      min-width: 90%;
      line-height: 18px;
    }
    /* why section */
    .why {
      flex-direction: column;
      gap: 10px;
      margin: auto;
      padding-left: 0;
      margin-bottom: 1100px;
      
    }
    
    .why h1 {
      min-width: 80%;
    }
    .whydiv {
      display: flex;
      flex-direction: column-reverse;
      max-width: 80%;
      border: #001C1F;
      opacity: 1;
      gap: 20px;
      /* margin-left: -180px; */
      height: auto;
      border-radius: 16px;
      transition: none;
      transform: none;
      /* position: absolute; */
    }
     

    .whyimage {
      padding-bottom: 20px;
      height: auto;
      /* max-width: 100%; */
    }
    .desktop-image {
      display: none;
    }
    .mobile-image {
      display: block;
      width: 100%; 
      margin: auto;
    }
    .whytext {
      /* align-items: center; */
      margin: auto;
      min-width: 100%;
      /* background-color: red; */
    }
    .whytext > h1 {
      /* justify-content: center; */
      width: 80%;
      font-size: 40px;
    }
    .whytext > p {
      font-size: 16px;
      min-width: 80vw;
      /* background-color: rebeccapurple; */
    }

    /* integrity */
    .integritysection {
      margin-top: 0px;
      margin-bottom: -100px;
    }
    .integrityh1 {
      min-width: 90%;
      font-size: 40px;
    }
    .integritydiv {
      /* min-width: 90%; */
      width: 80vw;
      position: relative;
      min-height: 300px;
      display: flex;
      justify-content: start;
      align-items: center;
      /* overflow: hidden; */
      /* padding-left: -500px; */
      background-color: red;
    }
    .groupimg {
      width: 250px;
      height: 200px;
      object-fit: cover;
      position: relative;
      
      margin: auto auto -50px -90px;
      bottom: 0;
      padding-top: 0;
      
    }
    .section4 {
      overflow: hidden;
      /* background-color: red; */
    }
    .section4 h1 {
      font-size: 2.2rem;
      width: 95vw;
      margin: auto;
    }
    .section4 p {
      /* width: 90vw; */
      margin: 10px auto 30px;
      font-size: 18px;
      font-weight: thin;

    }
    .cards-container {
      flex-direction: column;
      /* background-color: red; */
      /* width: 100px; */
    }
    .card {
      width: 70%;
      padding-bottom: 0;
    
    }
    .card h3 {
      font-size: 18px;
    }
    .card p {
      width: 100%;
      font-size: 14px;
      /* line-height: 25px; */
    }
    .card img {
      width: 100%;
      /* background-color: red; */
    }
    /* why section */
    .container {
      display: flex;
      flex-direction: column;
      /* text-align: left; */
      /* margin: 0; */
      padding: 0px 20px;
      min-width: 85vw;
      overflow: hidden;
    }
    .right-section {
      display: flex;
      flex-direction: column;
    }
    /* .left-section {
      /* width: 90vw; */
      /* background-color: red; 
    } */
    .left-section h1 {
      text-align: left;
      font-size: 2.5rem;
      /* width: 700%;  */
      /* background-color: #004B52; */
      flex: 0;
      /* padding: 0px; */
    }
    .group1img {
      position: absolute;
      bottom: 0;
      left: 0;
      object-fit: contain;
      width: 100%;
    }
    .container1 {
      width: 70vw;
    }
    .container1 button {
      font-size: larger;
    }
    /* Tailored solutions */
    .section-container {
      display: flex;
      flex-direction: column;
      justify-content: start;
      margin: 0;
      /* background-color: rebeccapurple; */
    }
    .text-content {
      margin: 0;
    }
    .text-content h1 {
      font-size: 40px;
    }
    .text-content p {
      font-size: 18px;
    }
    .arrow-buttons {
      visibility: hidden;
    }
    .infocards-container {
      /* overflow: hidden; */
      flex-direction: column;
      height: fit-content;
      max-width: 90vw;
      gap: 20px ;
      /* background-color: red; */
    }
    .infocard {
      /* background-color: red; */
      min-width: 300px;
      position: relative;
      visibility: visible;
      min-height: 450px;
    }
    
    .infocard:first-child {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .container1 h1 {
      font-size: 40px;
      min-width: 80vw;
      text-align: center;
      /* background-color: red; */
    }
    .container1 p {
      min-width: 90%;
      margin: 10px auto 50px;
      color: #004B52;
    }
    .container1 button {
      font-size: larger;
    }

    /* faqs */
    .faq-container {
      display: flex;
      flex-direction: column;
      width: 80vw;
    }
    .faq-item {
      width: 80%;
    }
    .faq-left {
      max-width: 80vw;
    }
    .faq-right {
      width: 100vw;
    }
    /* footer */
    .footer {
      flex-direction: column;
      align-items: start;
      padding: 50px 30px;
      gap: 50px;
      
    }
    .legal {
      padding: 10px 0px;
    }
  }
   
  @keyframes zoom-in {
    0% {
      transform: scale(0.2);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes slide-in-left {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slide-in-right {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* Mobile styles */
  @media screen and (max-width: 768px) {


    .navbar {
      position: relative;
      padding: 0px 20px;
      
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      height: 100%;
      width: 60%;
      background-color: white;
      transition: right 0.3s ease-in-out;
      padding-top: 60px;
      align-items: flex-start;
      text-align: left;
    }
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      margin: 20px 0;
      color: white;
    }

    #btn {
      display: none;
      /* margin-left: 20px; */
    }
  
    .hamburger {
      display: block;
    }
    .hamburger-container .cancel-button.active {
      display: block;
    }
  
    .hamburger-container .hamburger.active {
      display: none;
    }
  
    /* Toggle the menu */
    .menu.active {
      display: flex;
    }
  
   
  }
  