

.hero-inner {
    display: flex;
    align-items: center;
}

.hero-left {
    max-width: 600px;
    
    
}
.hero-content {
  max-width: 560px;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    color: #294544;
}

.hero-title .accent {
    color: #FF76CE;
}

.hero-sub {
    margin-top: 1rem;
    font-size: 1.15rem;
    max-width: 550px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #355E5C;
}

/* CTA Button */
.hero-cta {
    display: inline-block;
    margin-top: 1.8rem;
    background-color: #FF76CE;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2.3rem;
    border-radius: 14px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #ff5bb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 118, 206, 0.4);
}

/* =========================
   FEATURES SECTION
   ========================= */
.features-section {
    padding: 100px 0;
}

.section-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.feature-card {
    background: rgba(215, 223, 223, 0.85);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2F5755;
}

.feature-card p {
    font-family: 'Poppins', sans-serif;
    color: #4F7070;
    font-size: 0.95rem;
    margin: 10px 0 20px;
}

.btn-feature {
    background-color: #4FB7B3;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn-feature:hover {
    background-color: #2F5755;
}

@media (max-width: 768px) {
  .features-section {
    padding: 40px 0; /* reduce height */
  }

  .section-bg {
    min-height: auto;  /* no need full screen on mobile */
    padding: 40px 0;
  }

  .feature-card {
    max-width: 360px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 20px;
  }

  .feature-card img {
    height: 120px; /* smaller image */
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .btn-feature {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* =========================
   ABOUT SECTION
   ========================= */
.about-section {
      background-size: cover;        /* Makes image cover full section */
      background-position: center top 200px;
      background-position: center;   /* Centers the image */
      background-repeat: no-repeat;  /* Prevents tiling */
      min-height: 100vh;
      height:auto;                 /* Make it full screen like other sections */
      color: rgb(130, 50, 50);                  /* Text readable on image (optional) */
    }

    .about-section .container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding-top: 150px; /* 🔹 Push text downward */
    }

    .about-text h2 {
        font-size: 2.3rem;
        font-weight: 700;
        color: #2F5755;
        font-family: 'Poppins', serif;
    }

    .about-desc {
        font-family: 'Poppins', sans-serif;
        color: #555;
        font-size: 1rem;
        margin-top: 15px;
        line-height: 1.7;
    }

    .about-image img {
        width: 100%;         /* Make it full width of its container */
        max-width: 1000px;    /* Increase this value to make it bigger */
        height: auto;        /* Keep the aspect ratio */
        display: block;
        margin: 0 auto;      /* Center the image */
    }

    /* Responsive for mobile */
    @media (max-width: 768px) {
        .about-section .container {
            flex-direction: column;
            text-align: center;
        }
        .about-text, .about-image {
            margin-bottom: 25px;
        }
    }




/* =========================
   MOBILE FIX
   ========================= */
@media (max-width: 768px) {

  /* Push image away from text */
  .hero-section {
    background-position: right center;
  }

  /* Ensure text stays readable */
  .hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 22px;
    border-radius: 14px;
    max-width: 100%;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 1.05rem;
  }
}

