/* index-css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background-color: #f9f9f9;
}

/* Header */
.top-header {
  background-color: white;
  border-top: 6px solid #4fc154;
  border-bottom: 3px solid #4fc154;
  min-height: 120px;
  padding: 20px 60px;
  padding-bottom: 0px;
  padding-top: -30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.top-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.top-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 75px;
}

.contact-area {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4fc154;
  font-weight: 600;
}

.contact-item .icon {
  width: 30px;
  height: 30px;
  border: 2px solid #4fc154;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.get-involved {
  padding: 6px 18px;
  border: 2px solid #4fc154;
  border-radius: 20px;
  color: #4fc154;
  font-weight: 600;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-involved:hover {
  background-color: #4fc154;
  color: white;
}

/* Navigation Bar */
.nav-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -25px;
  margin-bottom: -25px;
}

.nav-bar {
  background-color: #4fc154;
  padding: 10px 40px;
  border-radius: 50px;
  width: 80%;
  max-width: 700px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-bar a {
  color: white;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-bar a:hover {
  text-decoration: underline;
}

.icon i {
  font-size: 16px;
  color: #4fc154;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 115vh;
  background: url('assets/img/slider/slider_img_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  /* Aligns content to the top */
  justify-content: center;
  /* Horizontally center the content */
  padding: 40px 20px;
  padding-top: 120px;
  /* Top space for breathing room */
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  justify-content: flex-start;
  /* Stack from top */
}

.hero-logo {
  width: 360px;
  height: auto;
  margin-top: -50px;
  /* Pulls the logo upward */
  margin-bottom: -20px;
  /* Space below the logo */
}


.hero-content h3 {
  font-size: 50px;
  color: #4fc154;
  margin-bottom: 20px;
}

.hero-content h4 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1em;
  color: #212121;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}

.cta-btn {
  background-color: transparent;
  color: #4fc154;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid #4fc154;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #4fc154;
  color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 20px 30px;
  }

  .top-left,
  .top-center,
  .top-right {
    justify-content: center;
    width: 100%;
  }

  .contact-area {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .nav-bar {
    gap: 20px;
    padding: 15px 30px;
    width: 90%;
  }

  .hero-section {
    padding-top: 80px;
  }

  .hero-content h3 {
    font-size: 36px;
  }
}

/* index-css-end */
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* Header Styling */
.modern-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
  z-index: 999;
}

/* Header Container */
.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  flex-wrap: wrap;
  position: relative;

  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  max-width: 250px;
  height: 50px;
}

/* Navigation */
.main-nav {
  flex: 1;
  text-align: right;
  background: transparent !important;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle .bar {
  width: 30px;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;

  background: transparent !important;
  box-shadow: none !important;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 10px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #2E7D32;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: #333;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #2E7D32;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-container {
    padding: 15px 20px;
  }

  .logo-img {
    max-width: 50px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .main-nav {
    width: 100%;
    margin-top: 15px;
    text-align: left;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
    padding: 0;
  }

  .dropdown-menu li a {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 40px;
  }

  .brand-name {
    font-size: 18px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    max-width: 35px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-links {
    gap: 15px;
  }

  .main-nav {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}