/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Body - Apply gradient background to entire page */
body {
  font-family: 'quick-gaseous', sans-serif;
  background-attachment: fixed;
  min-height: 100vh;
}

/* Home Dot Button */
.home-dot {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #510000 0%, #ffffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 2px 4px 15px rgb(1, 83, 215);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.home-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(240, 147, 251, 0.6);
}

.dot-pulse {
  width: 20px;
  height: 20px;
  background: rgb(212, 167, 167);
  border-radius: 50%;
  position: relative;
} 

.dot-pulse::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Hero Section */
.about-hero {
  min-height: 70vh;
  background: radial-gradient(rgb(44, 0, 0) 0%,rgb(0, 32, 2) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.about-hero-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
}

.about-title {
  font-family: 'quick-gaseous', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #ff9d00 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.about-tagline {font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.float-element {
  position: absolute;
  font-size: 5rem;
  opacity: 0.55;
  animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-element:nth-child(2) {
  top: 60%;
  right: 35%;
  animation-delay: 5s;
}

.float-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.float-element:nth-child(4) {
  top: 30%;
  right: 25%;
  animation-delay: 15s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(15deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(-25deg);
  }
  75% {
    transform: translate(25px, 10px) rotate(60deg);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Titles */
.section-title {
    text-decoration: underline 6px solid rgba(255, 255, 255, 0.95);
    text-underline-offset: 10px;

  font-family: 'quick-gaseous', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.mission-section {
  background-color: rgb(0, 32, 2);
  padding: 6rem 0;
}

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

.large-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #b1721e;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.body-text {
  font-size: 1.15rem;
  color: rgba(255, 192, 84, 0.95);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.stat-card {
  background: rgb(79, 0, 0);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.stat-card.highlight {
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stat-number {
  font-family: 'quick-gaseous', sans-serif;
  font-size: 5rem;
  font-weight: bold;
background-color: white;  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card.highlight .stat-number {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 2.1rem;
  color: #cf8a00;
  font-weight: 500;
}

.stat-card.highlight .stat-label {
  color: rgba(255, 255, 255, 0.95);
}

/* Science Section */
.science-section {
    background-color: rgb(0, 32, 2);

  padding: 6rem 0;
}

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

.science-card {
  background-color: rgb(0, 32, 2);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #ffffff;
}

.science-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.2);
}

.science-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.science-card h3 {
  font-family: 'quick-gaseous', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.science-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.science-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  margin-top: 1rem;
}

.metric-value {
  font-family: 'quick-gaseous', sans-serif;
  font-size: 2rem;
  color: #d6ddff;
  font-weight: bold;
}

.metric-label {
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: rgb(0, 32, 2);
  color: rgb(0, 0, 0);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgb(255, 149, 149);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgb(255, 255, 255);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgb(191, 66, 66);
}

.feature-number {
  font-family: 'quick-gaseous', sans-serif;
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'quick-gaseous', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: rgb(0, 0, 68);
}

.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.2);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.value-card h3 {
  font-family: 'quick-gaseous', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.value-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

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

.cta-title {
  font-family: 'quick-gaseous', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.cta-buttons-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-family: 'quick-gaseous', sans-serif;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cta-button-large.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button-large.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.cta-button-large.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button-large.secondary:hover {
  background: white;
  color: #1a1a2e;
  transform: translateY(-3px);
}

.cta-centered {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .team-values {
    grid-template-columns: 1fr;
  }

  .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-large {
    width: 100%;
    max-width: 300px;
  }
}
