/* SPOTA Website Styles */
/* Import Poppins Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* Brand Colors */
:root {
  --primary: #b497d6;
  --secondary: #5e478c;
  --accent: #d4af7f;
  --text-title: #050505;
  --text-body: #1f1f1f;
  --text-muted: #7a7a7a;
  --text-white: #ffffff;
  --bg-light: #faf9f6;
  --btn-secondary: #e2d4f0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html[dir="ltr"] body {
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-light);
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-title);
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.text-white {
  color: var(--text-white);
}

/* Navigation */
.custom-navbar {
  background: var(--text-white);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.custom-navbar-shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  width: 110px;
  height: auto;
}

.custom-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.custom-nav-links a,
.language-button a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-nav-links a:hover {
  color: var(--primary);
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 1rem;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-title);
}

.language-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.language-btn i {
  font-size: 0.8rem;
}

.language-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--text-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  min-width: 150px;
  overflow: hidden;
}

.language-dropdown-content.show {
  display: block;
}

.language-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-title);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.language-dropdown-content a:last-child {
  border-bottom: none;
}

.language-dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.language-dropdown-content .flag {
  font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-body);
  cursor: pointer;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  /*  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);*/
  background-color: white;
/*  color: var(--text-white);*/
  padding: 8rem 0 6rem;
  /* margin-top: 80px; */
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.small-hero {
  margin-top: 58px;
  height: unset;
}

/*.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}*/
@media (max-width: 768px) {
  .hero {
    height: unset;
  }
  .main-hero {
    padding: 8rem 0 0 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}


.hero h1 {
  /*  color: var(--text-white);*/
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  /*  color: var(--text-white);*/
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  /*  background: rgba(255, 255, 255, 0.1);*/
  /*  background: var(--primary);*/
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  /*  color: var(--text-white);*/
  color: #333;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  /*  color: white;*/
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.card-3 {
  top: 60%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(212, 175, 127, 0.3);
}

.btn-primary:hover {
  background: #c19a6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 127, 0.4);
}

.btn-secondary {
  background: var(--btn-secondary);
  color: var(--text-body);
  box-shadow: 0 4px 15px rgba(226, 212, 240, 0.3);
}

.btn-secondary:hover {
  background: #d4c4e8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 212, 240, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Cards */
.card {
  background: var(--text-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-white);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: var(--text-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 151, 214, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
  background: var(--bg-light);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step-number {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 1rem;
  color: var(--text-title);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* About Page Specific Styles */
.about-hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
}

.mission-preview {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.preview-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.mission-preview-card {
  animation-delay: 0s;
}

.vision-preview-card {
  animation-delay: 2s;
}

.preview-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.preview-content h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.preview-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
}

.values-preview {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-preview-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.value-preview-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.value-preview-card:nth-child(1) {
  animation-delay: 0.5s;
}

.value-preview-card:nth-child(2) {
  animation-delay: 2.5s;
}

.value-preview-card:nth-child(3) {
  animation-delay: 4.5s;
}

.value-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.value-content h4 {
  color: var(--text-white);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.value-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin: 0;
}

.impact-preview {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-stats {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.impact-stat {
  text-align: center;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.impact-stat:hover {
  transform: scale(1.05);
}

.impact-stat .stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
  display: block;
}

.impact-stat .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Mission & Vision Grid */
.mission-vision {
  background: var(--bg-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.mission-card-large,
.vision-card-large {
  background: var(--text-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 151, 214, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-card-large::before,
.vision-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mission-card-large:hover,
.vision-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mission-card-large:hover .card-icon,
.vision-card-large:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 40px;
  height: 40px;
}

/* Mission Highlights */
.mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 151, 214, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(180, 151, 214, 0.05);
  transform: translateX(5px);
}

.highlight-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  color: var(--text-white);
}

.highlight-item span:last-child {
  font-weight: 600;
  color: var(--text-title);
}

/* Vision Goals */
.vision-goals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 151, 214, 0.1);
}

.goal-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.goal-item:hover {
  background: rgba(180, 151, 214, 0.05);
  transform: translateX(5px);
}

.goal-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.goal-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-title);
  font-size: 1.1rem;
  font-weight: 600;
}

.goal-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .card-icon,
  .timeline-marker,
  .step-number {
    margin: auto;
  }
}

.card-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text-title);
}

.card-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Values Section */
.values-section {
  background: var(--text-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--text-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 151, 214, 0.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--text-title);
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Story Section */
.story-section {
  background: var(--bg-light);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-timeline {
  margin-top: 3rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 48px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--secondary);
  /* background: linear-gradient(to bottom, var(--primary), var(--secondary)); */
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content h3 {
  margin-bottom: 1rem;
  color: var(--text-title);
}

.timeline-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.story-visual {
  position: relative;
  height: 400px;
}

.story-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 151, 214, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-title);
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.floating-element i {
  font-size: 1.5rem;
  color: var(--primary);
}

.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 0;
  left: 30%;
  animation-delay: 4s;
}

/* Team Page Specific Styles */
.simple-team-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-icon {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-white);
  box-shadow: 0 20px 40px rgba(180, 151, 214, 0.3);
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.team-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(180, 151, 214, 0.4);
}

/* Team Stats Section */
.team-stats {
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--text-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 151, 214, 0.1);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-content p {
  color: var(--text-muted);
  font-weight: 500;
}

/* Team Section */
.team-section {
  background: var(--text-white);
}

/* Culture Section */
.culture-section {
  background: var(--bg-light);
}

.culture-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.culture-features {
  margin-top: 3rem;
}

.culture-feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.culture-feature:last-child {
  margin-bottom: 0;
}

.culture-feature .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.culture-feature .feature-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-title);
}

