/* About Page Styles */

/* Hero Section */
.about-hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--white);
      padding: 80px 0;
      text-align: center;
      position: relative;
}

.about-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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></svg>') repeat;
      animation: float 20s linear infinite;
}

@keyframes float {
      0% {
            transform: translateY(0px);
      }

      100% {
            transform: translateY(-10px);
      }
}

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

.hero-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 800px;
      margin: 0 auto 40px;
      line-height: 1.6;
}

.hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
}

.stat-item {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #ffffff;
}

.stat-label {
      font-size: 1rem;
      opacity: 0.9;
}

/* Section Styles */
.section {
      padding: 80px 0;
}

.section-header {
      text-align: center;
      margin-bottom: 60px;
}

.section-title {
      font-size: 2.5rem;
      color: var(--gray-900);
      margin-bottom: 20px;
      position: relative;
}

.section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: var(--primary);
      margin: 20px auto;
      border-radius: 2px;
}

/* History Section */
.about-history {
      background: var(--gray-50);
}

.history-content {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 60px;
      align-items: start;
}

.history-text {
      background: var(--white);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-block {
      margin-bottom: 30px;
}

.text-block p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--gray-700);
      text-align: justify;
}

.highlight {
      color: var(--primary);
      font-weight: 600;
      font-size: 1.2em;
}

/* Timeline */
.timeline {
      position: relative;
}

.timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--primary);
      border-radius: 2px;
}

.timeline-item {
      position: relative;
      margin-bottom: 40px;
      padding-left: 60px;
      background: var(--white);
      padding: 20px 20px 20px 60px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
      content: '';
      position: absolute;
      left: -6px;
      top: 25px;
      width: 15px;
      height: 15px;
      background: var(--primary);
      border: 3px solid var(--white);
      border-radius: 50%;
      box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
}

.timeline-content h4 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--gray-900);
}

.timeline-content p {
      color: var(--gray-600);
      margin: 0;
      font-size: 0.95rem;
}

/* Vision Mission Cards */
.vm-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 40px;
      margin-top: 40px;
}

.vm-card {
      background: var(--white);
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      border-top: 5px solid var(--primary);
}

.vm-card:hover {
      transform: translateY(-10px);
}

.vm-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 20px;
}

.vm-title {
      font-size: 1.8rem;
      color: var(--gray-900);
      margin-bottom: 20px;
}

.vm-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--gray-700);
      margin: 0;
}

/* Features Grid */
.features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
}

.feature-item {
      background: var(--white);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
}

.feature-item:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
}

.feature-item h3 {
      font-size: 1.3rem;
      color: var(--gray-900);
      margin-bottom: 15px;
}

.feature-item p {
      color: var(--gray-600);
      line-height: 1.6;
      margin: 0;
}

/* Services Section */
.services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
}

.service-card {
      background: var(--white);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
}

.service-card:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
}

.service-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
}

.service-card h3 {
      font-size: 1.3rem;
      color: var(--gray-900);
      margin-bottom: 15px;
}

.service-card p {
      color: var(--gray-600);
      line-height: 1.6;
      margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
      background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark) 100%);
      color: var(--white);
      padding: 60px 0;
      text-align: center;
}

.cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--white);
}

.cta-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      color: var(--white);
}

.cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
      .hero-title {
            font-size: 2rem;
      }

      .hero-subtitle {
            font-size: 1rem;
      }

      .hero-stats {
            flex-direction: column;
            gap: 20px;
      }

      .history-content {
            grid-template-columns: 1fr;
            gap: 40px;
      }

      .timeline {
            padding-left: 0;
      }

      .timeline::before {
            left: 15px;
      }

      .timeline-item {
            padding-left: 50px;
      }

      .timeline-item::before {
            left: 8px;
      }

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

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

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

      .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
      }
}

.cta-buttons .btn-outline {
      background-color: transparent;
      border-color: var(--white);
      color: var(--white);
}

.cta-box {
      margin-bottom: var(--space-5);
}