* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

img, iframe, video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 100px;
  height: 100px;
  /* border-radius: 50%; */
}

.logo h1 {
  color: #0a8a42;
  font-size: 22px;
  font-weight: 700;
}

/* Navbar */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #0a8a42;
}

/* Toggle Button (hidden by default on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #0a8a42;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
  }
.logo h1{
    display: none;
}
  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    text-align: center;
  }

  .navbar.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

 .navbar .dropdown-menu {
        width: 100%; /* take full screen width */
        position: static; /* avoid going off screen */
    }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero Section (Slider) */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* Background image for each slide */
.hero-content img {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

/* Overlay effect */
.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness */
  z-index: -1;
}

/* Active slide */
.hero-content.active {
  opacity: 1;
  z-index: 1;
}

/* Hero Text Styling */
.hero-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.4);
}


.btn {
  background: linear-gradient(90deg, #0a8a42, #ffcc00);
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 18px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  /* margin-left: 50px; */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content .tagline {
  color: #f7c600; /* yellow highlight */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about-content h2 {
  color: #2a7b4f; /* green theme */
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #ffcc00;
}

.about-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.about-content .btn {
  background: linear-gradient(135deg, #2a7b4f, #84e184);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-content .btn:hover {
  background: linear-gradient(135deg, #1f5738, #66cc66);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 350px;
  }
}


/* Services Section */
.services {
  background: #ffffff; /* soft greenish white */
  padding: 100px 0;
  text-align: center;
}

.services h2 {
  color: #2a7b4f; /* green tone */
  font-size: 2.2rem;
  margin-bottom: 50px;
  position: relative;
}


.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.box h3 {
  color: #2a7b4f;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .services {
    padding: 70px 20px;
  }

  .services h2 {
    font-size: 1.9rem;
  }

  .box img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .services h2 {
    font-size: 1.7rem;
  }

  .box {
    padding: 20px;
  }

  .box img {
    height: 180px;
  }

  .box h3 {
    font-size: 1.15rem;
  }

  .box p {
    font-size: 0.95rem;
  }
}
/* Coach Section */
.coach {
  background: rgb(211, 247, 204);
  padding: 100px 0;
  text-align: center;
}

.coach-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.coach-info h2 {
  color: #2a7b4f; /* green tone */
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.coach-info h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f7c600; /* yellow highlight */
  margin: 12px auto 0;
  border-radius: 2px;
}

.coach-info p {
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 20px 0 35px;
  max-width: 700px;
}

.coach-btns .btn {
  background: linear-gradient(135deg, #2a7b4f, #84e184);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.coach-btns .btn:hover {
  background: linear-gradient(135deg, #1f5738, #66cc66);
}

/* Responsive */
@media (max-width: 768px) {
  .coach {
    padding: 80px 20px;
  }

  .coach-info h2 {
    font-size: 1.7rem;
  }

  .coach-info p {
    font-size: 1rem;
  }

  .coach-btns .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .coach-info h2 {
    font-size: 1.5rem;
  }

  .coach-info p {
    font-size: 0.95rem;
  }
}

/* spl Awarness section */
.special-awareness {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* Image with Fixed Position */
.awareness-img img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2; /* behind overlay and content */
}

/* Dark overlay for readability */
.awareness-img .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(38, 97, 53, 0.5); /* semi-transparent black */
  z-index: -1;
}

/* Text Content Styling */
.awareness-content {
  max-width: 600px;
  padding: 20px;
}

.awareness-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #17462a;
}

.awareness-content .highlight {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.awareness-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

    .image-awareness-session {
        display: none !important;
    }   
  .awareness-content h2 {
    font-size: 2rem;
  }

  .awareness-content .highlight {
    font-size: 1rem;
  }

  .awareness-content p {
    font-size: 0.95rem;
  }

  .special-awareness {
    height: 50vh;
  }

  .awareness-img img,
  .awareness-img .overlay {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .awareness-content h2 {
    font-size: 1.5rem;
  }

  .awareness-content .highlight {
    font-size: 0.9rem;
  }

  .awareness-content p {
    font-size: 0.85rem;
  }

  .special-awareness {
    height: 40vh;
  }

  .awareness-img img,
  .awareness-img .overlay {
    height: 40vh;
  }
}

/* Why Choose Us Section */
.whychoose {
  padding: 40px 20px;
  background-color: #f8f9fa; /* soft background */
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #333;
  height: 70vh; /* fixed height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically */
}

.whychoose h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.whychoose .tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.whychoose .content {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px; /* small spacing between lines */
  display: inline-block; /* single line layout */
  white-space: nowrap; /* prevent line break */
}

/* Responsive */
@media (max-width: 768px) {
  .whychoose h2 {
    font-size: 2rem;
  }

  .whychoose .tagline {
    font-size: 1rem;
  }

  .whychoose .content {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .whychoose h2 {
    font-size: 1.7rem;
  }

  .whychoose .tagline {
    font-size: 0.9rem;
  }

  .whychoose .content {
    font-size: 0.9rem;
  }
}




/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

/* Background layer */
.contact-section .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05);
    z-index: 1;
}

/* Container */
.contact-section .auto-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Row flex */
.contact-section .row.clearfix {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left Form Column */
.contact-section .form-column {
    flex: 1; /* left side takes 1 part */
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-section .form-inner h3 {
    color: #215733;
    margin-bottom: 20px;
}

.contact-section .form-column input.box,
.contact-section .form-column textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Captcha styling */
.contact-section .captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section .captcha-img,
.form-column img.box {
    height: 40px;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit button */
.contact-section .theme-btn.btn-one {
    width: 100%;
    padding: 12px;
    background: goldenrod;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section .theme-btn.btn-one:hover {
    background: darkgoldenrod;
}

/* Right Map Column */
.contact-section .video-column {
    flex: 1; /* right side takes 1 part */
    min-width: 300px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-section .video-column iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Responsive: mobile view */
@media (max-width: 768px) {
    .contact-section .row.clearfix {
        flex-direction: column; /* stack form & map */
    }

    .contact-section .video-column {
        height: 400px;
        margin-top: 20px;
    }
}
/* footer */
/* Footer Section */
.main-footer {
  background-color: rgb(8, 19, 14);
  color: #fff;
  padding: 60px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
}

/* Footer Columns Layout */
.main-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Widget Titles */
.main-footer h3 {
  color: goldenrod;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.main-footer h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fff;
}

/* Links List */
.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li {
  margin-bottom: 10px;
}

.links-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.links-list li a:hover,
.links-list li a.active {
  color: goldenrod;
}

.contact-widget .widget-content {
    color: #fff; /* all text white */
}

.contact-widget .contact-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-widget .info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-widget .info li i {
    color: goldenrod; /* icon color */
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-widget .info li a {
    color: #fff; /* links white */
    text-decoration: none;
}

.contact-widget .info li a:hover {
    color: goldenrod;
}
/* QR Code */
.about-widget .widget-content img {
  max-width: 150px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #ccc;
}

.footer-bottom a {
  color: goldenrod;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .main-footer .row {
    flex-direction: column;
    align-items: start;
    text-align: start;
  }

  .main-footer h3 {
    text-align: start;
  }

  .contact-widget .info li {
    justify-content: start;
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .about-widget .widget-content img {
    max-width: 120px;
  }

  .links-list li a,
  .contact-widget .info li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .main-footer h3 {
    font-size: 1rem;
  }

  .main-footer h4 {
    font-size: 0.9rem;
  }
}