

/* Navigation Enhancement for About Page */
nav ul.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a.active {
  color: var(--vibrant-purple);
  font-weight: 600;
}



/* Mission Section */
.mission-section {
  padding: clamp(3rem, 8vw, 5rem) 5%;
  background: white;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
}

.mission-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-description {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Why Blostem Section */
.why-blostem-section {
  padding: clamp(3rem, 8vw, 5rem) 5%;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(0, 0, 0, 0.6);
  max-width: 800px;
  margin: -1rem auto 3rem;
  line-height: 1.8;
}

.why-blostem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(107, 76, 230, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(107, 76, 230, 0.15);
  border-color: var(--vibrant-purple);
}

.why-icon {
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.why-card h3 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.4;
  margin: 0 0 1rem 0;
  padding: 0;
  min-height: 2.8em; /* Forces consistent height for 2 lines */
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-description {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  flex-grow: 1; /* Allows description to take remaining space */
}
/* Our Story Section */
.our-story-section {
  padding: clamp(3rem, 8vw, 5rem) 5%;
  background: white;
}

.story-content {
  max-width: 1000px;
  margin: 0 auto;
}

.story-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f0ff 0%, #f5f3ff 100%);
  border-radius: 20px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--vibrant-purple);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

/* Founders Section */
.founders-section {
  padding: clamp(3rem, 8vw, 5rem) 5%;
  background: white;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-card {
  background: linear-gradient(135deg, #f8fbff 0%, #faf9ff 100%);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(107, 76, 230, 0.1);
  transition: all 0.3s ease;
   display: flex;
  flex-direction: column;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(107, 76, 230, 0.2);
  border-color: var(--vibrant-purple);
}

.founder-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--vibrant-purple);
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-purple));
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--vibrant-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-description {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.founder-credentials {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-link {
  display: inline-block;
}


.founders-btn {
  background-color: #0a66c2;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
 margin-top: auto;
}


/* Backed By Section */
.backed-by-section {
  padding: clamp(3rem, 8vw, 5rem) 5%;
  background: linear-gradient(135deg, #e8f0ff 0%, #f5f3ff 100%);
  text-align: center;
}

.backed-by-section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--deep-navy);
  font-weight: 700;
}

.backed-by-section > .container > p {
  max-width: 650px;
  margin: 0 auto 3rem auto;
  color: #555;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
}

/* Grid Layout - FIXED */
.backers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
}

/* NON-Featured Backer Cards */
.backer-logo {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 180px;
  border: 2px solid rgba(107, 76, 230, 0.1);
  transition: all 0.3s ease;
}

.backer-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 76, 230, 0.15);
}

.backer-logo img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
}

.backer-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  max-width: 220px;
}


.backer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.backer-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.backer-info strong {
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 700;
}

.backer-info p {
  opacity: 0.95;
  font-size: 1rem;
  margin: 0;
}

/* Tablet Responsive */
@media (max-width: 900px) {
  .backers-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
  
}

/* Mobile Fix */
@media (max-width: 600px) {
  .backers-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 1.5rem;
  }
  
  
  .backer-info {
    align-items: center;
  }
}

/* Associations */
.associations {
  margin-top: 4rem;
  text-align: center;
}

.associations-title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
  font-weight: 400;
}

.associations-title b {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

.association-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem;
}

.association-logos img {
  width: 100px;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.association-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  padding: clamp(3rem, 8vw, 5rem) 5%;
  background: linear-gradient(135deg, #020842 0%, #1a0f4d 100%);
  color: white;
}

.team-image {
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.team-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* media svb */
.footer-col {
  width: 250px;
  padding: 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 15px;
  color: #e0e0e0;
}

.footer-col ul li img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}


.footer-col ul li a img {
  width: 30px;       
  height: 30px;
  transition: 0.3s ease;
  filter: brightness(0.9);
}

.footer-col ul li:hover {
  color: #ffffff;
  cursor: default;
}


.footer-col ul li img:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .why-blostem-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .founders-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 5% 3rem;
  }

  .about-hero-logo {
    height: 60px;
  }

  .why-blostem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partners-wrapper {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .partner-logos img {
    width: 120px;
    max-height: 40px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .backers-grid {
    grid-template-columns: 1fr;
  }


  .association-logos {
    gap: 2rem;
  }

  .association-logos img {
    width: 80px;
    max-height: 60px;
  }

  /* Mobile menu enhancement */
  nav ul.nav-menu {
    display: none;
  }

  nav ul.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 3rem 5% 2rem;
  }

  .why-blostem-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 1.5rem;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .partner-logos img {
    width: 100px;
    max-height: 35px;
  }

  .association-logos {
    flex-direction: column;
    gap: 1.5rem;
  }

  .association-logos img {
    width: 100px;
  }
}