/* ------------- Intro Section --------------- */
.about-section {
  padding: 102px 0 80px 0;
  background-color: var(--secondary);
  margin-top: 81px;
  color: var(--primary);
  text-align: center;
}

.about-image-container {
  width: 100%;
  border-radius: 17px;
  overflow: hidden;
  background-color: var(--secondary) !important;
}

.about-image-container img {
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 7px;
}

.about-section-heading {
  font-size: 2.75rem;
  max-width: 1020px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-section-content {
  font-size: 17px;
  color: #d9d9d9;
  max-width: 1100px;
  font-weight: 300;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .about-section-heading {
    font-size: 30px;
  }
  .about-section-content {
    font-size: 14px;
  }
  .about-section {
    padding: 48px 0;
  }
}
.about-section-heading,
.about-section-content,
.about-image-container img {
  opacity: 0;
  transition: all 1s ease;
}

.about-section-heading {
  transform: translateY(80px);
}
.about-section-content {
  transform: translateY(80px);
}
.about-image-container img {
  transform: scale(0.8);
}

.about-section-heading.animated {
  transform: translateY(0);
  opacity: 1;
}
.about-section-content.animated {
  transform: translateY(0);
  opacity: 1;
}
.about-image-container img.animated {
  transform: scale(1);
  opacity: 1;
}

/* ------------------vision------------------ */
.vision-mission-section {
  padding: 100px 0;
}

.card-container {
  padding: 60px;
  background-color: #f6f6f6 !important;
  border-radius: 12px;
  height: 100% ;
  min-height: 398px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-mission-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card-container h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary);
}
.card-container p {
  font-family: var(--ff-secondary);
  font-size: 15px;
  font-weight: 400;
}
.vision-mission-section .row.align-items-center > div {
  display: flex;
  align-items: stretch;
}

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

  .card-container {
    padding: 30px;
  }

  .vision-mission-section img {
    max-height: 320px;
    margin-bottom: 30px;
  }
  .vision-image {
    margin-bottom: 0px;
    margin-top: 30px;
  }
  .vision-mission-section .row.align-items-center {
    flex-direction: column;
  }

  .vision-mission-section .col-lg-5,
  .vision-mission-section .col-lg-7 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .vision-mission-section {
    padding: 48px 0;
  }

  .card-container {
    padding: 25px;
  }

  .vision-mission-section img {
    max-height: 260px;
    margin-bottom: 25px;
  }
  .vision-image {
    margin-bottom: 0px;
    margin-top: 25px;
  }
}

/* ---- Fade-up animation base ---- */
.vision-mission-section .card-container,
.vision-mission-section img {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease-out;
}

/* ---- When visible ---- */
.vision-mission-section .card-container.animated,
.vision-mission-section img.animated {
  opacity: 1;
  transform: translateY(0);
}

/* -------------timeline------------------ */
.journey-section {
  padding: 80px 0;
  background-color: var(--secondary);
}

.journey-section-heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
}
.journey-content {
  max-height: 807px !important;
}

.journey-content-heading {
  font-size: 32px;
  font-weight: 600;
  max-width: 654px;
  line-height: 48.6px;
  color: var(--primary);
}
.journey-content-text {
  font-family: var(--ff-secondary);
  font-weight: 300;
  font-size: 20px !important;
  max-width: 595px;
  color: var(--primary) !important;
}

.image-wrapper {
  margin-top: 30px;
  width: 100%;
  height: 100%;
  max-width: 674px !important;
  max-height: 358px !important;
  overflow: hidden;
  background-color: #fff;
  border-radius: 13px;
}

.owl-carousel .item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: opacity 0.6s ease;
}

.timeline-wrapper {
  position: relative;
  max-height: 820px;
  overflow: hidden;
}

.timeline {
  position: relative;
  margin-left: 40px;
  padding-left: 30px;
  border-left: 2px dashed rgba(255, 255, 255, 0.3);
  transition: transform 0.6s ease;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  transition: all 0.5s ease;
  opacity: 0.5;
}

