body {
  background-color: var(--white);
}
/* Contact Page Specific Colors */
:root {
  --primary-light: #e3f2fd;
  --border-color: #e0e0e0;
}
.about-banner {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* About Page Section Styles */
.section {
  padding: 60px 0;
  position: relative;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
  padding: 120px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0071e3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-hero p {
  font-size: 20px;
  color: #777;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Company Profile Section */
.company-profile {
  background: #ffffff;
}

.profile-content {
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .profile-content {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .profile-content {
    padding: 0 10px;
  }
}
.profile-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}

.profile-text p {
  font-size: 18px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 25px;
}

.profile-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 113, 227, 0.15);
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Culture Section */
.company-culture {
  background: #f5f5f7;
  position: relative;
  overflow: hidden;
}

/* Culture Header */
.culture-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #0071e3;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: #e3f2fd;
  padding: 8px 20px;
  border-radius: 30px;
}

.culture-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.culture-description {
  font-size: 18px;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Culture Grid */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Culture Item */
.culture-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.culture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 113, 227, 0.15);
}

/* Culture Icon */
.culture-icon {
  flex-shrink: 0;
  margin-right: 30px;
  position: relative;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 113, 227, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.culture-item:hover .icon-circle {
  background: #0071e3;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
}

.culture-item:hover .icon-circle::after {
  transform: scale(1.5);
}

.culture-item:hover .icon-circle svg path {
  stroke: #ffffff;
  transition: stroke 0.3s ease;
}

/* Culture Text */
.culture-text {
  flex: 1;
  text-align: left;
}

.culture-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.culture-item:hover .culture-text h3 {
  color: #0071e3;
}

.culture-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.culture-item:hover .culture-text p {
  color: #444;
}

/* Development History Section */
.history-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.history-header {
    text-align: center;
    margin-bottom: 60px;
}
.history-header {
  animation-delay: 0.2s;
}
.history-header .section-subtitle {
  margin-bottom: 15px;
}

.history-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.history-description {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    padding-left: 50px;
}

.timeline-track {
    position: absolute;
    margin-top: 50px; 
    margin-bottom: 50px;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #0071e3;
}

.timeline-items {
    position: relative;
    z-index: 1;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }
.timeline-item:nth-child(7) { animation-delay: 1.4s; }
.timeline-track{animation-delay: 2.1s;}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -80px;
    top: 25px;
    width: 60px;
    height: 60px;
    background-color: #0071e3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.2);
}

.timeline-item:hover .timeline-year {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(0, 113, 227, 0.1);
}

.timeline-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0071e3;
}

.timeline-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.timeline-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.about-hero, 
.intro-content, 
.culture-header, 
.culture-item,
.history-header,
.timeline-item,
.timeline-track {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.about-hero {animation-delay: 0.1s;}

.intro-content {animation-delay: 0.3s;}

.culture-header {animation-delay: 0.2s;}
.culture-item:nth-child(1) {animation-delay: 0.4s;}
.culture-item:nth-child(2) {animation-delay: 0.6s;}
.culture-item:nth-child(3) {animation-delay: 0.8s;}
.culture-item:nth-child(4) {animation-delay: 1.0s;}
.culture-item:nth-child(5) {animation-delay: 1.2s;}
.culture-item:nth-child(6) {animation-delay: 1.4s;}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  
  .about-hero h1 {
    font-size: 48px;
  }
  
  .profile-content {
    gap: 60px;
  }
  
  .culture-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .culture-item {
    padding: 35px 30px;
  }
  
  .culture-item h3 {
    font-size: 22px;
  }
  
  .culture-item p {
    font-size: 15px;
  }
  
  .history-header h2 {
    font-size: 36px;
  }
  
  .timeline-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .about-hero {
    padding: 80px 0;
  }
  
  .about-hero h1 {
    font-size: 36px;
  }
  
  .about-hero p {
    font-size: 18px;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .profile-text h2,
  .culture-content h2,
  .history-header h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .culture-grid {
    gap: 20px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
  
  .culture-header {
    margin-bottom: 50px;
  }
  
  .culture-description {
    font-size: 16px;
  }
  
  .culture-item {
    padding: 35px 25px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .culture-icon {
    margin-right: 0;
    margin-bottom: 25px;
  }
  
  .culture-text {
    text-align: center;
  }
  
  .history-header {
    margin-bottom: 50px;
  }
  
  .history-header h2 {
    font-size: 28px;
  }
  
  .timeline-container {
    padding-left: 70px;
  }
  
  .timeline-track {
    left: 27px;
  }
  
  .timeline-year {
    width: 50px;
    height: 50px;
    font-size: 14px;
    left: -65px;
  }
  
  .timeline-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
  
  .about-hero {
    padding: 60px 0;
  }
  
  .about-hero h1 {
    font-size: 28px;
  }
  
  .about-hero p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .profile-text h2,
  .culture-content h2,
  .history-header h2 {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 14px;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
  
  .culture-header {
    margin-bottom: 40px;
  }
  
  .culture-item {
    padding: 30px 20px;
  }
  
  .culture-text h3 {
    font-size: 20px;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .icon-circle svg {
    width: 28px;
    height: 28px;
  }
  
  .history-header {
    margin-bottom: 40px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
