/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding-top: 70px;
  overflow-x: hidden;
}

/* Brand Color */
:root {
  --brand-green: #064420;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand-green);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  height: 60px;
  padding: 0 20px;
}

.nav-logo img {
  height: 45px;
  display: block;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  padding: 8px 12px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px 30px;
  background: #e9f5ec;
}

.hero img.logo {
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero h1 {
  color: var(--brand-green);
  font-size: 2.5em;
  margin: 10px 0;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero .btn.whatsapp {
  background: var(--brand-green);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.hero .btn.whatsapp:hover {
  background: #046c2c;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

/* About Section Paragraph Spacing */
  #about p {
  margin-bottom: 20px; /* Adjust spacing as needed */
}

h2 {
  color: var(--brand-green);
  margin-bottom: 20px; /* Adjust spacing as needed */
  line-height: 1.6;    /* Improves readability */
  font-size: 2em;
}

.alt-bg {
  background: #f1f8f4;
  border-radius: 12px;
  padding: 30px;
}

/* Lists */
ul {
  list-style: disc inside;
  margin-top: 10px;
}

/* Case Studies */
.case-study {
  background: white;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  line-height: 1.6;
}

.case-study h3 {
  color: var(--brand-green);
  margin-bottom: 15px;
  font-size: 1.6em;
}

.case-study h4 {
  color: var(--brand-green);
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.case-study p {
  margin-bottom: 15px;
}

.case-study ul {
  margin: 10px 0 15px 20px;
}

.case-study ul li {
  margin-bottom: 8px;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cert-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cert-card h3 {
  color: var(--brand-green);
  margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Contact */
#contact a {
  color: var(--brand-green);
  font-weight: bold;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--brand-green);
  color: white;
  text-align: center;
  padding: 15px;
}

footer a {
  color: #ccebd7;
  text-decoration: none;
}
/* Footer Social Links - Force each link onto its own line */
footer .social a {
  display: block;
  margin: 5px 0;
  color: #ccebd7;
  text-decoration: none;
}

footer .social a:hover {
  text-decoration: underline;
  color: white;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--brand-green);
  color: white;
  font-size: 1.5em;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin-left: 10px;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--brand-green);
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease; /* Smooth slide */
  }

  .nav-links.active {
    max-height: 500px; /* enough to show all links */
  }

  .nav-links a {
    padding: 12px;
    font-size: 1.1em;
  }
}
