/* ROOT COLORS */
:root {
  --primary: hsl(142, 71%, 45%);
  --secondary: hsl(45, 93%, 54%);
  --muted: hsl(220, 9%, 46%);
  --light-bg: hsl(140, 25%, 96%);
  --gradient: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(45, 93%, 54%));
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 20px;
  --transition: 0.35s ease;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ----------------------- */
/* HEADER */
/* ----------------------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 55px;
}

.nav-buttons a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
  color: #606060;
  font-weight: 500;
  transition: var(--transition);
}

.nav-buttons a:hover,
.nav-buttons .active {
  color: var(--primary);
  font-weight: 600;
}

/* ----------------------- */
/* HERO */
/* ----------------------- */
.hero-section {
  padding: 160px 20px 80px;
  text-align: center;
  background: hsl(45, 75%, 63%);
}

.client-pic {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
}

/* ----------------------- */
/* GENERAL SECTION */
/* ----------------------- */
.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* ----------------------- */
/* ABOUT STORY */
/* ----------------------- */
.about-story p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
}

.about-story strong {
  color: var(--primary);
}

/* ----------------------- */
/* MISSION */
/* ----------------------- */
.mission-section {
   background: hsl(142, 71%, 40%); 
  color: #fff;
  border-radius: 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* ----------------------- */
/* APPROACH */
/* ----------------------- */
.approach-section h2 {
  font-size: 36px;
  color: var(--primary);
}

.approach-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.approach-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.approach-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.approach-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary);
}

.approach-bottom-text {
  margin-top: 40px;
  font-size: 18px;
  color: var(--muted);
}

/* ----------------------- */
/* WOMEN EMPOWERMENT */
/* ----------------------- */
.women-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.women-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.women-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 500;
  transition: var(--transition);
}

.women-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.quote {
  font-style: italic;
  text-align: center;
  font-size: 20px;
  color: var(--secondary);
  margin-top: 30px;
}

/* ----------------------- */
/* GLOBAL VISION */
/* ----------------------- */
.global-vision {
  background: var(--gradient);
  text-align: center;
  color: white;
  border-radius: 0;
}

.global-vision h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

/* ----------------------- */
/* VALUES */
/* ----------------------- */
.values-section h2 {
  font-size: 38px;
  color: var(--primary);
}

.values-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.value-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 20px;
  font-weight: 600;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ----------------------- */
/* COMMITMENT */
/* ----------------------- */
.commitment-section {
  background: var(--gradient);
  color: #fff;
  text-align: center;
}

.commitment-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.commitment-section p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* ----------------------- */
/* IMPACT */
/* ----------------------- */
.impact-section h2 {
  font-size: 36px;
  color: hsl(45, 93%, 54%);
  margin-bottom: 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.impact-card {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
/* Footer Section */
.footer {
  background: hsl(220, 14%, 95%);
  padding: 40px 20px 30px; /* reduced top/bottom padding */
  color: hsl(220, 14%, 28%);
  font-size: 16px;
}

.footer-container {
  max-width: 900px; /* reduced container width */
  margin: auto;
}

.footer h3 {
  font-size: 22px; /* smaller heading */
  font-weight: 700;
  margin-bottom: 25px; /* reduced space below heading */
}

/* Logo + Title Layout */
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 12px; /* smaller gap */
  margin-bottom: 30px; /* reduced space below */
}

.footer-logo {
  width: 40px; /* smaller logo */
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; /* slightly smaller gap between columns */
  margin-bottom: 30px; /* reduced bottom margin */
}

.footer-column h4 {
  font-size: 18px; /* slightly smaller */
  font-weight: 600;
  margin-bottom: 12px;
}

/* Links styling */
.footer-column a {
  display: block;
  text-decoration: none;
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

/* Plain text styling */
.footer-column p {
  display: block;
  font-size: 16px; /* match link size */
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
}

/* Footer copyright */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Social icons in one line */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  display: block;
}
/* -------------------------------------------------- */
/* RESPONSIVENESS – ADD THIS AT THE END OF THE FILE   */
/* -------------------------------------------------- */

/* Medium Devices – Tablets (max-width: 992px) */
@media (max-width: 992px) {

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-buttons a {
    margin-left: 10px;
    font-size: 15px;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .client-pic {
    width: 200px;
    height: 200px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .approach-grid,
  .women-grid,
  .values-grid,
  .impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Small Devices – Large Phones (max-width: 768px) */
@media (max-width: 768px) {

  /* HEADER */
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-buttons a {
    margin: 0;
    font-size: 14px;
  }

  /* HERO */
  .hero-section {
    padding: 140px 20px 60px;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 16px;
  }

  /* TEXT */
  .about-story p,
  .mission-section p,
  .approach-bottom-text,
  .women-section p,
  .commitment-section p {
    font-size: 16px;
  }

  /* GRID SECTIONS */
  .approach-grid,
  .women-grid,
  .values-grid,
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo-box {
    justify-content: center;
  }
}

/* Extra Small Devices – Phones (max-width: 576px) */
@media (max-width: 576px) {

  /* HEADER */
  .nav-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .nav-buttons a {
    font-size: 14px;
  }

  /* HERO */
  .client-pic {
    width: 160px;
    height: 160px;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  /* CONTENT WIDTH */
  .container {
    padding: 0 15px;
  }

  /* SINGLE COLUMN GRIDS */
  .approach-grid,
  .women-grid,
  .values-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Very Small Devices (max-width: 420px) */
@media (max-width: 420px) {

  .hero-section h1 {
    font-size: 22px;
  }

  .nav-buttons a {
    font-size: 13px;
  }

  .client-pic {
    width: 140px;
    height: 140px;
  }
}
