/* Reset and Base Styles */

.products-dropdown {
  position: relative;
  display: inline-block;
}

.products-btn {
  background-color: var(--primary-color);
  color: black;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  font-family: inherit;
}

.products-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.products-btn:hover {
  background-color: #3a6347;
}

.products-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.products-dropdown.active .products-content,
.products-dropdown:hover .products-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.products-dropdown.active .products-btn i {
  transform: rotate(180deg);
}

.products-content a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.products-content a:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 300px;
  background-color: white;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-container {
  position: relative;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.logo-icon i {
  color: white;
  font-size: 1.25rem;
}

.logo-sparkle {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1rem;
  height: 1rem;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-sparkle i {
  color: white;
  font-size: 0.5rem;
}

.logo-text {
  display: flex;
  align-items: baseline;
}

.logo-main {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(135deg, #1f2937, #4b5563);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-org {
  font-size: 0.875rem;
  color: #f97316;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #f97316;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
  background-color: #f97316;
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #374151;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Sections */
.hero-home {
  position: relative;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #1f2937, #f97316, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-dark {
  color: #1f2937;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 1024px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Floating Elements */
.floating-elements {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1.5rem;
}

.floating-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card:hover {
  transform: translateY(-5px);
}

.floating-card i {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.floating-card span {
  font-weight: 600;
  color: #1f2937;
}

/* Page Headers */
.page-header,
.community-hero,
.contact-hero,
.impact-hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(245, 158, 11, 0.05));
}

.page-header-content,
.community-hero-content,
.contact-hero-content,
.impact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Mission Statement Section */
.mission-statement {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  /* margin-bottom: 0; */
  padding-bottom: 0;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.mission-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 1.5rem;
  color: #f97316;
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 600;
  color: #1f2937;
}

/* Jobs Impact Section */
.jobs-impact {
  padding: 5rem 0;
  background: white;
}

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

.impact-content {
  max-width: 100%;
}

.impact-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.impact-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.impact-visual {
  display: flex;
  justify-content: center;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px; /* Optional: limit maximum width */
  margin: 0 auto; /* Center it horizontally */
  padding: 2rem;  /* Optional: spacing around content */
  box-sizing: border-box;
  text-align: center; /* Center the text inside each card */
}
.stat-card {
  text-align: center;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-icon-orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.stat-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.stat-icon-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.875rem;
}

/* Event Stats */
.event-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(245, 158, 11, 0.05));
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.stat-item h4 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f97316;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #4b5563;
  font-weight: 500;
}

/* Social Impact Areas */
.social-impact {
  padding: 5rem 0;
  background: #f9fafb;
}

.impact-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.impact-area {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.impact-area:hover {
  transform: translateY(-5px);
}

.impact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.impact-icon i {
  color: white;
  font-size: 1.5rem;
}

.impact-metric {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f97316;
  display: block;
}

.metric-label {
  color: #4b5563;
  font-size: 0.875rem;
}

/* News Section */
.news-section {
  padding: 5rem 0;
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card.featured {
  border: 2px solid #f97316;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.news-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f97316;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-date {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.news-excerpt {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.news-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: #ea580c;
}

/* Inspiration Section */
.inspiration-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  text-align: center;
}

.inspiration-content {
  max-width: 800px;
  margin: 0 auto;
}

.inspiration-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.inspiration-text {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  color: #d1d5db;
}

.inspiration-quote {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  border-radius: 0.5rem;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.75;
}

.inspiration-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: #f59e0b;
  font-weight: 600;
}

/* Features Section */
.features-section,
.approach-section,
.services-section,
.community-features,
.toolkit-features {
  padding: 5rem 0;
  padding-top: 0;
}

.features-grid,
.approach-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card,
.approach-card,
.service-card,
.community-feature,
.toolkit-feature {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover,
.approach-card:hover,
.service-card:hover,
.community-feature:hover,
.toolkit-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon,
.approach-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon,
.approach-card:hover .approach-icon {
  transform: scale(1.1);
}

.feature-icon i,
.approach-icon i {
  font-size: 2rem;
  color: white;
}

.feature-icon-orange,
.approach-icon-orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.feature-icon-blue,
.approach-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.feature-icon-green,
.approach-icon-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.feature-icon-purple,
.approach-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.feature-icon-red,
.approach-icon-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.feature-icon-indigo,
.approach-icon-indigo {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.feature-title,
.approach-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-text,
.approach-text {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #ea580c;
}

/* Why We Matter Section */
.why-we-matter {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 5rem 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.section-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.mission-vision-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border: 2px solid #f59e0b;
}

.vision-card {
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border: 2px solid #3b82f6;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 2rem;
  margin-right: 0.75rem;
}

.mission-card .card-icon {
  color: #f97316;
}

.vision-card .card-icon {
  color: #3b82f6;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}

.card-text {
  color: #374151;
  line-height: 1.75;
}

/* Aims and Objectives Section */
.aims-objectives {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.aims-objectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.subsection-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.aims-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aim-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.aim-item:hover {
  transform: translateY(-5px);
}

.aim-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aim-icon i {
  color: white;
  font-size: 1.25rem;
}

.aim-item p {
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.objective-item:hover {
  transform: translateY(-5px);
}

.objective-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.objective-item p {
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

/* Quote Section */
.quote-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.main-quote {
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  text-align: center;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.quote-author {
  display: block;
  text-align: center;
  color: #f59e0b;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
}

.team-avatar i {
  font-size: 3rem;
  color: white;
}

.team-avatar-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.team-avatar-blue {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.team-avatar-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.team-avatar-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.team-avatar-indigo {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.team-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #4b5563;
  margin-bottom: 1rem;
}

.team-btn {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.team-card:hover .team-btn {
  background: #f97316;
  color: white;
  border-color: #f97316;
}

/* Locations Section */
.locations-section {
  padding: 5rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.location-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.location-icon i {
  color: white;
  font-size: 1.5rem;
}

.location-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.location-description {
  color: #4b5563;
  font-size: 1rem;
}

/* Service Cards */
.service-card {
  position: relative;
}

.service-card.featured {
  border: 2px solid #f97316;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-icon-orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.service-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.service-icon-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.service-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.service-icon-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.service-icon-indigo {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.service-badge {
  background: #f97316;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: left;
}

.service-description {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.service-features i {
  color: #10b981;
  font-size: 0.875rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #10b981;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: white;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #d97706);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #f97316;
  border: 2px solid #f97316;
}

.btn-secondary:hover {
  background: #f97316;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Process Steps */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.process-steps,
.how-it-works .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.step-description {
  color: #4b5563;
  line-height: 1.75;
}

/* Impact Section */
.impact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

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

.impact-stat {
  text-align: center;
}
.impact-section h1,
.impact-section h2,
.impact-section h3,
.impact-section p,
.impact-section span,
.impact-section a {
  color: white;
}
.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-card i {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.impact-card p {
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  color: #f59e0b;
}

.testimonial-author span {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Community Stats */
.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Success Stories */
.success-stories {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.story-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-quote {
  margin-bottom: 2rem;
}

.story-quote i {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.story-quote p {
  font-style: italic;
  line-height: 1.75;
  color: #4b5563;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  color: white;
  font-size: 1.25rem;
}

.author-name {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.author-title {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.author-location {
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Events */
.upcoming-events,
.events-section {
  padding: 5rem 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-date {
  text-align: center;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 80px;
  height: fit-content;
}

.event-month {
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
}

.event-day {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.event-content {
  flex: 1;
}

.event-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.event-description {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.event-location,
.event-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.event-location i,
.event-time i {
  color: #f97316;
}

/* Product Pages */
.product-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(245, 158, 11, 0.05));
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product-title {
  font-size: 3rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.product-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
}

.feature-highlight i {
  color: #f97316;
  font-size: 1.25rem;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Toolkit Preview */
.toolkit-preview {
  display: flex;
  justify-content: center;
}

.toolkit-window {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.window-header {
  background: #f3f4f6;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.window-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
}

.window-controls span:nth-child(2) {
  background: #f59e0b;
}

.window-controls span:nth-child(3) {
  background: #10b981;
}

.window-title {
  font-weight: 600;
  color: #374151;
}

.window-content {
  padding: 2rem;
}

.toolkit-modules {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.module-item:hover {
  background: #f3f4f6;
}

.module-item i {
  color: #f97316;
  font-size: 1.25rem;
}

/* Mentor Profiles */
.mentor-profiles {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mentor-profile {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mentor-profile:hover {
  transform: translateY(-5px);
}

.mentor-avatar-large {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.mentor-avatar-large i {
  color: white;
  font-size: 2.5rem;
}

.mentor-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.mentor-title {
  color: #f97316;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mentor-bio {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.mentor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.specialty-tag {
  background: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Platform Preview */
.platform-preview {
  display: flex;
  justify-content: center;
}

.mentor-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
}

.mentor-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: scale(1.05);
}

.mentor-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.mentor-avatar i {
  color: white;
  font-size: 1.5rem;
}

.mentor-card h4 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.mentor-card p {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.mentor-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.mentor-rating i {
  color: #f59e0b;
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-section {
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center; /* Vertical center */
  min-height: 100vh;
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.method-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  color: white;
  font-size: 1.25rem;
}

.method-content h4 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.method-content p {
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.method-content small {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Social Connect */
.social-connect {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.social-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.social-link:hover {
  background: #f97316;
  color: white;
  transform: translateX(5px);
}

.social-link i {
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h3 {
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.faq-question i {
  color: #f97316;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

/* CTA Sections */
.cta-section,
.download-cta,
.application-cta,
.join-community-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #111827);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}


.footer-logo .logo-main {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-quote {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  border-radius: 0.5rem;
  font-style: italic;
  color: #d1d5db;
}

.footer-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.875rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.footer-contact .contact-item i {
  color: #f59e0b;
  font-size: 1.125rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f59e0b;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons,
  .product-buttons,
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .product-features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .aims-objectives-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-highlights {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .hero-title,
  .product-title {
    font-size: 4rem;
  }

  .hero-subtitle,
  .product-subtitle {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .impact-grid,
  .product-hero-grid,
  .contact-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .floating-elements {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title,
  .product-title {
    font-size: 5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-home {
    padding: 3rem 1rem 2rem;
    min-height: 70vh;
  }

  .hero-title,
  .product-title {
    font-size: 2.5rem;
  }

  .hero-subtitle,
  .product-subtitle {
    font-size: 1.125rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .floating-elements {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .approach-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stories-grid,
  .events-grid,
  .mentors-grid {
    grid-template-columns: 1fr;
  }

  .aims-objectives-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    align-self: center;
    margin-bottom: 1rem;
  }

  .impact-areas,
  .news-grid {
    grid-template-columns: 1fr;
  }
}


/* Additional styles for nested dropdown and forms */

/* Newsletter Form Styles */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form .form-group {
  display: flex;
  flex-direction: column;
}

.newsletter-form label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.newsletter-form input,
.newsletter-form select {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Nested Products Dropdown */
.products-submenu {
  position: relative;
}

.products-submenu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.products-submenu-title:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

.products-submenu-content {
  position: absolute;
  left: 100%;
  top: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.products-submenu:hover .products-submenu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.products-submenu-content a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.products-submenu-content a:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

/* Mobile adjustments for nested dropdown */
@media (max-width: 767px) {
  .products-submenu-content {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
    margin-left: 20px;
    border-left: 2px solid var(--primary-color);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .products-submenu-title i {
    transform: rotate(90deg);
  }
}

/* Contact Form Grid Adjustments */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Form Success/Error Messages */
.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}


/* Enhanced Navbar Dropdown Styles */

/* Dropdown Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-submenu-title:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

.dropdown-submenu-content {
  position: absolute;
  left: 100%;
  top: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown-submenu:hover .dropdown-submenu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-submenu-content .dropdown-link {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.dropdown-submenu-content .dropdown-link:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

/* Mobile adjustments for nested dropdown */
@media (max-width: 767px) {
  .dropdown-submenu-content {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
    margin-left: 20px;
    border-left: 2px solid var(--primary-color);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown-submenu-title {
    cursor: pointer;
  }

  .dropdown-submenu-title i {
    transform: rotate(90deg);
  }

  .dropdown-submenu.active .dropdown-submenu-content {
    display: block;
  }

  .dropdown-submenu.active .dropdown-submenu-title i {
    transform: rotate(180deg);
  }
}

/* Active state styling for navigation */
.nav-link.active,
.dropdown-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.nav-link.active::after,
.dropdown-toggle.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Ensure dropdown toggle has relative positioning for active indicator */
.dropdown-toggle {
  position: relative;
}

/* Hero buttons styling */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