.timeline-item.active {
  opacity: 1;
}

.timeline-dot {
  position: absolute;
  left: -39px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #555;
  transition: all 0.4s ease;
}

.timeline-item.active .timeline-dot {
  background-color: #fff;
  box-shadow: 0 0 10px #fff;
  transform: scale(1.3);
}

.timeline-content h4,
.timeline-content h5,
.timeline-content p {
  color: #bbb;
  transition: color 0.5s ease;
}
.timeline-content h5 {
  font-size: 24px;
  font-weight: 600;
}
.timeline-content p {
  font-family: var(--ff-secondary);
  font-size: 16px;
  font-weight: 300;
}

.timeline-item.active h4,
.timeline-item.active h5,
.timeline-item.active p {
  color: #fff;
}

#journeyImage {
  width: 100%;
  height: auto;
  border-radius: 12px;
  opacity: 1;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
@media (max-width: 768px) {
  .journey-section {
    padding: 48px 0;
  }
  .journey-section-heading {
    font-size: 30px;
  }
  .journey-content-heading {
    text-align: center;
    font-size: 22px;
    line-height: 35.6px;
  }
  .journey-content-text {
    font-size: 15px !important;
    text-align: center;
    color: var(--primary) !important;
  }
  .image-wrapper {
    max-width: 654px;
    max-height: 202px !important;
  }

  .timeline-wrapper {
    position: relative;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
  }

  .timeline {
    display: inline-flex;
    border-left: none;
    border-top: 3px dashed rgba(255, 255, 255, 0.3);
    padding-left: 0;
    padding-top: 35px;
  }
  .timelines {
    padding-top: 20px;
  }
  .timeline-item {
    display: inline-block;
    width: 290px;
    margin: 0 35px;
    opacity: 0.5;
    text-align: center;
    scroll-snap-align: center;
    transition: all 0.4s ease;
    white-space: normal;
  }

  .timeline-item.active {
    opacity: 1;
  }
  .timeline-dot {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #888;
    transition: all 0.4s ease;
    z-index: 2;
  }

  .timeline-item.active .timeline-dot {
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
    transform: translate(-50%, -50%) scale(1.3);
  }

  .timeline-content h4,
  .timeline-content h5,
  .timeline-content p {
    color: #bbb;
    transition: color 0.5s ease;
    text-align: center;
    word-wrap: break-word;
  }

  .timeline-item.active h4,
  .timeline-item.active h5,
  .timeline-item.active p {
    color: #fff;
  }

  .timeline-content p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }
  .timeline-content {
    display: block;
    margin: 0 auto;
  }
}

/* ---------------innovation---------------- */
.innovation-section {
  padding: 100px 0;
}

.innovation-section-content {
  margin-bottom: 58px;
}

.innovation-section-content h3 {
  max-width: 438px;
  font-weight: 700;
  font-size: 38px;
}

.innovation-section-content p {
  max-width: 488px;
  color: #696868;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--ff-secondary);
}

.innovation-card {
  padding: 36px 24px;
  background-color: var(--primary);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.innovation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.innovation-card img,
.innovation-card h6 {
  margin-bottom: 20px;
}

.innovation-card h6 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
  width: 100%;
  max-width: 241px;
  line-height: 36px;
}

.innovation-card p {
  color: #696868;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .innovation-section-content {
    flex-direction: column;
    text-align: center;
  }

  .innovation-section-content h3,
  .innovation-section-content p {
    max-width: 100%;
  }

  .innovation-section-content p {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .innovation-section {
    padding: 48px 0;
  }
}
/* --- Initial hidden state --- */
.innovation-section-heading,
.innovation-section-text,
.innovation-card {
  opacity: 0;
  transition: all 0.9s ease;
}

/* --- Slide directions --- */
.innovation-section-heading {
  transform: translateX(-80px);
}
.innovation-section-text {
  transform: translateX(80px);
}

