/* About Page Specific Styles - This file only affects about.html */

/* Enhanced Background Patterns */
.page-hero-alt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(163, 230, 53, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.values-modern-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(163, 230, 53, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Mission & Story Cards */
.mission-card,
.story-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mission-card:hover,
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.mission-card-bg,
.story-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(163, 230, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover .mission-card-bg,
.story-card:hover .story-card-bg {
  opacity: 1;
}

/* Mission Icon */
.mission-icon .icon-circle,
.story-icon .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-icon .icon-circle::before,
.story-icon .icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mission-icon .icon-circle i,
.story-icon .icon-circle i {
  font-size: 2rem;
}

.mission-card:hover .mission-icon .icon-circle::before,
.story-card:hover .story-icon .icon-circle::before {
  left: 100%;
}

/* Mission Stats */
.mission-stats {
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Timeline */
.timeline {
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  transform: scale(1.2);
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 16px;
  width: 2px;
  height: calc(100% + 0.5rem);
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-year {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Values Section */
.values-modern-section {
  background: linear-gradient(135deg, rgba(15, 35, 23, 0.8) 0%, rgba(15, 95, 90, 0.1) 100%);
  position: relative;
}

.values-modern-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(163, 230, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.value-icon-circle i {
  font-size: 1.8rem;
}

.value-card:hover .value-icon-circle::before {
  left: 100%;
}

.value-card:hover .value-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

/* Page Hero Alternative */
.page-hero-alt {
  background: linear-gradient(135deg, rgba(15, 35, 23, 0.9) 0%, rgba(15, 95, 90, 0.2) 100%);
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-alt::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.page-hero-alt .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-alt .hero-content h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-hero-alt .hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-hero-alt .hero-img-wrap {
  position: relative;
  z-index: 2;
}

.page-hero-alt .hero-img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.page-hero-alt .hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Features Alternative */
.features-alt {
  background: rgba(15, 35, 23, 0.5);
  position: relative;
}

/* CTA Section */
.cta-section-new {
  background: linear-gradient(135deg, rgba(15, 95, 90, 0.9) 0%, rgba(163, 230, 53, 0.2) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-new::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="waves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0 25 Q12.5 0 25 25 T50 25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.cta-section-new h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-section-new p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

/* Text Color Overrides for About Page */
.mission-card .text-dark,
.story-card .text-dark,
.value-card .text-dark {
  color: #fff !important;
}

.mission-card .text-muted,
.story-card .text-muted,
.value-card .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Glassy Card Enhancement */
.glassy-card {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.glassy-card:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Section Title Enhancements for About Page */
.values-modern-section .section-title-new {
  color: #fff !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}

.values-modern-section .text-muted-new {
  color: rgba(255, 255, 255, 0.8) !important;
}

.features-alt .section-title-new {
  color: #fff !important;
  font-weight: 700 !important;
}

.features-alt .text-muted-new {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Badge Enhancements */
.badge.bg-success-soft {
  background-color: rgba(163, 230, 53, 0.2) !important;
  color: #a3e635 !important;
  border: 1px solid rgba(163, 230, 53, 0.3) !important;
}

.badge.bg-primary-soft {
  background-color: rgba(56, 189, 248, 0.2) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

/* Utility Classes for About Page */
.bg-primary-soft {
  background-color: rgba(56, 189, 248, 0.1) !important;
}

.bg-success-soft {
  background-color: rgba(163, 230, 53, 0.1) !important;
}

.bg-warning-soft {
  background-color: rgba(251, 191, 36, 0.1) !important;
}

.bg-info-soft {
  background-color: rgba(34, 211, 238, 0.1) !important;
}

.text-primary-emphasis {
  color: #38bdf8 !important;
}

.text-success-emphasis {
  color: #a3e635 !important;
}

.text-warning-emphasis {
  color: #fbbf24 !important;
}

.text-info-emphasis {
  color: #22d3ee !important;
}

/* Animation Classes */
.anim-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.anim-fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .mission-card,
  .story-card {
    margin-bottom: 2rem;
  }
  
  .value-card {
    margin-bottom: 1.5rem;
  }
  
  .page-hero-alt {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .page-hero-alt .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .mission-card,
  .story-card {
    padding: 2rem !important;
  }
  
  .value-card {
    padding: 1.5rem !important;
  }
  
  .page-hero-alt .hero-content h1 {
    font-size: 2rem;
  }
  
  .page-hero-alt .hero-content p {
    font-size: 1rem;
  }
  
  .timeline-item {
    margin-bottom: 1rem;
  }
  
  .timeline-dot {
    width: 12px;
    height: 12px;
  }
  
  .timeline-item:not(:last-child)::after {
    left: 5px;
    top: 12px;
  }
}

/* Footer Copyright Text */
.footer-new .text-muted-new {
  color: #ffffff !important;
} 