/* About Section Styles */
:root {
  --primary-color: #014E9A;
  --secondary-color: #0170BF;
  --accent-color: #00A8E8;
  --accent-orange: #FF6B35;
}

/* Hero Video Styles - Tentang Page */
.tentang-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Tampilkan bagian atas video */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.tentang-hero-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Tampilkan bagian atas GIF */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.about.section {
  padding: 50px 0 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about .container {
  position: relative;
  z-index: 1;
}

/* New About Section Styles */
.about-images-new {
  position: relative;
  padding-right: 30px;
  padding-left: 60px;
  display: flex;
  align-items: center;
}

.years-badge {
  position: absolute;
  top: 40%;
  left: -40px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-orange);
  letter-spacing: 1.5px;
  text-transform: lowercase;
  z-index: 10;
  white-space: nowrap;
}

.image-grid {
  position: relative;
  padding-left: 50px;
  width: 100%;
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 78, 154, 0.15);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.circle-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 15px 40px rgba(1, 78, 154, 0.2);
  z-index: 5;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-new {
  padding-left: 40px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discover-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(1, 78, 154, 0.3);
}

.discover-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(1, 112, 191, 0.4);
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .about-images-new {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
    display: block;
  }

  .years-badge {
    position: static;
    transform: none;
    margin-bottom: 20px;
    display: block;
    text-align: center;
  }

  .image-grid {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .circle-image {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
  }

  .content-new {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-new .vm-mission-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
  }

  .content-new .vm-mission-items li {
    white-space: normal;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .about-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .main-image {
    min-height: 300px;
    max-height: 400px;
  }

  .main-image.portrait {
    min-height: 350px;
    max-height: 450px;
  }

  .main-image.landscape {
    min-height: 250px;
    max-height: 350px;
  }

  .circle-image {
    width: 120px;
    height: 120px;
    bottom: -15px;
    left: -15px;
  }

  .about-images-new {
    padding-left: 0;
    padding-right: 0;
  }

  .content-new {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* About Hero Section */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-hero .highlight {
  color: #ffd700;
}

.about-hero .lead {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

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

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

.about-hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-hero-image img:hover {
  transform: scale(1.05);
}

/* Vision & Mission Section */
.vision-mission {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Header */
.vision-mission-header {
  text-align: center;
  margin-bottom: 55px;
}

.vision-mission-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.vision-mission-header .highlight {
  color: #014E9A;
}

.vision-mission-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto;
}

/* Grid */
.vm-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 10px;
}

/* Cards */
.vm-box {
  background: white;
  border-radius: 16px;
  padding: 42px 38px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e5e7eb;
}

.vm-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(1, 78, 154, 0.1);
}

/* Icon + Title */
.vm-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.vm-icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #014E9A, #00A8E8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-icon-circle i {
  font-size: 2rem;
  color: white;
}

.vm-box:hover .vm-icon-circle {
  transform: scale(1.05);
}

.vm-heading h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 3px;
}

.vm-heading span {
  font-size: 0.85rem;
  color: #0170BF;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* About Section - Using VM Styles */
.content-new .vm-heading {
  display: block;
  margin-bottom: 20px;
}

.content-new .vm-heading span {
  display: block;
  margin-bottom: 10px;
}

.content-new .vm-heading h3 {
  font-size: 1.9rem;
  line-height: 1.4;
}

.content-new .vm-heading h3 em {
  font-style: normal;
  color: var(--primary-color);
}

.content-new .vm-heading h3 span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: inherit;
  text-transform: none;
  letter-spacing: normal;
}

.content-new .vm-mission-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 15px;
  margin-bottom: 25px;
}

.content-new .vm-mission-items li {
  white-space: normal;
  align-items: flex-start;
}

.content-new .vm-mission-items li span {
  word-break: break-word;
  line-height: 1.5;
}

