@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');
*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,Arial,sans-serif}
body{color:#333;line-height:1.6}
a{text-decoration:none}
h1, h2, h3, h4, h5, h6{ font-family: "Zalando Sans Expanded", sans-serif;   }
/* COMMON */
.container{/* width: 100%; *//* max-width:1200px; */margin:auto}
.btn{padding: 10px 26px;border-radius: 100px;font-weight:600;display:inline-block}
.primary{background: #34b15f;color:#fff}
.call{background: #34b15f;color:#fff}

/* HEADER */
header{
  background:#fff;
  padding: 0px 0;
  box-shadow:0 4px 15px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:999;
}
.header-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo img{height: 67px;}

/* HERO */
.hero{
  background: url(banner.jpeg) #0000009e;
  padding:90px 0;
  background-blend-mode: color;
  background-position: center;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:40px;
  align-items:center;
}
.hero h1{font-size: 41px;line-height:1.2;font-weight: 500;color: #fff;}
.hero h1 span{color: #34b15f;font-weight: 800;/* -webkit-text-stroke: 1px #ffffff54; */font-family: "Zalando Sans Expanded", sans-serif;}
.hero p{margin:15px 0;font-size: 18px;font-weight: 500;color: #fff;}
.hero-btns{margin:25px 0;display:flex;gap:15px;flex-wrap:wrap}
.hero-points li{list-style:none;margin-top:8px;display: flex;align-items: center;gap: 10px;font-weight: 600;color: #fff;}

/* FORM */
.hero-form{
  background:#fff;
  padding: 25px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
.hero-form h3{margin-bottom: 0;text-align: center;font-size: 23px;}
.hero-form input,
.hero-form button{
  width:100%;
  padding: 10px 12px;
  margin-bottom:12px;
  border-radius: 6px;
  border:1px solid #ddd;
}
.hero-form button{
  background:#2e8b57;
  color:#fff;
  border:none;
  font-size:16px;
  cursor:pointer;
  border-radius: 100px;
}

/* WHY US */
.why{padding: 50px 0;background: #ffffff;text-align:center}
.why h2{font-size:32px}
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap: 10px;
  margin-top:45px;
}
.why-box{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow: 0 10px 25px #3cb3712e;
  border: 1px solid #3cb3713b;
}
.why-box i{
  font-size:36px;
  color:#2e8b57;
  margin-bottom:15px;
}
.why-box h4{margin-bottom:8px;font-size: 20px;}

/* ABOUT */
.about{padding: 50px 0;}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}
.about img{width:100%;border-radius:20px}
.about h2{font-size:32px;margin-bottom:15px}

/* TESTIMONIAL */
.testimonial{
  background: #ffffff;
  /* color:#fff; */
  padding: 50px 0 30px;
  text-align:center;
}
.testimonial h2{margin-bottom:40px;font-size: 32px;}
.swiper-slide{
  background:#fff;
  color: #4c4b4b;
  padding: 20px;
  border-radius:15px;
  border: 1px solid #e5e5e5;
  text-align: left;
  letter-spacing: 0.4px;
  font-size: 15px;
  min-height: 225px;
}
.swiper-slide h4{margin-top:10px;color:#2e8b57;font-size: 18px;}

/* CTA */
.cta{
  padding: 70px 0 30px;
  text-align:center;
  background:linear-gradient(to right,#2e8b57,#3cb371);
  color:#fff;
}
.cta h2{font-size:32px;margin-bottom:15px}
.counter-box p{
    margin-bottom: 0;
}
/* RESPONSIVE */
@media(max-width:900px){
    .copyright{
        flex-direction: column !important;
    }
    .address i{
        font-size: 25px;
    }
    .address{
        padding: 20px 30px !important;
        font-size: 13px !important;
        flex-direction: column;
    }
    h4.mob-h4 {
        margin: 13px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    color: #f82908;
        display: block !important;
        
    }
    .hero h1 span{
        font-size: 49px !important;
    }
    .header-wrap h4{
        display: none;
    }
    .logo img {
        height: 66px;
    }
    header .call{
        font-size: 13px;
        padding: 10px 15px;
    }
    .disclamier p {
        font-size: 13px !important;
    }
    .disclamier{
        padding: 15px 0 !important;
    }
    .cta h2{
        font-size: 26px;
    }
    .counter-box h2{
        font-size: 32px;
    }
    .counter-box{
        padding: 15px !important;
        border-radius: 10px !important; 
    }
    .counter-grid {
        grid-template-columns: repeat(auto-fit, minmax(46%, 1fr)) !important;
        gap: 10px !important;
    }
    .hero .hero-form{
        display: none;
    }
    .mob .hero-form{
        display: block !important;
    }
    .hero-btns{
        justify-content:center;
    }
    .hero p{
        color: #d3d3d3;
    }
    .hero h1{
        font-size: 32px;
    }
  .hero-grid,.about-grid{grid-template-columns:1fr;gap: 15px;}
  .hero{text-align:center}
}
.hero-points li i{
    display: inline-flex;
    min-height: 20px;
    min-width: 20px;
    background: #34b15f;
    color: #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
.hero-form p {
    font-size: 15px;
    color: #6e6e6e;
    text-align: center;
    margin-top: 0;
}
.hero-form small {
    text-align: center;
    display: block;
    font-weight: 600;
    color: #0ac322;
}

.hero-form small i {
    background: #0ac322;
    color: #fff;
    border-radius: 100px;
    min-width: 15px;
    height: 15px;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.counter-section{
    padding: 30px 0 30px;
    background: #2e8b57;
  }
  .counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
  }
  .counter-box{
    background:#f7fdf9;
    padding:35px 20px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
  }
  .counter-box h2{
    font-size:42px;
    color:#2e8b57;
    font-weight:700;
  }
  .swiper-wrapper{
    padding-bottom: 40px;
  }
  .swiper-pagination-bullet{
    background:#2e8b57;
    opacity:0.5;
  }
  .swiper-pagination-bullet-active{
    opacity:1;
  }
  .courses{padding:90px 0;background:#f7fdf9}

.course-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.1);
  transition:.3s;
  height:100%;
}

.course-card:hover{transform:translateY(-6px)}

.course-card img{
  width:100%;
  /* height:220px; */
  object-fit:cover;
}

.course-body{padding: 20px;}

.course-body h4{margin-bottom:10px;font-size: 20px;font-weight: 700;}

.course-body p{font-size:14.5px;color:#555}

.course-body ul{list-style:none;padding:0;margin:15px 0}

.course-body ul li{
  font-size:14px;
  margin-bottom:6px;
}
.btn:hover {
    color: #000;
    background-color: #fff;
    border-color: var(--bs-btn-hover-border-color);
}

.course-body ul i{color:#2e8b57;margin-right:6px}

.course-btns{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.call-btn{
  background:#000;
  color:#fff;
  flex:1;
}

.whatsapp-btn{
  background:#25D366;
  color:#fff;
  flex:1;
}

.enquire-btn{
  background:#2e8b57;
  color:#fff;
  width:100%;
}
ul.hero-points {
    padding-left: 0;
}
section.cta img {
    width: 200px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}
section.cta .hero-btns {
    /* text-align: center; */
    display: flex;
    justify-content: center;
}

section.cta .hero-btns a {
    border: 3px solid #ffffff;
}

.disclamier {
    background: #ffffff14;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 17px;
    border: 1px solid #ffffff2b;
}

.copyright {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.mob .hero-form{
    display: none;
}
img.logo2 {
    width: 92px;
}

.header-wrap h4 {
    width: 50%;
    text-align: center;
    color: #f82908;
    font-size: 20px;
    font-weight: 700;
}
.hero h1 span {
    display: block;
    font-size: 58px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000000;
}.address {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    background: #217b40;
    border-radius: 100px;
    border: 1px solid #22a35b;
    padding: 2px 30px;
}
h4.mob-h4 {
    display: none;
}
.copyright p a {
    color: #ffffff;
    font-weight: 700;
}
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');
*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,Arial,sans-serif}
body{color:#333;line-height:1.6}
a{text-decoration:none}
h1, h2, h3, h4, h5, h6{ font-family: "Zalando Sans Expanded", sans-serif;   }
/* COMMON */
.container{/* width: 100%; *//* max-width:1200px; */margin:auto}
.btn{padding: 10px 26px;border-radius: 100px;font-weight:600;display:inline-block}
.primary{background: #34b15f;color:#fff}
.call{background: #34b15f;color:#fff}

/* HEADER */
header{
  background:#fff;
  padding: 0px 0;
  box-shadow:0 4px 15px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:999;
}
.header-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo img{height: 67px;}

/* HERO */
.hero{
  background: url(banner.jpeg) #0000009e;
  padding:90px 0;
  background-blend-mode: color;
  background-position: center;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:40px;
  align-items:center;
}
.hero h1{font-size: 41px;line-height:1.2;font-weight: 500;color: #fff;}
.hero h1 span{color: #34b15f;font-weight: 800;/* -webkit-text-stroke: 1px #ffffff54; */font-family: "Zalando Sans Expanded", sans-serif;}
.hero p{margin:15px 0;font-size: 18px;font-weight: 500;color: #fff;}
.hero-btns{margin:25px 0;display:flex;gap:15px;flex-wrap:wrap}
.hero-points li{list-style:none;margin-top:8px;display: flex;align-items: center;gap: 10px;font-weight: 600;color: #fff;}

/* FORM */
.hero-form{
  background:#fff;
  padding: 25px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
.hero-form h3{margin-bottom: 0;text-align: center;font-size: 23px;}
.hero-form input,
.hero-form button{
  width:100%;
  padding: 10px 12px;
  margin-bottom:12px;
  border-radius: 6px;
  border:1px solid #ddd;
}
.hero-form button{
  background:#2e8b57;
  color:#fff;
  border:none;
  font-size:16px;
  cursor:pointer;
  border-radius: 100px;
}

/* WHY US */
.why{padding: 50px 0;background: #ffffff;text-align:center}
.why h2{font-size:32px}
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap: 10px;
  margin-top:45px;
}
.why-box{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow: 0 10px 25px #3cb3712e;
  border: 1px solid #3cb3713b;
}
.why-box i{
  font-size:36px;
  color:#2e8b57;
  margin-bottom:15px;
}
.why-box h4{margin-bottom:8px;font-size: 20px;}

/* ABOUT */
.about{padding: 50px 0;}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}
.about img{width:100%;border-radius:20px}
.about h2{font-size:32px;margin-bottom:15px}

/* TESTIMONIAL */
.testimonial{
  background: #ffffff;
  /* color:#fff; */
  padding: 50px 0 30px;
  text-align:center;
}
.testimonial h2{margin-bottom:40px;font-size: 32px;}
.swiper-slide{
  background:#fff;
  color: #4c4b4b;
  padding: 20px;
  border-radius:15px;
  border: 1px solid #e5e5e5;
  text-align: left;
  letter-spacing: 0.4px;
  font-size: 15px;
  min-height: 225px;
}
.swiper-slide h4{margin-top:10px;color:#2e8b57;font-size: 18px;}

/* CTA */
.cta{
  padding: 70px 0 30px;
  text-align:center;
  background:linear-gradient(to right,#2e8b57,#3cb371);
  color:#fff;
}
.cta h2{font-size:32px;margin-bottom:15px}
.counter-box p{
    margin-bottom: 0;
}
/* RESPONSIVE */
@media(max-width:900px){
    .copyright{
        flex-direction: column !important;
    }
    .address i{
        font-size: 25px;
    }
    .address{
        padding: 20px 30px !important;
        font-size: 13px !important;
        flex-direction: column;
    }
    h4.mob-h4 {
        margin: 13px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    color: #f82908;
        display: block !important;
        
    }
    .hero h1 span{
        font-size: 49px !important;
    }
    .header-wrap h4{
        display: none;
    }
    .logo img {
        height: 66px;
    }
    header .call{
        font-size: 13px;
        padding: 10px 15px;
    }
    .disclamier p {
        font-size: 13px !important;
    }
    .disclamier{
        padding: 15px 0 !important;
    }
    .cta h2{
        font-size: 26px;
    }
    .counter-box h2{
        font-size: 32px;
    }
    .counter-box{
        padding: 15px !important;
        border-radius: 10px !important; 
    }
    .counter-grid {
        grid-template-columns: repeat(auto-fit, minmax(46%, 1fr)) !important;
        gap: 10px !important;
    }
    .hero .hero-form{
        display: none;
    }
    .mob .hero-form{
        display: block !important;
    }
    .hero-btns{
        justify-content:center;
    }
    .hero p{
        color: #d3d3d3;
    }
    .hero h1{
        font-size: 32px;
    }
  .hero-grid,.about-grid{grid-template-columns:1fr;gap: 15px;}
  .hero{text-align:center}
}
.hero-points li i{
    display: inline-flex;
    min-height: 20px;
    min-width: 20px;
    background: #34b15f;
    color: #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
.hero-form p {
    font-size: 15px;
    color: #6e6e6e;
    text-align: center;
    margin-top: 0;
}
.hero-form small {
    text-align: center;
    display: block;
    font-weight: 600;
    color: #0ac322;
}

.hero-form small i {
    background: #0ac322;
    color: #fff;
    border-radius: 100px;
    min-width: 15px;
    height: 15px;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.counter-section{
    padding: 30px 0 30px;
    background: #2e8b57;
  }
  .counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
  }
  .counter-box{
    background:#f7fdf9;
    padding:35px 20px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
  }
  .counter-box h2{
    font-size:42px;
    color:#2e8b57;
    font-weight:700;
  }
  .swiper-wrapper{
    padding-bottom: 40px;
  }
  .swiper-pagination-bullet{
    background:#2e8b57;
    opacity:0.5;
  }
  .swiper-pagination-bullet-active{
    opacity:1;
  }
  .courses{padding:90px 0;background:#f7fdf9}

.course-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.1);
  transition:.3s;
  height:100%;
}

.course-card:hover{transform:translateY(-6px)}

.course-card img{
  width:100%;
  /* height:220px; */
  object-fit:cover;
}

.course-body{padding: 20px;}

.course-body h4{margin-bottom:10px;font-size: 20px;font-weight: 700;}

.course-body p{font-size:14.5px;color:#555}

.course-body ul{list-style:none;padding:0;margin:15px 0}

.course-body ul li{
  font-size:14px;
  margin-bottom:6px;
}
.btn:hover {
    color: #000;
    background-color: #fff;
    border-color: var(--bs-btn-hover-border-color);
}

.course-body ul i{color:#2e8b57;margin-right:6px}

.course-btns{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.call-btn{
  background:#000;
  color:#fff;
  flex:1;
}

.whatsapp-btn{
  background:#25D366;
  color:#fff;
  flex:1;
}

.enquire-btn{
  background:#2e8b57;
  color:#fff;
  width:100%;
}
ul.hero-points {
    padding-left: 0;
}
section.cta img {
    width: 200px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}
section.cta .hero-btns {
    /* text-align: center; */
    display: flex;
    justify-content: center;
}

section.cta .hero-btns a {
    border: 3px solid #ffffff;
}

.disclamier {
    background: #ffffff14;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 17px;
    border: 1px solid #ffffff2b;
}

.copyright {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.mob .hero-form{
    display: none;
}
img.logo2 {
    width: 92px;
}

.header-wrap h4 {
    width: 50%;
    text-align: center;
    color: #f82908;
    font-size: 20px;
    font-weight: 700;
}
.hero h1 span {
    display: block;
    font-size: 58px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000000;
}.address {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    background: #217b40;
    border-radius: 100px;
    border: 1px solid #22a35b;
    padding: 2px 30px;
}
h4.mob-h4 {
    display: none;
}
.copyright p a {
    color: #ffffff;
    font-weight: 700;
}


a.payment-btn {
    background: #dc3545;
    color: #fff;
    width: 100%;
}
textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--bs-body-color);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  transition: all 0.3s ease;
}

/* Placeholder */
textarea::placeholder {
  color: #999;
  font-size: 14px;
}

/* Focus State */
textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

/* Hover */
textarea:hover {
  border-color: #999;
}

/* Disabled */
textarea:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
span.iti__country-name {
    display: none;
}
.other-select {
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    padding: 9px 10px;
    display: block;
    width: 100%;
    margin-bottom: .7rem;
}