


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  
  --green:       #1a4a2e;
  --green-dark:  #0f2d1c;
  --green-mid:   #246338;
  --gold:        #c9960c;
  --gold-light:  #f0b429;
  --white:       #ffffff;
  --off-white:   #f8f6f1;
  --gray:        #666;
  --light-gray:  #f0eeea;
  --text:        #1e1e1e;
  --border:      #e0ddd7;
}

html { scroll-behavior: smooth; } 


body {
  
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: var(--white);
  padding-top: 5rem;
}



.site-header {
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #12513D;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}


.page-container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}


.brand img {
  height: 54px;
  width: auto;
}


.nav-toggle {
  display: none;
}


.nav-burger {
  display: none;
  width: 2rem;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}


.nav-burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease;
}

.nav-burger span:nth-child(1) { top: 0.45rem; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 0.45rem; }


.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}


.main-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,

.main-nav a.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
}


.header-actions {
  display: flex;
}

.button-primary,

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}


.button-primary {
  background: var(--gold);
  color: #ffffff;
}

.button-primary:hover,

.button-primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-1px);
}


.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.9);
  background: transparent;
}



.hero {
  
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 24px 5%;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.35);
}


.hero-bg {
  position: absolute;
  inset: 0;
  
  background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1600&q=80') center/cover no-repeat;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,38,20,0.88) 45%, rgba(10,38,20,0.5) 100%);
}


.hero-provider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  
  background: url('images/Rectangle 7.png') center / contain no-repeat;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: 0 0 10px 10px;
  z-index: 3;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}


.hero-badge-white {
  display: inline-block;
  background: #ffffff;
  color: #1c1c1c;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 25px;
  margin-bottom: 18px;
}


.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-light);
  display: block;
}


.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 30px;
  max-width: 480px;
}


.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


.btn-gold {
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: scale(1.03); }


.btn-outline-white {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}
.btn-outline-white:hover { background: var(--gold-light); color: white; }


.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 24px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}
.btn-outline-green:hover { background: var(--green); color: white; }


.btn-green {
  background: var(--green);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}
.btn-green:hover { background: var(--green-dark); }


.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-whatsapp:hover { background: #1db954; }


section { padding: 64px 5%; }


.section-tag {
  display: inline-block;
  background: rgba(201,150,12,0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}


.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}


.section-sub {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  max-width: 580px;
}

.center { text-align: center; }
.center .section-sub { margin: 0 auto; }


.demo-section { background: var(--white); }


.demo-features {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}


.demo-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  background: white;
}


.demo-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}


.demo-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,150,12,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,150,12,0.2);
}


.demo-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}


.demo-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}


.attend { background: var(--off-white); }


.attend-grid {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}


.attend-card {
  background: white;
  border-radius: 14px;
  padding: 26px 20px 20px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}


.attend-card:hover {
  box-shadow: 0 8px 26px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}


.attend-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}


.attend-icon {
  font-size: 20px;
}


.attend-card-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}


.attend-course-list {
  list-style: none;
}


.attend-course-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--light-gray);
}


.attend-course-list li:last-child {
  border-bottom: none;
}


.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 10px;
  white-space: nowrap;
}

.badge-green  { background: rgba(26,74,46,0.1);  color: var(--green); }
.badge-red    { background: rgba(220,53,69,0.1);  color: #dc3545; }
.badge-blue   { background: rgba(13,110,253,0.1); color: #0d6efd; }
.badge-orange { background: rgba(201,150,12,0.15); color: var(--gold); }
.badge-teal   { background: rgba(0,180,160,0.1);  color: #00b4a0; }
.badge-yellow { background: rgba(255,193,7,0.15); color: #c07000; }
.badge-purple { background: rgba(111,66,193,0.1); color: #6f42c1; }

.attend-card .btn-gold,

.attend-card .btn-outline-green {
  margin-top: 18px;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
}



.admission-banner {
  background: linear-gradient(100deg, var(--green-dark), var(--green-mid));
  border-radius: 16px;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 5% 0;
}


.admission-banner h3 {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}


.admission-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}


.btn-enquire {
  background: white;
  color: var(--green);
  border: none;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-enquire:hover { background: var(--gold-light); color: white; }


.path { background: var(--white); }


.steps-grid {
  display: flex;
  gap: 0;
  margin-top: 44px;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}


.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
  position: relative;
}


.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--gold-light);
  z-index: 1;
}


.step-num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(201,150,12,0.4);
}


.step-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 5px;
}


