@charset "ISO-8859-1";
:root {
  --primary: #0056b3;
  --primary-dark: #003d7a;
  --primary-light: #e6f0ff;
  --accent: #106fe1;
  --text: #333;
  --text-light: #666;
  --gray-light: #f8f9fa;
  --border: #e0e3e7;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('../assets/img/about-hero.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.about-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}



/* ===== Breadcrumb ===== */
.about-breadcrumb {
  background: var(--gray-light);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.about-breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.about-breadcrumb li {
  display: flex;
  align-items: center;
}

.about-breadcrumb li:not(:first-child)::before {
  content: '/';
  margin: 0 10px;
  color: var(--text-light);
}

.about-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.about-breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}


/* Company Overview Section */
.company-overview {
  padding: 100px 0;
  background: #fff;
}

.company-overview .image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.company-overview .main-image {
  width: 100%;
  height: auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: linear-gradient(135deg, #3b82f6, #4e9af1);
  color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
  width: 150px;
}

.experience-badge span {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge p {
  font-size: 0.9rem;
  margin: 5px 0 0;
  opacity: 0.9;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #4e9af1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: rgba(78, 154, 241, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
}

.company-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

.highlight-text {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.about-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-item i {
  color: #4e9af1;
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 3px;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 15px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 100px 0;
  background: #f8faff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.mv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.mission-card .mv-icon {
  background: rgba(78, 154, 241, 0.1);
  color: #4e9af1;
}

.vision-card .mv-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1e293b;
}

.mv-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* Core Values Section */
.core-values {
  padding: 100px 0;
  background: #fff;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-top-color: #4e9af1;
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #4e9af1;
  background: rgba(78, 154, 241, 0.1);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: #4e9af1;
  color: #fff;
  transform: rotateY(180deg);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.value-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Leadership Team Section */
.leadership-team {
  padding: 100px 0;
  background: #f8faff;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.member-photo {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.social-links-abt {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: rgba(78, 154, 241, 0.9);
  padding: 15px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-member:hover .social-links-abt {
  bottom: 0;
}

.social-links-abt a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links-abt a:hover {
  color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #1e293b;
}

.member-info p {
  color: #4e9af1;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-info .bio {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Milestones Section */
.milestones {
  padding: 100px 0;
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: #e2e8f0;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #4e9af1;
  border-radius: 50%;
  top: 30px;
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-date {
  padding: 8px 20px;
  background: #4e9af1;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

.timeline-content {
  padding: 30px;
  background: #f8faff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1e293b;
}

.timeline-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #23265e 0%, #23265e 100%);
  text-align: center;
  color: #fff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #fff;
  color: #4e9af1;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-button:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-hero {
    padding: 120px 0 80px;
  }
  
  .about-hero h1 {
    font-size: 2.8rem;
  }
  
  .company-overview,
  .mission-vision,
  .core-values,
  .leadership-team,
  .milestones,
  .about-cta {
    padding: 80px 0;
  }
  
  .mv-container,
  .values-container,
  .team-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .experience-badge {
    right: 20px;
    width: 130px;
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item::after {
    left: 21px !important;
  }
  
  .timeline-date {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 20px;
  }
  
  .mv-card,
  .value-card {
    padding: 30px 20px;
  }
  
  .cta-button {
    padding: 12px 30px;
  }
}