/* =====  About.css  ===== */

.about-page {
  background: #fff;
  color: #1f2937;
  font-family: sans-serif;
  margin: 5rem 0 0 0;
}

..about-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 9999px;
    text-decoration:none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s 
ease, transform 0.3s 
ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 1.5rem;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.6); /* Changed from maroon to deep blue */
}
.hero-content {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
  z-index: 10;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.125rem;
  color: #fff;
}
.hero-content .highlight {
  font-weight: 600;
}

/* Intro */
.intro {
  padding: 3rem 1.5rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.intro-text {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.intro-text p {
  margin-bottom: 1.5rem;
}
.intro-image img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Values */
.values {
  background: #dbeafe; /* light blue bg */
  padding: 3rem 1.5rem;
}
.values h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1e3a8a; /* deep blue */
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.value-card i {
  font-size: 2rem;
  color: #1d4ed8; /* vibrant blue */
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 1rem;
  color: #4b5563;
}

/* Story & Mission */
.story-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .story-mission {
    grid-template-columns: 1fr 1fr;
  }
}
.story-card {
  background: #dbeafe; /* light blue background */
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.story-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}
.story-card p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.mission-card {
  border: 2px solid #bfdbfe; /* light blue border */
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.mission-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}
.mission-card p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Community */
.community {
  background: linear-gradient(to right, #eff6ff, #dbeafe);
  padding: 3rem 1.5rem;
}
.community-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.community-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}
.community-header p {
  font-size: 1.125rem;
  color: #1d4ed8;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .community-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.community-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: box-shadow 0.3s ease;
  cursor: default;
}
.community-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.community-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1d4ed8;
}
.community-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e3a8a;
}