.step-item p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 120px;
}


.batches { background: var(--off-white); }


.batches-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}


.limited-badge {
  display: inline;
  color: #dc3545;
  font-weight: 700;
  font-size: 13px;
}


.inquire-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.inquire-link:hover { text-decoration: underline; }


.batches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.batch-card {
  background: white;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}


.batch-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}


.batch-icon {
  font-size: 28px;
  margin-bottom: 10px;
}


.batch-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}


.batch-time {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}


.batch-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}



.cta-section {
  
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #2d7a50 100%);
  padding: 72px 5%;
}


.cta-grid {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}


.cta-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  line-height: 1.3;
}


.cta-left p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}


.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: 14px;
}


.cta-contact-item .icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}


.cta-form-box {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 14px 50px rgba(0,0,0,0.28);
}


.cta-form-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 22px;
}


.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


.form-group {
  margin-bottom: 14px;
}


.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,

.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  color: var(--text);
  background: white;
}


.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,

.form-group textarea:focus {
  border-color: var(--green);
}


.btn-submit-full {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-submit-full:hover { background: var(--gold-light); }


.form-note {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}

.form-note a { color: var(--gold); }



.map-section {
  position: relative;
  height: 320px;
  overflow: hidden;
  padding: 0;
}


.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) sepia(10%);
}


.map-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 14px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  min-width: 220px;
  z-index: 5;
}


.map-card .map-pin {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
}


.map-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}


.map-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}


.map-card a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.map-card a:hover { text-decoration: underline; }



.final-cta {
  background: var(--green);
  padding: 64px 5%;
  text-align: center;
}


.final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}


.final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 28px;
}


.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}



footer {
  
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 5% 24px;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}


.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 14px 0 18px;
}


.footer-logo {
  height: 46px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}


.socials {
  display: flex;
  gap: 9px;
}


.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 700;
}

.social-icon:hover { background: var(--gold); }


footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

footer ul { list-style: none; }


footer ul li {
  margin-bottom: 9px;
}


footer ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

footer ul li a:hover { color: var(--gold-light); }


.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-contact-item span:first-child { font-size: 14px; margin-top: 1px; }


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}


.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-left: 18px;
}

.footer-bottom a:hover { color: var(--gold-light); }



@media (max-width: 900px) {
  
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .nav-burger { display: block; }
  
  .main-nav {
    position: absolute;
    inset: 5rem 0 auto 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid #e5eee8;
  }
  .nav-toggle:checked + .nav-burger + .main-nav { max-height: 24rem; }
  
  .main-nav a {
    color: #102a1f;
    width: 100%;
    padding: 1rem 1.5rem;
    border-top: 1px solid #f1f5ef;
  }
  .header-actions { width: 100%; justify-content: center; }

  .demo-features    { grid-template-columns: 1fr 1fr; }
  .attend-grid      { grid-template-columns: 1fr; }
  .batches-grid     { grid-template-columns: 1fr 1fr; }
  .cta-grid         { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .form-row-2       { grid-template-columns: 1fr; }

  
  .admission-banner {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid { gap: 14px; }

  .step-item:not(:last-child)::after { display: none; }
}



@media (max-width: 600px) {
  
  .hero { min-height: auto; padding: 80px 5% 50px; }

  .demo-features  { grid-template-columns: 1fr; }
  .batches-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }

  .hero-btns      { flex-direction: column; align-items: flex-start; }
  .final-cta-btns { flex-direction: column; align-items: center; }

  .batches-header { flex-direction: column; align-items: flex-start; }
  .map-section    { height: 280px; }
}


@media (max-width: 400px) {
  .batches-grid { grid-template-columns: 1fr; }
}