.culture-feature .feature-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.culture-visual {
  position: relative;
  height: 400px;
}

.culture-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.culture-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.culture-2 {
  top: 45%;
  right: 15%;
  animation-delay: 2s;
}

.culture-3 {
  bottom: 20%;
  left: 25%;
  animation-delay: 4s;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--text-white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Team Page Specific Styles */
.team-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-white);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.2rem;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 17px;
  color: var(--text-white);
}

/* Enhanced Button Styles */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-buttons .btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
  transform: translateY(-2px);
}

.team-svg-container {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
}

/* Team Core Animation */
.team-core {
  animation: pulse 4s ease-in-out infinite;
}

.collaboration-lines line {
  animation: collaborationPulse 2s ease-in-out infinite;
}

@keyframes collaborationPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* Team Icon Animations */
.team-icon {
  animation: float 8s ease-in-out infinite;
}

.team-icon:nth-child(1) {
  animation-delay: 0s;
}
.team-icon:nth-child(2) {
  animation-delay: 1s;
}
.team-icon:nth-child(3) {
  animation-delay: 2s;
}
.team-icon:nth-child(4) {
  animation-delay: 3s;
}
.team-icon:nth-child(5) {
  animation-delay: 4s;
}

/* Enhanced Particle Animations */
.particle-5 {
  animation: float 8s ease-in-out infinite 2s;
}

.particle-6 {
  animation: float 8s ease-in-out infinite 4s;
}

.pulse-3 {
  animation: pulse 4s ease-in-out infinite 2s;
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-white);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  color: white;
}
.about-hero p {
  color: var(--text-white);
}

.about-svg-container {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
}

/* Particle animations */
.particle-1 {
  animation: float 8s ease-in-out infinite;
}

.particle-2 {
  animation: float 8s ease-in-out infinite 2s;
}

.particle-3 {
  animation: float 8s ease-in-out infinite 4s;
}

.particle-4 {
  animation: float 8s ease-in-out infinite 6s;
}

/* Connection lines animation */
.connection-lines line {
  animation: dash 3s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -10;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-white);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.contact-svg-container {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
}

.floating-elements {
  animation: float 6s ease-in-out infinite;
}

.pulse-1 {
  animation: pulse 3s ease-in-out infinite;
}

.pulse-2 {
  animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-light);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--text-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(180, 151, 214, 0.1);
}

/* Modern Form Styles */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-title);
  font-size: 0.95rem;
}

.label-text {
  color: var(--text-title);
}

.required {
  color: #e74c3c;
  font-weight: 700;
}

.optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--text-white);
  color: var(--text-body);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 151, 214, 0.1);
  transform: translateY(-1px);
}

.form-textarea {
  height: 120px;
  resize: vertical;
  padding-top: 1rem;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}

.textarea-icon {
  top: 1.5rem;
  transform: none;
}

.validation-error {
  color: #e74c3c;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Alert Styles */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.alert-icon {
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.alert-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  justify-content: center;
}