/* Content */
.vm-text {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Mission List */
.vm-mission-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-mission-items li {
  display: flex;
  gap: 13px;
  margin-bottom: 16px;
  color: #4a5568;
  font-size: 1.02rem;
  line-height: 1.6;
}

.vm-mission-items li:last-child {
  margin-bottom: 0;
}

.check-box {
  width: 24px;
  height: 24px;
  background: #014E9A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-box i {
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
}

.vm-mission-items li:hover {
  color: #1a202c;
}

.vm-mission-items li:hover .check-box {
  background: #00A8E8;
  transform: scale(1.1);
}

/* Tag */
.vm-tag {
  display: inline-block;
  padding: 9px 18px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 0.88rem;
  color: #014E9A;
  font-weight: 600;
  margin-top: 22px;
  border: 1px solid #e2e8f0;
}

.vm-box:hover .vm-tag {
  background: #014E9A;
  color: white;
  border-color: #014E9A;
}

/* Responsive */
@media (max-width: 991px) {
  .content-new .vm-mission-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
  }
}

@media (max-width: 768px) {
  .vision-mission {
    padding: 60px 0;
  }

  .vision-mission-header h2 {
    font-size: 2.2rem;
  }

  .vision-mission-header p {
    font-size: 1rem;
  }

  .vm-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vm-box {
    padding: 35px 30px;
  }

  .vm-icon-circle {
    width: 64px;
    height: 64px;
  }

  .vm-icon-circle i {
    font-size: 1.75rem;
  }

  .vm-heading h3 {
    font-size: 1.7rem;
  }

  .content-new .vm-heading h3 {
    font-size: 1.7rem;
  }

  .vm-text,
  .vm-mission-items li {
    font-size: 0.98rem;
  }

  .content-new .vm-mission-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }

  .content-new .vm-mission-items li {
    white-space: normal;
    gap: 8px;
    font-size: 0.95rem;
  }

  .content-new .vm-mission-items .check-box {
    flex-shrink: 0;
    min-width: 20px;
    width: 20px;
    height: 20px;
  }

  .content-new .vm-mission-items .check-box i {
    font-size: 0.65rem;
  }

  .content-new .vm-mission-items li span {
    word-break: break-word;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .content-new .vm-mission-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
  }

  .content-new .vm-mission-items li {
    font-size: 0.9rem;
    gap: 6px;
  }

  .content-new .vm-mission-items li span {
    word-break: break-word;
    line-height: 1.3;
  }

  .check-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .check-box i {
    font-size: 0.6rem;
  }

@media (max-width: 480px) {
  .vm-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vm-box {
    padding: 28px 24px;
  }
}

/* Company Values Section */
.company-values {
  padding: 80px 0;
  background: white;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-heading .highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading p {
  font-size: 1.2rem;
  color: #666;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

.value-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(360deg);
}

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

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

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Statistics Section */
.statistics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd700;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
}

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

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: rgba(102, 126, 234, 0.95);
  transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #ffd700;
  color: white;
  transform: scale(1.1);
}

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

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

