* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f4f6f5;
  color: #123;
}

/* LOGO */
#logo {
  width: 70px;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-cta {
  background: #6bbd3f;
  padding: 10px 18px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */
.hero {
  position: relative;
  background-image: url("../images/2333_LE_upscale_ultra_size_of_changes_10_intensity_30 (1).jpg");
  background-size: cover;
  background-position: center;
  padding: 160px 20px 140px;
}

/* Overlay layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay strength */
  z-index: 1;
}

/* Keep content above overlay */
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  color: #fff;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #6bbd3f;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* FEATURES */
.features {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.feature-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.feature-icon {
  width: 64px;
  margin: auto;
}

.feature-icon img {
  width: 100%;
}

/* STRATEGIES */
.strategies {
  background: url("../images/high2.jpg");
  background-size: cover;
  padding: 80px 20px;
}

.strategy-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.strategy-box {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.strategy-header {
  background: linear-gradient(90deg, #1f5f3a, #6bbd3f);
  color: #fff;
  padding: 18px;
  font-weight: 700;
}

.strategy-content {
  padding: 25px;
}

.strategy-content li {
  list-style: none;
  margin-bottom: 12px;
}

.strategy-content li::before {
  content: "✔";
  color: #6bbd3f;
  margin-right: 8px;
}

/* TESTIMONIAL */
.testimonial {
  background: #f1f5f2;
  padding: 35px 20px;
  text-align: center;
  font-style: italic;
}

/* LOGOS */
.trusted-section {
  padding: 50px 20px;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-box {
  width: 150px;
  height: 70px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* FOOTER */
footer {
  background: #6bbd3f;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 13px;
}

.logo-box img {
    height: 10vh;
    width: 10vw;
}

.testimonial-section {
  background: #ffffff;
  padding: 6vh 5vw;
}

/* Horizontal scroll wrapper */
.testimonial-scroll {
  display: flex;
  gap: 4vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Card */
.testimonial-card {
  min-width: 80vw;
  max-width: 900px;
  margin: auto;
  padding: 4vh 4vw;
  text-align: center;
  scroll-snap-align: center;
}

/* Stars */
.stars {
  font-size: 1.6rem;
  color: #f4b400;
  margin-bottom: 2vh;
}

/* Text */
.testimonial-text {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.9;
  color: #7a7a7a;
  font-style: italic;
  margin-bottom: 3vh;
}

/* Button */
.testimonial-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid #6bbd3f;
  color: #6bbd3f;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: #6bbd3f;
  color: #fff;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    
    .hero {
  background: url("../images/mobile.jpg");
          background-size: cover;
        background-position: center;
        padding: 160px 20px 140px;
}
    
  .hero-inner,
  .feature-grid,
  .strategy-grid {
    grid-template-columns: 1fr;
  }
  
    .testimonial-scroll {
    justify-content: center;
    overflow: hidden;
  }

  .testimonial-card {
    min-width: 60%;
  }
}
