/* --- Reset & Base --- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}
img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --green: #11B176;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --section-pad: 5rem 0;
}

/* --- Utilities --- */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.center { text-align: center; }
.grid { display: grid; gap: 2rem; }
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover { opacity: 0.85; }
.btn--secondary { background: var(--black); }

/* --- Navbar --- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 999;
}
.logo { font-weight: 600; letter-spacing: -0.5px; }
.logo span { color: var(--green); }
.nav-list { display: flex; gap: 1.5rem; }
.nav-list a { padding: 1.5rem 0; font-weight: 500; }
.nav-list a:hover { color: var(--green); }

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image img {
  height: 180px;
  width: auto;
}

@media (max-width: 760px) {
  .logo {
    font-size: 1.2rem; 
  }
.logo-image img {
  height: 160px;
  width: auto;
}
}

/* --- Hero --- */
.hero {
  position: relative;
  background-color: #f4f4f4;
  padding: 4rem 0;
}


.hero-content.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 48%;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #218838;
}


.hero-video {
  flex: 1 1 48%;
}

.hero-video video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
  }

  .hero-text,
  .hero-video {
    flex: 1 1 100%;
  }
}
/* --- About --- */
.about { padding: var(--section-pad); }
.about .grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.about-img img { border-radius: 12px; }
.about-text h3 { color: var(--green); margin-bottom: 1rem; text-align: justify; }
.highlight { font-weight: 600; margin-top: 1rem; }

/* --- Mission --- */
.mission { padding: var(--section-pad); }
.mission .grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.mission-img img { border-radius: 12px; }
.mission-text h3 { color: var(--green); margin-bottom: 1rem; text-align: justify; }
.highlight { font-weight: 600; margin-top: 1rem; }

/* --- Commitment --- */
.services { background: #F8F8F8; padding: var(--section-pad); }
.section-title { color: var(--green); margin-bottom: 2.5rem; }
.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card { background: var(--white); border-radius: 12px; box-shadow: 0 4px 25px rgba(0,0,0,0.04); padding: 2rem 1.5rem; }
.card h4 { margin: 1rem 0 0.6rem; color: var(--green); }

/* --- Contact --- */
.contact { padding: var(--section-pad); }
.contact .grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.contact-info h3 { margin-bottom: 1rem; color: var(--black); }
.contact-details li { margin-top: 0.5rem; }
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--green); }

/* --- Footer --- */
.footer { background: var(--black); color: #BFBFBF; padding: 1.5rem 0; font-size: 0.9rem; }
.footer p { letter-spacing: 0.3px; }