:root {
  --primary-color: #006837;
  --primary-light: #008d4c;
  --primary-dark: #004d29;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --text-color: #2c2c2c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  padding: 0.1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(0, 104, 55, 0.85) 0%,
      rgba(0, 141, 76, 0.85) 100%
    ),
    url("images/home-bg.png");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: radial-gradient(
      circle at 1px 1px,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 0
    ),
    url("images/pattern-overlay.png");
  background-size: 20px 20px, cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none; */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.btn.primary {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn.primary:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Intro Section */
.intro {
  padding: 5rem 0;
  background-color: var(--white);
  text-align: center;
}

.intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--light-gray);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(
      135deg,
      rgba(0, 104, 55, 0.9) 0%,
      rgba(0, 141, 76, 0.9) 100%
    ),
    url("images/header-bg.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.2) 1px,
    transparent 0
  );
  background-size: 30px 30px;
  opacity: 0.3;
}

.page-header h1 {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

/* Mission Section */
.mission {
  padding: 5rem 0;
  background-color: var(--white);
  text-align: center;
}

.mission h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.mission p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* What We Do Section */
.what-we-do {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.what-we-do h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.program-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.program-card h3 {
  color: var(--text-color);
}

.what-we-do p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Approach Section */
.approach {
  padding: 5rem 0;
  background-color: var(--white);
}

.approach h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.approach-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.approach-card h3 {
  color: var(--text-color);
}

/* Who We Serve Section */
.who-we-serve {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.who-we-serve h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.serve-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.serve-card:hover {
  transform: translateY(-5px);
}

.serve-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.serve-card h3 {
  color: var(--text-color);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .programs {
    grid-template-columns: 1fr;
  }

  .approach-grid,
  .serve-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Course Categories */
.course-categories {
  padding: 5rem 0;
}

.category {
  margin-bottom: 5rem;
}

.category h2 {
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2rem;
}

.category h2 i {
  margin-right: 1rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.course-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.course-icon i {
  font-size: 2rem;
  color: var(--white);
}

.course-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.course-card p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.view-more {
  text-align: center;
  margin-top: 2rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--primary-light) 1px,
    transparent 0
  );
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 1;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta .btn {
  position: relative;
  z-index: 2;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }
}

/* Products Intro */
.products-intro {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--white);
}

.products-intro h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.products-intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

/* Product Categories */
.product-categories {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.category-desc {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.product-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.product-card h3 {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
}

.product-card ul li {
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-card ul li:before {
  content: "✓";
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Product Access Steps */
.product-access {
  padding: 5rem 0;
  background-color: var(--white);
}

.product-access h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.access-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

.step h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.step p {
  color: var(--dark-gray);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .access-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Contact Details */
.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 24px;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--dark-gray);
}

/* Social Connect */
.social-connect h3 {
  margin-bottom: 1rem;
}

.social-connect .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.social-link i {
  margin-right: 0.5rem;
}

/* Contact Form */
.contact-form {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Booking Section */
.booking-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--primary-light) 1px,
    transparent 0
  );
  background-size: 30px 30px;
  opacity: 0.1;
}

.booking-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.booking-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .social-connect .social-links {
    justify-content: center;
  }

  .booking-section h2 {
    font-size: 2rem;
  }

  .booking-section p {
    font-size: 1rem;
  }
}
