body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
}

.logo {
  width: 60px;
  height: 60px;
}

.divider {
  width: 2px;
  height: 50px;
  background-color: #0A7538;
  margin-left: 15px;
}

h1 {
  font-size: 1.8rem;
  color: #0A7538;
  margin: 0;
  text-align: center;
  flex: 1;
}

.navbar {
  background-color: #0A7538;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-right: 20px;
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px;
  position: relative;  /* needed for the underline */
}

/* Add underline on hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #fff;       /* White background */
  min-width: 160px;
  z-index: 1;
  border-radius: 4px;           /* optional: rounded corners */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);  /* optional: subtle shadow */
}

.nav-links .dropdown-content li a {
  color: #0A7538;               /* Green text */
  padding: 10px;
  text-decoration: none;
  display: block;
}

.nav-links .dropdown-content li a:hover {
  background-color: #0A7538;    /* Green background on hover */
  color: #fff;                  /* White text on hover */
}


.nav-links .dropdown-content li {
  margin: 0;
}

.nav-links .dropdown-content a {
  display: block;
  padding: 10px;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #fff;
  min-width: 160px;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  list-style: none;         /* REMOVE BULLETS */
  padding: 0;               /* Remove default padding */
  margin: 0;                /* Remove default margin */
}



.nav-buttons button {
  background-color: #fff;
  color: #0A7538;
  border: none;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 1s ease-in-out; /* smooth fade */
}

.hero-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  text-align: center;
  max-width: 800px;
}

.hero-overlay h2 {
  color: #0A7538;
  font-size: 2rem;
}

.hero-buttons {
  margin-top: 20px;
}

.hero-buttons button {
  background-color: #0A7538;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 1rem;
  position: relative;                 /* Needed for the underline */
  transition: transform 0.3s ease;    /* Smooth zoom */
  overflow: hidden;                   /* Prevent underline overflow */
}

/* Hover state: scale and underline */
.hero-buttons button:hover {
  transform: scale(1.1);
}

/* Create underline with ::after */
.hero-buttons button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px; /* distance from bottom of button */
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

/* Expand underline on hover */
.hero-buttons button:hover::after {
  width: 100%;
}


.courses-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.courses-title {
  font-size: 2.5rem;
  color: #0A7538;
  margin-bottom: 40px;
}

.courses-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background-color: #fff;
  border-radius: 8px;
  width: 30%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 1.5rem;
  color: #0A7538;
  margin-bottom: 10px;
}

.course-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.load-more {
  margin-top: 20px;
  background-color: #0A7538;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.load-more:hover {
  transform: scale(1.05);
}

.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border: 8px solid #333;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  color: #0A7538;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.footer {
  background-color: #0A7538;
  color: white;
  padding: 60px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.apply-btn {
  background-color: #fff;
  color: #0A7538;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.apply-btn:hover {
  transform: scale(1.05);
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: white;
  font-size: 1rem;
}

.footer-links .icon {
  width: 16px;
  height: 16px;
  fill: white;
  flex-shrink: 0;
}

/* ---------- Contact‑Us Hero ---------- */
.contact-hero {
  /* Use any image 1920×300‑ish */
  background: url("assets/contactbg.png") center/cover no-repeat;
  min-height: 280px;          /* matches screenshot height */
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* text on the right */
  padding: 0 5%;              /* some side breathing room */
}

.contact-hero__overlay {
  text-align: right;
}

.contact-hero h1 {
  margin: 0;
  font-size: 3rem;            /* adjust for smaller screens if needed */
  color: #0b6ec9;             /* blue heading */
  font-weight: 700;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #222;
}

.breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.breadcrumb .arrow {
  margin: 0 6px;
  color: #666;
}
/* ------------------------------------ */

/* ====== Google Map Section ====== */
.map-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.map-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}


.contact-message-section {
  background-color: #f5f5f5;
  text-align: center;
  padding: 50px 20px;
}

.contact-message-section h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
}

.contact-message-section h1 {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin-bottom: 40px;
}

.contact-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.contact-box {
  max-width: 280px;
  text-align: center;
}

.contact-box svg {
  margin-bottom: 10px;
}

.contact-box h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #111;
}

.contact-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
}

.form-left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-right {
  flex: 1 1 55%;
  padding-left: 30px; /* Adjust value as needed */
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.form-button button {
  background-color: #1976d2;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.form-button button:hover {
  background-color: #0f5fb3;
}

.image-section {
  text-align: center;
  margin-top: 40px;
}

.yoga-image {
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.yoga-paragraph {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.yoga-paragraph h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.gov-links-section {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.gov-links-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.gov-links-container a img {
  max-height: 150px;
  transition: transform 0.3s ease;
}

.gov-links-container a:hover img {
  transform: scale(1.05);
}