.team-info p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Timeline Section */
.timeline-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(1, 78, 154, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 168, 232, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
  z-index: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, 
    transparent 0%,
    #014E9A 10%, 
    #0170BF 30%, 
    #00A8E8 50%, 
    #0170BF 70%, 
    #014E9A 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 168, 232, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  opacity: 0;
  animation: fadeInTimeline 0.6s ease forwards;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

@keyframes fadeInTimeline {
  to {
    opacity: 1;
  }
}

.timeline-item:nth-child(odd) {
  padding-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 60px;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #014E9A 0%, #00A8E8 100%);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 
    0 0 0 3px rgba(0, 168, 232, 0.2),
    0 4px 12px rgba(0, 168, 232, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.4);
  background: linear-gradient(135deg, #FF6B35 0%, #00A8E8 100%);
  box-shadow: 
    0 0 0 4px rgba(255, 107, 53, 0.25),
    0 6px 20px rgba(255, 107, 53, 0.4);
}

.timeline-item:nth-child(odd)::before {
  right: -9px;
}

.timeline-item:nth-child(even)::before {
  left: -9px;
}

.timeline-content {
  background: white;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(1, 78, 154, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(1, 78, 154, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #014E9A, #0170BF, #00A8E8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.timeline-content:hover::before {
  transform: scaleX(1);
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(1, 78, 154, 0.18);
  border-color: rgba(0, 168, 232, 0.2);
}

.timeline-header {
  padding: 30px 35px 25px;
  background: linear-gradient(135deg, rgba(1, 78, 154, 0.03) 0%, rgba(0, 168, 232, 0.03) 100%);
  border-bottom: 1px solid rgba(1, 78, 154, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.timeline-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 35px;
  right: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 78, 154, 0.2), transparent);
}

.timeline-body {
  padding: 25px 35px 30px;
}

.timeline-year {
  position: absolute;
  top: -15px;
  right: 30px;
  padding: 10px 26px;
  background: linear-gradient(135deg, #014E9A 0%, #00A8E8 100%);
  color: white;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 
    0 6px 20px rgba(1, 78, 154, 0.3),
    0 0 0 4px white;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: auto;
  left: 30px;
}

.timeline-content:hover .timeline-year {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(1, 78, 154, 0.4),
    0 0 0 4px white;
}

.timeline-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.timeline-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FF6B35, #00A8E8);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.timeline-content:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.timeline-content:hover .timeline-icon::before {
  opacity: 0.6;
}

.timeline-icon i {
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.timeline-content:hover .timeline-icon i {
  transform: scale(1.1);
}

.timeline-text {
  flex: 1;
}

.timeline-content h4 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a202c;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.timeline-content:hover h4 {
  color: #014E9A;
}

.timeline-subtitle {
  font-size: 0.85rem;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.timeline-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.timeline-achievement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(1, 78, 154, 0.08) 0%, rgba(0, 168, 232, 0.08) 100%);
  border-radius: 30px;
  border: 2px solid rgba(1, 78, 154, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-achievement::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.12), transparent);
  transition: left 0.5s ease;
}

.timeline-content:hover .timeline-achievement::before {
  left: 100%;
}

.timeline-content:hover .timeline-achievement {
  background: linear-gradient(135deg, rgba(1, 78, 154, 0.12) 0%, rgba(0, 168, 232, 0.12) 100%);
  border-color: rgba(0, 168, 232, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.15);
}

.timeline-achievement i {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #014E9A, #00A8E8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timeline-content:hover .timeline-achievement i {
  transform: rotate(180deg) scale(1.15);
}

.timeline-achievement span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #014E9A;
  transition: color 0.3s ease;
}

.timeline-content:hover .timeline-achievement span {
  color: #0170BF;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

.cta-buttons .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: #ffd700;
  color: #333;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

  .about-hero .lead {
    font-size: 1.2rem;
  }

  .timeline-section {
    padding: 60px 0;
  }

  .timeline {
    padding: 40px 0;
  }

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

  .timeline-item {
    width: 100%;
    padding-left: 80px !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-bottom: 60px;
  }

  .timeline-item::before {
    left: 18px !important;
    top: 30px;
  }

  .timeline-year {
    position: static;
    margin-bottom: 15px;
    display: inline-block;
  }

  .timeline-header {
    padding: 25px 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .timeline-body {
    padding: 20px 30px 25px;
  }

  .timeline-icon {
    width: 70px;
    height: 70px;
  }

  .timeline-icon i {
    font-size: 2rem;
  }

  .timeline-content h4 {
    font-size: 1.4rem;
  }

  .timeline-content p {
    font-size: 1rem;
  }

  .timeline-achievement {
    padding: 10px 20px;
  }

  .timeline-achievement span {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

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

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

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

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

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

  .timeline-section {
    padding: 50px 0;
  }

  .timeline {
    padding: 30px 0;
  }

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

  .timeline-item {
    padding-left: 60px !important;
    margin-bottom: 50px;
  }

  .timeline-item::before {
    left: 8px !important;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .timeline-year {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .timeline-header {
    padding: 20px 20px 15px;
    gap: 12px;
  }

  .timeline-body {
    padding: 15px 20px 20px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .timeline-icon i {
    font-size: 1.8rem;
  }

  .timeline-content h4 {
    font-size: 1.25rem;
  }

  .timeline-subtitle {
    font-size: 0.8rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }

  .timeline-achievement {
    padding: 9px 18px;
  }

  .timeline-achievement i {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .timeline-achievement span {
    font-size: 0.85rem;
  }
}

