/* -------------------- Global Reset -------------------- */
/* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* -------------------- Header Layout -------------------- */

/* -------------------- Header -------------------- */
/*.main-header {
  background-color: #006039;
  color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  height: 40px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li {
  position: relative;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  white-space: nowrap;
}*/

/* Custom Expert Dropdown Grid */
/*.expert-dropdown {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  width: max-content;
  min-width: 280px;
  padding: 20px;
}

.expert-dropdown a {
  color: #005e3a;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
}

.expert-dropdown a:hover {
  text-decoration: underline;
  color: #00796b;
}*/

/* -------------------- Dropdown -------------------- */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  color: #333;
  min-width: 200px;
  border: 1px solid #ccc;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.dropdown-button,
.dropdown-button-header {
  color: white;
  font-weight: 500;
  cursor: pointer;
}

.dropdown-menu li a {
  padding: 5px 10px;
  color: #333;
  display: block;
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}


/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    background-color: #006039;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: none;
  }

  .main-nav ul.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
  }
}

/* -------------------- Navigation -------------------- */



/* -------------------- CTA Button -------------------- */
/*.expert-button,
.cta-button {
  background-color: #00796b;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  border: none;
}

.expert-button:hover,
.cta-button:hover {
  background-color: #005f53;
}*/

/* -------------------- Hero Section -------------------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background: #f0f4ff;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #1a1a1a;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #006039;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-buttons a {
  background-color: #00796b;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.hero-buttons a.secondary {
  background: #e0f2f1;
  color: #00796b;
}

.hero-buttons a:hover {
  background-color: #005f53;
}

.video-box {
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.video-box video {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Bullet Points inside Hero */
.points {
  list-style: disc;
  margin: 24px 0 16px;
  padding-left: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Stats below points */
.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 1.1rem;
  color: #006039;
  margin-top: 10px;
}


/* -------------------- Services -------------------- */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: 20px 10%;
  justify-content: center;
}

.service-item {
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 10px;
  transition: transform 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.service-item button {
  background-color: #00796b;
  color: white;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-item button:hover {
  background-color: #005f53;
}



/* -------------------- Experts -------------------- */
.experts-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 10%;
}

/* -------------------- Footer -------------------- */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* -------------------- Utility -------------------- */
.section-title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 2rem;
  font-weight: 600;
}

