/* Custom About Us Page Styling - Unique Design */

/* Hero Section for About Page */
.about-hero {
  background: linear-gradient(135deg, #1c75bc 0%, #0d4a7c 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #1c75bc;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #ffffff;
  border: 4px solid #1c75bc;
  top: 20px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 25px;
  background-color: white;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h3 {
  color: #1c75bc;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Values Cards */
.values-section {
  padding: 80px 0;
  background: #ffffff;
}

.value-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #eee;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(28, 117, 188, 0.15);
}

.value-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1c75bc 0%, #0d4a7c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

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

.value-card .icon-wrapper i {
  font-size: 36px;
  color: white;
}

.value-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Mission Vision Section */
.mv-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1c75bc 0%, #0d4a7c 100%);
  color: white;
}

.mv-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mv-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.mv-card i {
  font-size: 60px;
  margin-bottom: 25px;
  display: block;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Stats Counter Section */
.stats-about {
  padding: 80px 0;
  background: #1c75bc;
  position: relative;
  overflow: hidden;
}

.stats-about::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  animation: pulse-bg 15s ease-in-out infinite;
}

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

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item i {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  display: block;
}

.stat-item .number {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-image {
  height: 250px;
  background: linear-gradient(135deg, #1c75bc 0%, #0d4a7c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.5);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.team-info .position {
  color: #1c75bc;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-info p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Locations Section */
.locations-section {
  padding: 80px 0;
  background: #ffffff;
}

.location-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.location-card:hover {
  border-color: #1c75bc;
  background: white;
  box-shadow: 0 10px 30px rgba(28, 117, 188, 0.1);
}

.location-card i {
  font-size: 40px;
  color: #1c75bc;
  margin-bottom: 15px;
  display: block;
}

.location-card h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.location-card p {
  color: #666;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  background: #1c75bc;
  color: white;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(28, 117, 188, 0.3);
}

.cta-btn:hover {
  background: #0d4a7c;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(28, 117, 188, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 21px;
  }

  .timeline-item.right {
    left: 0;
  }

  .stat-item .number {
    font-size: 3rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

/* Animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative elements */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(28, 117, 188, 0.1);
  z-index: 0;
}

.decoration-circle.c1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.decoration-circle.c2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}