.btn-icon {
  font-size: 1.2rem;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.note-icon {
  font-size: 1rem;
}

/* Contact Methods */
.contact-methods {
  background: var(--text-white);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-method-card {
  background: var(--text-white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 151, 214, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
  transform: scaleX(1);
}

.contact-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.contact-method-card:hover .method-icon {
  transform: scale(1.1);
}

.method-icon svg {
  width: 40px;
  height: 40px;
}

.method-content h3 {
  margin-bottom: 1rem;
  color: var(--text-title);
  font-size: 1.25rem;
}

.method-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-detail {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  border: 1px solid rgba(180, 151, 214, 0.1);
}

.contact-detail strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.method-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.meta-icon {
  font-size: 1rem;
}

/* Phone Unavailable Styling */
.phone-unavailable {
  opacity: 0.7;
  position: relative;
}

.phone-unavailable::after {
  content: attr(data-text);
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e74c3c;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-unavailable .method-icon {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  opacity: 0.8;
}

.phone-unavailable .contact-detail.unavailable {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.phone-unavailable .contact-detail.unavailable strong {
  color: #721c24;
}

/* Responsive Design for Team Page */
@media (max-width: 768px) {
  .team-hero {
    padding: 6rem 0 4rem;
  }

  .team-svg-container {
    height: 300px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .team-svg-container {
    height: 250px;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .feature-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 0 4rem;
  }

  .about-svg-container {
    height: 300px;
  }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .contact-svg-container {
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-method-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }

  .contact-method-card {
    padding: 1.5rem;
  }

  .method-icon {
    width: 60px;
    height: 60px;
  }

  .method-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--text-white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: var(--text-white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer p {
  color: var(--text-white);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--text-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .custom-nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-visual {
    height: 300px;
  }

  .floating-card {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .floating-card i {
    font-size: 1rem;
  }

  .card-1 {
    top: 0%;
    left: 5%;
    z-index: 1;
  }

  .card-2 {
    top: 20%;
    right: 5%;
    z-index: 2;
  }

  .card-3 {
    top: 40%;
    left: 5%;
    z-index: 1;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .container {
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card-large,
  .vision-card-large {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .mission-highlights {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .vision-goals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .goal-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .highlight-item {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .about-hero-visual {
    height: 400px;
  }

  .about-visual-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    max-width: 400px;
  }

  .mission-preview {
    grid-column: 1;
    grid-row: 1;
  }

  .values-preview {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    gap: 0.5rem;
  }

  .value-preview-card {
    flex: 1;
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .value-icon {
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .value-content h4 {
    font-size: 0.8rem;
  }

  .value-content p {
    font-size: 0.7rem;
  }

  .impact-preview {
    grid-column: 1;
    grid-row: 3;
  }

  .impact-stats {
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem;
  }

  .impact-stat .stat-number {
    font-size: 1.5rem;
  }

  .impact-stat .stat-label {
    font-size: 0.7rem;
  }

  .story-visual {
    height: 300px;
  }

  .floating-element {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .floating-element i {
    font-size: 1rem;
  }

  .element-1 {
    top: 10%;
    left: 5%;
    z-index: 1;
  }

  .element-2 {
    top: 45%;
    right: 5%;
    z-index: 2;
  }

  .element-3 {
    bottom: 10%;
    left: 5%;
    z-index: 1;
  }

  .visual-card {
    width: 150px;
    min-height: 100px;
    padding: 1rem;
  }

  .mission-card {
    top: 5%;
    left: 2%;
  }

  .vision-card {
    top: 40%;
    right: 2%;
  }

  .values-card {
    bottom: 5%;
    left: 10%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .culture-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .culture-visual {
    height: 300px;
  }

  .culture-1 {
    top: 10%;
    left: 5%;
    z-index: 1;
  }

  .culture-2 {
    top: 45%;
    right: 5%;
    z-index: 2;
  }

  .culture-3 {
    bottom: 10%;
    left: 5%;
    z-index: 1;
  }

  .simple-team-visual {
    height: 300px;
  }

  .team-icon {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }

  .contact-form {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-visual {
    height: 250px;
  }

  .floating-card {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  .floating-card i {
    font-size: 0.9rem;
  }

  .card-1 {
    top: 5%;
    left: 2%;
    z-index: 1;
  }

  .card-2 {
    top: 40%;
    right: 2%;
    z-index: 1;
  }

  .card-3 {
    top: 50%;
    left: 2%;
    z-index: 1;
  }

  .floating-element {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  .floating-element i {
    font-size: 0.9rem;
  }

  .element-1 {
    top: 5%;
    left: 2%;
    z-index: 1;
  }

  .element-2 {
    top: 40%;
    right: 2%;
    z-index: 1;
  }

  .element-3 {
    bottom: 5%;
    left: 2%;
    z-index: 1;
  }

  .culture-visual {
    height: 250px;
  }

  .culture-1 {
    top: 5%;
    left: 2%;
    z-index: 1;
  }

  .culture-2 {
    top: 40%;
    right: 2%;
    z-index: 1;
  }

  .culture-3 {
    bottom: 5%;
    left: 2%;
    z-index: 1;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
  }

  .card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-content h3 {
    font-size: 1.5rem;
  }

  .culture-feature {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .culture-feature .feature-icon {
    margin: 0 auto;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Initially hide elements that should animate */
.card,
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Show elements when they have the fade-in-up class */
.card.fade-in-up,
.section.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Team Page Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-card {
  background: var(--text-white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-image {
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info h3 {
  color: var(--text-title);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content {
  background: var(--text-white);
  border-radius: 20px;
  padding: 0;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close:hover {
  color: var(--primary);
  background: var(--text-white);
  transform: scale(1.1);
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-image {
  flex-shrink: 0;
  width: 100%;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  display: block;
}

.modal-info {
  width: 100%;
  padding: 2rem 3rem 3rem 3rem;
}

.modal-info h2 {
  color: var(--text-title);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.modal-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.modal-bio {
  color: var(--text-body);
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal {
    padding: 1rem;
  }

  .modal-content {
    max-height: 90vh;
  }

  .modal-body {
    max-height: 90vh;
  }

  .modal-image img {
    width: 100%;
    height: auto;
  }

  .modal-info {
    padding: 1.5rem 2rem 2rem 2rem;
  }

  .modal-info h2 {
    font-size: 1.25rem;
  }

  .modal-role {
    font-size: 0.9rem;
  }

  .modal-bio {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .modal-info {
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  }

  .modal-image img {
    width: 100%;
    height: auto;
  }

  .modal-info h2 {
    font-size: 1.15rem;
  }
}

/* Team Grid Responsive */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  .team-image img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .team-card {
    padding: 1.25rem;
  }

  .team-image img {
    width: 100px;
    height: 100px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* Member Details Page Styles */
.member-details-section {
  background: var(--bg-light);
  min-height: calc(100vh - 80px);
  padding: 4rem 0;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.back-button:hover {
  background: rgba(180, 151, 214, 0.1);
  transform: translateX(-5px);
}

.back-button i {
  font-size: 1rem;
}

.member-content {
  background: var(--text-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.member-image-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.member-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info-container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-name {
  color: var(--text-title);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.member-role-title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.member-bio-container {
  margin-top: 1rem;
}

.member-bio-text {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.other-members-section {
  margin-top: 4rem;
}

.other-members-section h2 {
  text-align: center;
  color: var(--text-title);
  margin-bottom: 3rem;
  font-size: 2rem;
}

/* Responsive Member Details */
@media (max-width: 968px) {
  .member-content {
    grid-template-columns: 1fr;
  }

  .member-image-container {
    min-height: 400px;
  }

  .member-info-container {
    padding: 2.5rem;
  }

  .member-name {
    font-size: 2rem;
  }

  .member-role-title {
    font-size: 1.1rem;
  }

  .member-bio-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .member-details-section {
    padding: 2rem 0;
  }

  .member-image-container {
    min-height: 350px;
  }

  .member-info-container {
    padding: 2rem;
  }

  .member-name {
    font-size: 1.75rem;
  }

  .member-role-title {
    font-size: 1rem;
  }

  .member-bio-text {
    font-size: 0.95rem;
  }

  .other-members-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .member-image-container {
    min-height: 300px;
  }

  .member-info-container {
    padding: 1.5rem;
  }

  .member-name {
    font-size: 1.5rem;
  }

  .member-role-title {
    font-size: 0.95rem;
  }

  .member-bio-text {
    font-size: 0.9rem;
  }
}

