/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fafb;
  color: #333;
}
nav {
  width: 100%;
  background: #005825;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img.logo-img {
     border-radius: 20%;
  height: 50px;
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* Hover underline */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}
nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Hamburger menu (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile view */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #00732a;
    width: 220px;
    height: 100vh;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
  }

  nav ul.active { right: 0; }

  .menu-toggle { display: flex; }
}

/* Toggle animation (X) */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}









/* Hero */
.contact-hero {
  background: linear-gradient(90deg, #00380b, #bcff05);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.contact-hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.contact-hero p { font-size: 1.1rem; opacity: 0.95; }

/* Container */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.contact-form h2 {
  margin-bottom: 1rem;
  color: #003d0c;
}
.form-group { margin-bottom: 1rem; }
input, textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #004125;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.2);
}
.btn-submit {
  background: #004e0a;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover { background: #05551d; }

/* Contact Info */
.contact-info {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 12px;
}
.contact-info h2 {
  margin-bottom: 1rem;
  color: #085a00;
}
.contact-info p {
  margin-bottom: 0.7rem;
}
.contact-info a {
  color: #025844;
  text-decoration: none;
}
.contact-info i {
  margin-right: 8px;
  color: #005721;
}

/* Social Links */
.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
.social-links a {
  font-size: 1.5rem;
  color: #004e1c;
  transition: transform 0.3s, color 0.3s;
}
.social-links a:hover {
  transform: scale(1.2);
  color: #038610;
}















/* FOOTER BASE */
.footer {
  position: relative;
  background: linear-gradient(180deg, #16fe05 0%, #0e2500 100%);
  color: #fff;
  padding: 6rem 2rem 2rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('../images/Group.JPG') repeat-x;
  background-size: cover;
  z-index: 0;
}

/* Newsletter */
.footer-newsletter {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 1;
  position: relative;
}

.footer-newsletter h3 {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 5px 0 0 5px;
  border: none;
  outline: none;
  width: 250px;
}

.footer-newsletter button {
  padding: 0.6rem 1rem;
  border-radius: 0 5px 5px 0;
  border: none;
  background: #FFD700;
  color: #004080;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #FFC107;
}

/* Footer Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #f1f1f1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #FFD700;
}

/* Social Media */
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-right: 1.5rem;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.footer-social a i {
  font-size: 1.5rem;
}

.footer-social a:hover {
  color: #FFD700;
}

/* Tooltip */
.footer-social a[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #004080;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Legal Section */
.footer-legal {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-legal a:hover {
  color: #FFD700;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .footer-links ul li {
    display: inline-block;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }

  .footer-social a {
    display: block;
    margin: 0.5rem 0;
  }

  .footer-newsletter input[type="email"] {
    width: 70%;
    margin-bottom: 0.5rem;
    border-radius: 5px;
  }

  .footer-newsletter button {
    width: 50%;
    border-radius: 5px;
  }
}




