
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 1.5px;
}

:root {
  --primary-color: #2e8b57;
  --secondary-color: #1a5d1a;
  --accent-color: #ffd700;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
}

body {
  background-color: #ffffff;
  line-height: 1.6;
  color: var(--dark-color);
  padding-top: 60px;
  
}

/* Header and Navigation */
.header {
  background-color: var(--light-color);
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: nowrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  color: #3e9db5;
  align-items: center;
  gap: 5px;
}
.logo img {
  width: 50px;
}
.logo p {
  font-size: 0.8rem;
  width: 140px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--light-color);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 0.8rem 1.5rem;
  color: var(--dark-color);
  display: block;
  transition: all 0.3s;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  padding-left: 2rem;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}





/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 1rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  text-align: left;
  color: #d9e137;
  margin-bottom: 1.5rem;
}
.footer-section img{
  border-radius: 50%;
  width: 120px;

}
.footer p {
  text-align: center;
}

.footer-links {
  list-style: none;
  line-break: anywhere;
}


.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}



/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
  }

  .mobile-menu {
    display: block;
  }

}
.polices-links h4{
  color: #2e7d32;
  font-weight: bold;
}
.polices-links a:hover{
  color:#2e7d32 ;
}
.polices-links{
  display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
}
.polices-links a{
text-decoration: none;
text-align: center;
padding: 0 10px;
}
@media (max-width: 768px) {
  body{
    padding-top: 20px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
  }

  .mobile-menu {
    display: block;
  }


}

@media (max-width: 480px) {
 
}
