        @font-face {
  font-family: 'segoeu';
  src: url('../fonts/segoeuithis.ttf') format('opentype');
  font-style: normal;
}
    
    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'segoeu';
      width: 100%;
    }

    /* ================= HEADER ================= */
    header {
      height: 13vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .logo {
      width: 8vw;
    }

    /* ================= HERO SECTION ================= */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Desktop Image */
    .hero-desktop {
      background-image: url("../../assets/images/Untitled design (24).png");
      background-size: cover;
      background-position: center;
      width: 100%;
      height: 100%;
    }

    /* Mobile Image */
    .hero-mobile {
      display: none;
      background-image: url("../../assets/images/mellow mobile banner .webp");
      background-size: cover;
      background-position: center;
      width: 100%;
      height: 100%;
    }

    /* Overlay */
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    /* Center Content */
    .hero-content {
      position: absolute;
      z-index: 2;
      text-align: center;
      color: #fff;
      padding: 2rem;
      width: 90%;
    }

    .hero-content h1 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .hero-content p {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .hero-content button {
      padding: 0.9em 2.5em;
      font-size: 1rem;
      border: none;
      border-radius: 0.55em;
      background: #22d3ee;
      color: #000;
      cursor: pointer;
      font-weight: bold;
    }
    
    .features-section {
  width: 100%;
  padding: 8vh 5vw;
  background: #f9fafb;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 3vw;
  max-width: 90vw;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  width: 30%;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.icon-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border-radius: 1.2rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 2.2rem;
  height: 2.2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #111827;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6em;
  color: #6b7280;
}

    /* ================= FOOTER ================= */
    footer {
      height: 7vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      background: #000;
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
        
          .hero {
      height: 85vh;
    }
        
      .hero-desktop {
        display: none;
      }
      
      .hero-content {
    padding: 1.3rem;
    width: 100%;
      }

      .hero-mobile {
        display: block;
      }

      .logo {
        width: 31vw;
      }
      
      .hero-content p {
    font-size: 1.65rem;
    margin-bottom: 1.3rem;
      }
      
      .hero-content button {
    padding: 0.9em 1.5em;
    font-size: 1.3rem;
}

 .features-container {
    flex-direction: column;
    gap: 4vh;
  }

  .feature-card {
    width: 100%;
  }
    }
