


body{
   background-color:#f4f9f8;
   color:#1e2d3d;
   line-height:1.5;
}

/* MAIN CONTAINER */

.wrapper{
      max-width:1280px;
      margin:2rem auto;
      background-color:#ffffff;
      border-radius:2rem;
      box-shadow:0 20px 40px -10px rgba(18,40,70,0.12);
      overflow:hidden;
}

/* NAVBAR */


.logo{
  font-weight:700;
  font-size:20px;
  display:flex;
  /* gap:10px; */
  align-items:center;
  color:#17A79A;
}

.menu{
  display:flex;
  gap:20px;
}

.menu a{
  text-decoration:none;
  color:#1e2d3d;
  background:#e8f6f4;
  padding:10px 18px;
  border-radius:20px;
  font-size:14px;
}

/* HERO */

.hero{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  padding:40px;
  position:relative;
}

.hero-left h1{
  font-size:90px;
  line-height:0.9;
  font-weight:900;
}

.hero-left p{
  margin-top:20px;
  color:#5f6f7f;
}

.btn{
  margin-top:30px;
  background:#17A79A;
  color:#fff;
  border:none;
  padding:16px 26px;
  border-radius:30px;
  font-size:16px;
  cursor:pointer;
}

.stats{
  display:flex;
  gap:40px;
  margin-top:40px;
  align-items:center;
}

.stat h3{
  color:#FF6B35;
  font-size:28px;
}

.stat p{
  font-size:13px;
  color:#6c7a89;
}

/* RIGHT PANEL */

.hero-right{
  background:linear-gradient(135deg,#17A79A,#4fc4b7);
  border-radius:30px;
  padding:40px;
  height:520px;
  position:relative;
  color:#fff;
}

.hero-right img{
  position:absolute;
  bottom:0;
  left:40px;
  height:520px;
}

.hero-right h2{
  position:absolute;
  right:40px;
  top:120px;
  width:260px;
  font-size:32px;
}

.hero-right p{
  position:absolute;
  right:40px;
  top:200px;
  width:260px;
  opacity:0.9;
}

/* FLOAT LABELS */

.label{
  position:absolute;
  background:#ffffff;
  padding:10px 18px;
  border-radius:20px;
  font-size:13px;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  color:#17A79A;
}

.l1{ top:180px; left:45%; }
.l2{ top:260px; left:65%; }
.l3{ bottom:120px; left:60%; }

/* SECTION 2 */

.section2{
  padding:80px 40px;
  text-align:center;
  background:#eef8f7;
}

.section2 h2{
  font-size:42px;
  max-width:900px;
  margin:auto;
  line-height:1.3;
}

.section2 button{
  margin-top:30px;
  padding:16px 30px;
  border:none;
  border-radius:30px;
  background:#FF6B35;
  color:#fff;
  font-size:16px;
}

/* CONTACT SECTION */

.contact-section{
  padding:80px 40px;
  background:#ffffff;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* .contact-left h2{
  color:#17A79A;
  margin-bottom:20px;
} */

.contact-left p{
  color:#5f6f7f;
  margin-bottom:20px;
}

.download-buttons{
  display:flex;
  gap:20px;
  margin-bottom:20px;
}

.store-btn{
  background:#17A79A;
  color:#fff;
  border:none;
  padding:14px 24px;
  border-radius:30px;
  cursor:pointer;
}

.applestore{
  background:#FF6B35;
}

.contact-left p:last-child{
  color:#6c7a89;
  font-size:14px;
}

/* FORM */

.contact-form{
  background:#f4f9f8;
  padding:40px;
  border-radius:20px;
}

/* .contact-form h3{
  margin-bottom:20px;
  color:#17A79A;
} */

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border-radius:10px;
  border:1px solid #dbe7e6;
  font-size:14px;
}

.submit-btn{
  width:100%;
  background:#FF6B35;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:30px;
  cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:1000px){
.hero{
  grid-template-columns:1fr;
}
.contact-wrapper{
  grid-template-columns:1fr;
}
.hero-left h1{
  font-size:56px;
}
}
