/* About Us Page - Modern Design */

:root {
  --primary-color: #0066CC;
  --secondary-color: #00A8A8;
  --accent-color: #FF6B35;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --card-hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  --transition-speed: 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(0, 168, 168, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 3rem;
  font-weight: 300;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Quote Section */
.quote-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.modern-quote {
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #333;
  position: relative;
}

/* Mission Section */
.mission-section {
  position: relative;
  padding: 5rem 0;
}

.mission-content {
  padding-right: 3rem;
}

.video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-speed) ease;
}

.video-container:hover {
  transform: translateY(-5px);
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  padding: 5rem 0;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1rem;
  height: 100%;
  transition: all var(--transition-speed) ease;
  backdrop-filter: blur(10px);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.value-icon-container.warning {
  background: linear-gradient(135deg, #FFC107, #FF9800);
}

.value-icon-container.info {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

.value-icon-container.success {
  background: linear-gradient(135deg, #28a745, #218838);
}

.value-icon-container.danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

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

.value-icon {
  font-size: 2rem;
  color: white;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #fff;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0.1;
  transition: opacity var(--transition-speed) ease;
}

.service-card:hover .service-icon-wrapper::before {
  opacity: 0.2;
}

.service-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Social Responsibility Section */
.social-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 5rem 0;
}

.social-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.social-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
  transform-origin: left;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.social-card:hover::after {
  transform: scaleX(1);
}

.social-logo {
  transition: transform var(--transition-speed) ease;
  max-height: 100px;
  margin-bottom: 1.5rem;
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .quote-text {
    font-size: 1.75rem;
  }
  
  .mission-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .value-card {
    margin-bottom: 1rem;
  }
}