/* --- Fade-up for cards --- */
.innovation-card {
  transform: translateY(60px);
}

/* --- When visible --- */
.innovation-section-heading.animated,
.innovation-section-text.animated,
.innovation-card.animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* -------------------podacsts-section---------------- */
.podcasts-section {
  padding: 100px 0;
  background-color: var(--secondary);
}
.podcasts-section h2 {
  color: var(--primary);
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 57px;
}
.podcast-image-wrapper {
  width: 100%;
  height: 100%;
  max-width: 454px;
  max-height: 528px;
}
.podcast-image-wrapper img {
  width: 100%;
  height: 100%;
}
.podcasts-content {
  background-color: #050505;
}
.podcasts-details-section {
  padding: 30px 0;
}
.podcasts-details-section p {
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 40px;
}
.podcasts-details-section h5 {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  color: var(--primary);
}
.podcasts-details-section span {
  font-size: 16px;
  display: block;
  color: var(--primary);
  font-weight: 400;
  font-family: var(--ff-secondary);
  margin-bottom: 42px !important;
}
@media (max-width: 768px) {
  .podcasts-section {
    padding: 48px 0;
  }
  .podcasts-section h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .podcasts-details-section p {
    font-size: 15px;
  }
  .spotify-section iframe {
    width: 100%;
  }
}
/* --- Initial hidden states --- */
.podcasts-section h2,
.podcast-image-wrapper,
.podcasts-details-section p,
.podcasts-details-section h5,
.podcasts-details-section span,
.spotify-section iframe {
  opacity: 0;
  transition: all 1s ease;
}

/* Slide-in for heading */
.podcasts-section h2 {
  transform: translateX(-80px);
}

/* Paragraph slides in from right */
.podcasts-details-section p {
  transform: translateX(80px);
}

/* Fade-up for image and others */
.podcast-image-wrapper,
.podcasts-details-section h5,
.podcasts-details-section span,
.spotify-section iframe {
  transform: translateY(60px);
}

/* --- Active animation states --- */
.podcasts-section h2.animated,
.podcast-image-wrapper.animated,
.podcasts-details-section p.animated,
.podcasts-details-section h5.animated,
.podcasts-details-section span.animated,
.spotify-section iframe.animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------our team--------------- */
/* .our-team-section {
  padding: 100px 0;
}
.our-team-section h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 58px;
  margin-bottom: 58px;
  text-align: center;
}
.our-team-section-content h3 {
  font-size: 38px;
  font-weight: 600;
}
.our-team-section-content p {
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #696868 !important;
  font-family: var(--ff-secondary) !important;
}
.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  display: block;
  transition: all 0.4s ease;
}

.team-card:hover img {
  filter: brightness(0.7);
  transform: scale(1.05);
}

.team-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: all 0.3s ease;
  color: var(--primary);
  border-radius: 0 0 12px 12px;
}

.team-card:hover .team-details {
  opacity: 1;
  transform: translateY(0);
  border-radius: 0 0 12px 12px;
  pointer-events: auto;
}
.team-details h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-details p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 768px) {
  .our-team-section {
    padding: 48px 0;
  }
  .our-team-section h2 {
    font-size: 30px;
    margin: 0 0 25px;
  }
  .our-team-section-content {
    margin: 0 0 25px;
  }
  .our-team-section-content h3 {
    font-size: 26px;
  }
  .our-team-section-content p {
    font-size: 18px !important;
  }
}

.our-team-section h2,
.our-team-section-content h3,
.our-team-section-content p,
.team-card {
  opacity: 0;
  transition: all 1s ease;
}

.our-team-section h2,
.our-team-section-content h3 {
  transform: translateX(-80px);
}

.our-team-section-content p {
  transform: translateX(80px);
}

.team-card {
  transform: translateY(60px);
}

.our-team-section h2.animated,
.our-team-section-content h3.animated,
.our-team-section-content p.animated,
.team-card.animated {
  opacity: 1;
  transform: translate(0, 0);
} */
