.hero-section {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100% !important;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.hero-line {
  display: block;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  letter-spacing: clamp(4px, 1vw, 8px);
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero-line:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-line:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-poem {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--headerFont);
  opacity: 0;
  margin: 20px 0;
  line-height: 1.8;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

.poem-author {
  font-size: 14px;
  opacity: 0.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

.journey-intro {
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(30px, 8vw, 80px);
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1;
}

.stat-label {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--headerFont);
  opacity: 0.7;
  margin-top: 8px;
  display: block;
}

.intro-quote {
  padding: 30px;
  background: var(--headerCOlor);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.intro-quote p {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--headerFont);
  margin-bottom: 10px;
  font-style: italic;
}

.intro-quote span {
  font-size: 14px;
  color: var(--headerFont);
  opacity: 0.6;
}

.timeline-section {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-title span {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: var(--headerFont);
  letter-spacing: 4px;
}

.title-decoration {
  width: 60px;
  height: 3px;
  background: var(--mainColor);
  margin: 15px auto 0;
  border-radius: 2px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
  width: 100%;
}

.journey-card {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.journey-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-card.card-large {
  grid-column: span 5;
  grid-row: span 2;
}

.journey-card.card-medium {
  grid-column: span 4;
  grid-row: span 1;
}

.journey-card.card-small {
  grid-column: span 3;
  grid-row: span 1;
}

.journey-card:nth-child(odd) {
  margin-top: 30px;
}

.journey-card:nth-child(even) {
  margin-bottom: 30px;
}

.journey-card-inner {
  background: var(--headerCOlor);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-card:hover .journey-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.journey-image-wrap {
  position: relative;
  flex: 1;
  min-height: 180px;
  overflow: hidden;
}

.journey-card.card-large .journey-image-wrap {
  min-height: 280px;
}

.journey-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6));
}

.journey-text {
  padding: 25px;
  flex-shrink: 0;
}

.journey-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--mainColor);
  background: rgba(100, 150, 200, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.journey-text h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--headerFont);
  margin-bottom: 12px;
  font-weight: 600;
}

.journey-poem {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--mainColor);
  font-style: italic;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--mainColor);
}

.journey-desc {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--headerFont);
  opacity: 0.7;
  line-height: 1.6;
}

.journey-footer {
  text-align: center;
  padding: 60px 20px;
  background: var(--headerCOlor);
  border-radius: 12px;
  margin: 40px 20px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.footer-poem {
  margin-bottom: 30px;
}

.footer-poem p {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--headerFont);
  font-style: italic;
  margin-bottom: 8px;
}

.footer-poem span {
  font-size: 14px;
  color: var(--headerFont);
  opacity: 0.6;
}

.footer-info p {
  font-size: 14px;
  color: var(--headerFont);
  opacity: 0.7;
  margin: 5px 0;
}

.footer-info p:first-child {
  color: var(--mainColor);
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .journey-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .journey-card.card-large {
    grid-column: span 4;
  }
  
  .journey-card.card-medium {
    grid-column: span 4;
  }
  
  .journey-card.card-small {
    grid-column: span 4;
  }
}

@media screen and (max-width: 900px) {
  .journey-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }
  
  .journey-card.card-large {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .journey-card.card-medium {
    grid-column: span 6;
  }
  
  .journey-card.card-small {
    grid-column: span 6;
  }
  
  .journey-card:nth-child(odd),
  .journey-card:nth-child(even) {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .journey-card.card-large .journey-image-wrap {
    min-height: 220px;
  }
}

.nav-titleBox.co {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.co-right {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  width: 100% !important;
  text-align: center !important;
}

@media screen and (max-width: 550px) {
  .hero-section {
    padding: 30px 15px;
  }
  
  .journey-intro {
    padding: 40px 15px;
  }
  
  .intro-stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .timeline-section {
    padding: 30px 15px;
  }
  
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .journey-card.card-large,
  .journey-card.card-medium,
  .journey-card.card-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .journey-card.card-large .journey-image-wrap {
    min-height: 200px;
  }
  
  .journey-text {
    padding: 20px;
  }
  
  .journey-footer {
    padding: 40px 15px;
    margin: 30px 15px;
  }
}
