
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

/* Color variables */
:root {
  --green: #4CAF50;
  --light-green: #E8F5E9;
  --dark: #111111;
  --gray: #444444;
  --light-gray: #666666;
}

/* Layout container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section padding */
.section {
  padding: 80px 0;
}

h1, h2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.5rem; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eeeeee;
  z-index: 100;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.6rem;
}

.name-meaning {
  margin-top: 32px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.mission,
.about,
.cta {
  background-color: var(--light-green);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Simple founder photo – easy to resize */
.about-photo img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: block;
}
/* Social Icons */
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
  justify-content: center; /* or flex-start for left align */
}

.social-links a {
  color: var(--gray);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--green);
  transform: scale(1.15);
}

.social-icon {
  width: 32px;
  height: 32px;
}

/* Footer socials */
footer .social-links {
  margin-top: 1rem;
  justify-content: center;
}

footer .social-links a {
  color: white;
}

footer .social-links a:hover {
  color: var(--green);
}

.metrics {
  background: white;
  text-align: center;
}

.update-note {
  font-style: italic;
  color: var(--light-gray);
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: var(--light-green);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.08);
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 1.25rem;
  color: var(--gray);
}

.cta {
  text-align: center;
  padding: 80px 0;
}

.cta form {
  max-width: 500px;
  margin: 2rem auto;
}

.cta input,
.cta textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.6rem 0;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
}

.cta button {
  background: var(--green);
  color: white;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta button:hover {
  background: #43a047;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .hero h1 { font-size: 3.2rem; }
  .hero p { font-size: 1.3rem; }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .about-photo img {
    max-width: 340px;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 6%; }
  h1 { font-size: 2.6rem; }
}

/* Brand-specific social icon colors */
.social-links a[href*="linkedin.com"] .social-icon {
  filter: brightness(0) saturate(100%) invert(23%) sepia(94%) saturate(7488%) hue-rotate(200deg) brightness(92%) contrast(101%);
  /* This filter approximates official LinkedIn blue #0A66C2 */
}

.social-links a[href*="instagram.com"] .social-icon {
  filter: brightness(0) saturate(100%) invert(48%) sepia(94%) saturate(7488%) hue-rotate(300deg) brightness(92%) contrast(101%);
  /* This gives Instagram's approximate gradient vibe – pink-purple-orange */
}

/* Optional: stronger hover effect to match brand */
.social-links a[href*="linkedin.com"]:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(7488%) hue-rotate(200deg) brightness(100%) contrast(101%);
}

.social-links a[href*="instagram.com"]:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(60%) sepia(95%) saturate(7488%) hue-rotate(300deg) brightness(105%) contrast(101%);
}