/* Global Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 50px;
}

.badge-pill {
  background: linear-gradient(135deg, #2563eb 0%, #d946ef 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Grid */
.content-wrapper {
  padding-bottom: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Story Styling */
.story-block {
  margin-bottom: 40px;
}

.story-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
  position: relative;
  display: inline-block;
}

.story-block h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #d946ef); /* Updated Gradient */
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.story-block p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 16px;
  text-align: justify;
}

/* Feature Cards Sidebar */
.features-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.icon-box.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.icon-box.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.icon-box.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1f2937;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Vision Section */
.vision-section {
  margin-top: 60px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #d946ef);
}

.vision-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fcd34d; /* Amber for lightbulb idea */
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.vision-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white !important; /* Force white text over dark bg */
}

.vision-content p {
  font-size: 16px;
  color: #d1d5db; /* Light gray */
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .features-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .features-sidebar {
    grid-template-columns: 1fr;
  }

  .vision-section {
    padding: 40px 20px;
  }
}
