*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#ffffff;
  color:#1d1d1d;
  overflow-x:hidden;
}

:root{
  --green:#18a558;
  --darkGreen:#0f7a40;
  --light:#f5fff9;
  --gray:#666;
}

/* NAVBAR */

nav{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 7%;
  background:white;
  position:fixed;
  top:0;
  z-index:1000;
  box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  height:58px;
  width:auto;
}

.logo h2{
  font-size:30px;
  font-weight:800;
  color:#111;
}

.logo h2 span{
  color:var(--green);
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--green);
}

.join-btn{
  background:linear-gradient(135deg,#18a558,#0f7a40);
  color:white;
  padding:13px 24px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 25px rgba(24,165,88,0.25);
  transition:0.3s;
}

.join-btn:hover{
  transform:translateY(-3px);
}

.menu-btn{
  display:none;
  font-size:25px;
  cursor:pointer;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:140px 7% 80px;
  background:linear-gradient(to right,#f5fff9,#ffffff);
  gap:60px;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
  min-width:300px;
}

.hero-tag{
  display:inline-block;
  background:#e8fff1;
  color:var(--green);
  padding:10px 20px;
  border-radius:50px;
  font-weight:600;
  margin-bottom:25px;
}

.hero-text h1{
  font-size:68px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-text h1 span{
  color:var(--green);
}

.hero-text p{
  font-size:18px;
  color:var(--gray);
  line-height:1.9;
  margin-bottom:35px;
  max-width:650px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:45px;
}

.primary-btn{
  background:linear-gradient(135deg,#18a558,#0f7a40);
  color:white;
  padding:16px 30px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary-btn:hover{
  transform:translateY(-3px);
}

.secondary-btn{
  border:2px solid var(--green);
  color:var(--green);
  padding:16px 30px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
}

.hero-stats{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.stat-box{
  background:white;
  padding:22px 28px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.stat-box h3{
  color:var(--green);
  font-size:28px;
  margin-bottom:5px;
}

.stat-box p{
  margin:0;
  font-size:14px;
}

/* HERO CARD */

.hero-image{
  flex:1;
  min-width:300px;
  display:flex;
  justify-content:center;
}

.hero-card{
  width:100%;
  max-width:500px;
  background:white;
  border-radius:35px;
  padding:45px;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.hero-card::before{
  content:'';
  position:absolute;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(24,165,88,0.08);
  top:-90px;
  right:-90px;
}

.hero-icon{
  width:90px;
  height:90px;
  border-radius:25px;
  background:linear-gradient(135deg,#18a558,#0f7a40);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.hero-icon i{
  font-size:40px;
  color:white;
}

.hero-card h2{
  font-size:34px;
  margin-bottom:20px;
}

.hero-card p{
  color:var(--gray);
  line-height:1.9;
  margin-bottom:30px;
}

.hero-feature{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  font-weight:600;
}

.hero-feature i{
  color:var(--green);
}

/* GENERAL */

section{
  padding:100px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:var(--green);
  font-weight:700;
  letter-spacing:1px;
}

.section-title h2{
  font-size:48px;
  margin:18px 0;
}

.section-title p{
  color:var(--gray);
  line-height:1.8;
}

/* COURSES */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:white;
  border-radius:30px;
  padding:40px 32px;
  transition:0.4s;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.card:hover{
  transform:translateY(-12px);
}

.card-icon{
  width:82px;
  height:82px;
  border-radius:24px;
  background:#e8fff1;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.card-icon i{
  font-size:34px;
  color:var(--green);
}

.card h3{
  font-size:25px;
  margin-bottom:15px;
}

.card p{
  color:var(--gray);
  line-height:1.8;
}

/* CLASS TYPES */

/* CLASS TYPES */

.class-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.class-card{
  border-radius:35px;
  padding:45px;
  color:white;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  transition:0.3s;
}

.class-card:hover{
  transform:translateY(-10px);
}

.class-card::before{
  content:'';
  position:absolute;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  top:-80px;
  right:-80px;
}

.standard{
  background:linear-gradient(135deg,#18a558,#0f7a40);
}

.micro{
  background:linear-gradient(135deg,#2563eb,#1e40af);
}

.individual{
  background:linear-gradient(135deg,#9333ea,#6b21a8);
}

.class-icon{
  width:90px;
  height:90px;
  border-radius:25px;
  background:rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin-bottom:30px;
}

.class-card h3{
  font-size:30px;
  margin-bottom:20px;
}

.class-card p{
  line-height:1.9;
  margin-bottom:25px;
}

.class-card ul{
  list-style:none;
}

.class-card ul li{
  margin-bottom:15px;
  padding-left:28px;
  position:relative;
}

.class-card ul li::before{
  content:'✓';
  position:absolute;
  left:0;
  font-weight:bold;
}

@media(max-width:1000px){
  .class-container{
    grid-template-columns:1fr;
  }
}

/* FEATURES */

.features{
  background:linear-gradient(to bottom,#f5fff9,#ffffff);
}

.premium-features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.premium-card{
  background:white;
  border-radius:30px;
  padding:40px 32px;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:0.4s;
}

.premium-card:hover{
  transform:translateY(-12px);
}

.feature-top{
  width:85px;
  height:85px;
  border-radius:25px;
  background:linear-gradient(135deg,#18a558,#0f7a40);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
}

.feature-top i{
  color:white;
  font-size:34px;
}

.premium-card h3{
  font-size:24px;
  margin-bottom:16px;
}

.premium-card p{
  color:var(--gray);
  line-height:1.8;
}

/* CONTACT SECTION */

.contact{
  background:linear-gradient(to bottom,#ffffff,#f5fff9);
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.contact-heading h3{
  font-size:38px;
  margin-bottom:18px;
}

.contact-heading p{
  color:var(--gray);
  line-height:1.9;
  max-width:550px;
}

.info-card{
  background:white;
  border-radius:28px;
  padding:24px;
  display:flex;
  align-items:center;
  gap:20px;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:0.3s;
}

.info-card:hover{
  transform:translateY(-6px);
}

.info-icon{
  width:75px;
  height:75px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:white;
}

.whatsapp-bg{
  background:#25d366;
}

.insta-bg{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.green-bg{
  background:linear-gradient(135deg,#18a558,#0f7a40);
}

.info-text span{
  display:block;
  color:#999;
  font-size:14px;
  margin-bottom:6px;
}

.info-text a,
.info-text p{
  color:#111;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}

/* RIGHT BOX */

.contact-box{
  background:white;
  padding:45px;
  border-radius:35px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  position:relative;
  overflow:hidden;
}

.contact-box::before{
  content:'';
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(24,165,88,0.06);
  top:-100px;
  right:-100px;
}

.contact-box-top h3{
  font-size:38px;
  margin-bottom:15px;
}

.contact-box-top p{
  color:var(--gray);
  line-height:1.8;
  margin-bottom:35px;
}

.contact-features{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:35px;
}

.contact-feature{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
}

.contact-feature i{
  color:var(--green);
}

.contact-btn{
  width:100%;
  background:linear-gradient(135deg,#18a558,#0f7a40);
  color:white;
  text-decoration:none;
  padding:18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 12px 25px rgba(24,165,88,0.25);
}

.contact-btn:hover{
  transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:900px){

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-box{
    padding:35px;
  }

}

@media(max-width:600px){

  .contact-heading h3,
  .contact-box-top h3{
    font-size:30px;
  }

  .info-card{
    padding:20px;
  }

  .info-icon{
    width:65px;
    height:65px;
    font-size:28px;
  }

}

/* FOOTER */

.footer{
  background:#0b1f16;
  color:white;
  padding-top:80px;
  margin-top:40px;
}

.footer-container{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1.2fr;
  gap:60px;
  padding-bottom:60px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:25px;
}

.footer-logo img{
  height:60px;
}

.footer-logo h2{
  font-size:34px;
  font-weight:800;
}

.footer-logo h2 span{
  color:#18a558;
}

.footer-about p{
  color:#c7d2cc;
  line-height:1.9;
  max-width:500px;
  margin-bottom:30px;
}

/* SOCIAL */

.footer-social{
  display:flex;
  gap:16px;
}

.footer-social a{
  width:52px;
  height:52px;
  border-radius:16px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:22px;
  text-decoration:none;
  transition:0.3s;
}

.footer-social a:hover{
  background:#18a558;
  transform:translateY(-5px);
}

/* LINKS */

.footer-links h3,
.footer-contact h3{
  font-size:24px;
  margin-bottom:28px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:#c7d2cc;
  text-decoration:none;
  margin-bottom:18px;
  transition:0.3s;
}

.footer-links a:hover{
  color:#18a558;
  padding-left:6px;
}
/* FAQ SECTION */

.faq{
  background:linear-gradient(to bottom,#f5fff9,#ffffff);
}

.faq-container{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:white;
  padding:28px 30px;
  border-radius:24px;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:0.3s;
}

.faq-item:hover{
  transform:translateY(-5px);
}

.faq-item h3{
  color:var(--green);
  font-size:22px;
  margin-bottom:12px;
  line-height:1.5;
}

.faq-item p{
  color:var(--gray);
  line-height:1.9;
  font-size:16px;
}

/* MOBILE */

@media(max-width:600px){

  .faq-item{
    padding:24px;
  }

  .faq-item h3{
    font-size:19px;
  }

}
/* CONTACT */

.footer-contact-item{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:22px;
  color:#c7d2cc;
}

.footer-contact-item i{
  width:45px;
  height:45px;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#18a558;
}

/* BOTTOM */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:22px;
  text-align:center;
}

.footer-bottom p{
  color:#b5c2bc;
  font-size:15px;
}

/* MOBILE */

@media(max-width:950px){

  .footer-container{
    grid-template-columns:1fr;
    gap:50px;
  }

}

@media(max-width:600px){

  .footer{
    padding-top:60px;
  }

  .footer-logo h2{
    font-size:28px;
  }

  .footer-logo img{
    height:52px;
  }

}

/* FLOATING ICONS */

.floating-icons{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:999;
}

.floating-icons a{
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:28px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.whatsapp{
  background:#25d366;
}

.insta{
  background:#d62976;
}

/* MOBILE */

@media(max-width:950px){

  .hero-text h1{
    font-size:52px;
  }

  .nav-links{
    position:absolute;
    top:85px;
    right:-100%;
    background:white;
    width:260px;
    flex-direction:column;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
  }

  .nav-links.active{
    right:20px;
  }

  .menu-btn{
    display:block;
  }

  .join-btn{
    display:none;
  }

}

@media(max-width:650px){

  .logo h2{
    font-size:24px;
  }

  .logo img{
    height:50px;
  }

  .hero{
    padding-top:120px;
  }

  .hero-text h1{
    font-size:40px;
  }

  .section-title h2{
    font-size:36px;
  }

  .hero-card{
    padding:35px;
  }

  .class-card{
    padding:35px;
  }

  .class-card h3{
    font-size:28px;
  }

}