body {
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbarul {
  display: flex;
  gap: 90px;
  list-style: none;
  font-size: 25px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

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

.signup-button {
  position: absolute;
  right: 200px;
  background-color: #1F6F79;
  color: white;
  padding: 12px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.signup-button:hover {
  background-color: #17565e;
}

a {
    text-decoration: none;
    color: black;
}

.imgmain {
    display: flex;
    justify-content: center;
    padding: 0 60px; 
  }
  
  .landingimg {
    width: 100%;
    max-width: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 40px;
    display: block;
  }


.row-container {
    display: flex;
    justify-content: center; /* center horizontally */
    gap: 60px;               /* spacing between boxes */
    padding: 60px;           /* optional padding around row */
    padding-bottom: 0;
}

.box {
    width: 650px;
    height: 550px;
    background-color: #1F6F79;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 40px;
    border: 60px;
    position: relative;
}

.box-header {
    padding: 60px 60px 20px 60px;
    display: flex;
    align-items: center;
    gap: 20px; 
  }

.iconsquare {
    width: 60px;
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    background-color: white;
    border-radius: 15px;
}

.iconsquare img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
  
.icon-text {
    color: white;
    font-size: 32px;
    margin: 0;
    font-weight: bold;
}

.description {
    padding: 0 60px;
}

.descriptiontext {
    color: white;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.5;
    line-break: normal;
}

.graybox {
    margin-top: 60px;
    width: 100%;
    height: 200px;
    background-color: #282828;
}

.slider {
    height: 250px;
    margin-top: 60px;
    background-color: #282828;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 20px 0;
  }
  
  .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 60px;
    width: max-content;
  }
  
  .slide {
    width: 260px;
    height: 180px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .imgslide {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
  }


@keyframes scroll {
    0% {
        transform: translate(0);
    }
    100% {
        transform: translateX(calc(-250px * 9));
    }
}

.reviews-section {
  background-color: #282828;
  color: white;
  margin-top: 60px;
  padding: 60px 20px;
  text-align: center;
}

.reviews-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* consistent width */
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background-color: white;
  color: #333;
  padding: 20px 24px;
  border-radius: 10px;
  font-size: 16px;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: block;          
  height: auto;
}

  .footer-content {
    display: flex;
    padding: 40px 60px;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .footer-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 60px;
  }
  
  .footer-description {
    max-width: 400px;
    font-size: 14px;
    color: #333;
  }
  
  .client-button {
    display: inline-block;
    background-color: #282828;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    margin-left: 90px;
    margin-right: 90px;
  }
  
  .footer-contact p {
    font-size: 14px;
    margin: 4px 0;
  }
  
  .footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-column a {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
  }
  
  .footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    font-size: 14px;
    color: #888;
  }

  