\body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #222;
}

/* Banner */
.banner.culture-banner {
  background: url('hero.jpg') center/cover no-repeat, #181818;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner.culture-banner .txt {
  text-align: center;
  color: #fff;
  background: rgba(24,24,24,0.55);
  padding: 3rem 1rem 2rem 1rem;
}
.banner.culture-banner h2 {
  font-size: 2.8rem;
  margin-top: 60px;
}
.banner.culture-banner p {
  font-size: 1.2rem;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}

/* Values */
.values .value-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}
.value {
  padding: 20px;
  background: #eee;
  border-radius: 8px;
  opacity: 0.6;
}
.value.active {
  background: #222;
  color: #fff;
  opacity: 1;
}
.carousel-btn {
  background: #222;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.timeline {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(120deg, #f8fcff 60%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}
.timeline h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  color: #222;
}
.timeline-outer {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00fff7 0%, #9d4dff 100%);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.18;
  transition: opacity 0.3s;
}
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.timeline-icon {
  background: linear-gradient(135deg, #00fff7 0%, #9d4dff 100%);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-right: 1.5rem;
  box-shadow: 0 2px 16px #00fff7aa, 0 0 0 4px #fff3;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s;
}
.timeline-item.visible .timeline-icon {
  animation: pulse-glow 1.2s;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 2px 16px #00fff7aa, 0 0 0 4px #fff3; }
  50% { box-shadow: 0 2px 32px #9d4dffcc, 0 0 0 12px #00fff733; }
  100% { box-shadow: 0 2px 16px #00fff7aa, 0 0 0 4px #fff3; }
}
.timeline-content {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 2px 16px rgba(0,255,255,0.08);
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.01em;
  min-width: 0;
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
  border-left: 3px solid #9d4dff33;
  transition: border 0.2s;
}
.timeline-item:hover .timeline-content {
  border-left: 3px solid #9d4dff;
  background: rgba(255,255,255,0.98);
}
.timeline-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .timeline-outer {
    max-width: 98vw;
  }
  .timeline-line {
    left: 20px;
  }
  .timeline-item {
    margin-bottom: 2rem;
  }
  .timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 1rem;
  }
  .timeline-content {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .timeline-line {
    left: 12px;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .timeline-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .timeline-content {
    border-left: none;
    border-top: 3px solid #9d4dff33;
    width: 100%;
  }
  .timeline-item:hover .timeline-content {
    border-top: 3px solid #9d4dff;
  }
}
/* Team */
.team-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 1rem;
  scroll-snap-type: x mandatory;
}

.team-card {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  scroll-snap-align: start;
  background: #881d1d;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  border-radius: 50%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.member {
  background: #eee;
  padding: 20px;
  border-radius: 8px;
}
/* Modern futuristic video grid */
.culture-videos-grid {
  padding: 60px 20px;
  text-align: center;
}
.culture-videos-grid h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.videos-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.video-card {
  background: rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 1.2rem 1rem 1.5rem 1rem;
  transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
  max-width: 340px;
  width: 100%;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 48px 0 rgba(0,255,255,0.18), 0 0 0 2px #9d4dff;
  border: 1.5px solid #9d4dff;
}
.video-glass {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.18);
}
.video-glass iframe {
  width: 100%;
  height: 190px;
  border: none;
  display: block;
  background: #000;
  border-radius: 16px;
  transition: filter 0.2s;
}
.video-card:hover .video-glass iframe {
  filter: brightness(1.1) drop-shadow(0 0 8px #9d4dff);
}
.video-title {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: #9d4dff;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px #000a;
}

/* Responsive */
@media (max-width: 900px) {
  .videos-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .video-card {
    max-width: 98vw;
  }
  .video-glass iframe {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .video-glass iframe {
    height: 160px;
  }
}
.image-carousel-section {
  padding: 40px 0 20px 0;
  text-align: center;
}
.image-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.carousel-images {
  position: relative;
  width: 340px;
  height: 220px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #fff;
}
.carousel-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.carousel-image.active {
  opacity: 1;
  z-index: 2;
}
.image-carousel .carousel-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.image-carousel .carousel-btn:hover {
  background: #9d4dff;
}
@media (max-width: 600px) {
  .carousel-images {
    width: 98vw;
    height: 140px;
  }
}
/* Testimonials */
.testimonials blockquote {
  font-style: italic;
  margin: 0 10%;
  display: none;
}
.testimonials blockquote.active {
  display: block;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
}
.testimonial-dots button.active {
  background: #8b0000;
}

/* Social Embed */

/* --- Social Grid: horizontal scroll, many cards --- */
.social-section {
  padding: 60px 20px 30px 20px;
  background: #f8fcff;
  text-align: center;
}
.social-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.social-grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: flex-start;
  align-items: stretch;
  scroll-snap-type: x mandatory;
  margin-bottom: 2.5rem;
}
.social-card {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0,255,255,0.10);
  padding: 1rem;
  min-width: 340px;
  max-width: 360px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  transition: box-shadow 0.2s, border 0.2s;
}
.social-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,255,255,0.18);
  border: 1.5px solid #00fff7;
}
@media (max-width: 900px) {
  .social-grid {
    gap: 1.2rem;
    padding-bottom: 8px;
  }
  .social-card {
    min-width: 90vw;
    max-width: 98vw;
    min-height: 320px;
  }
}

/* --- Activities Grid (below social) --- */
.activities-section {
  padding: 40px 20px 60px 20px;
  background: #fff;
  text-align: center;
}
.activities-section h2 {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  color: #8b0000;
  letter-spacing: 0.03em;
}
.activities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.activity-card {
  background: linear-gradient(120deg, #f8fcff 60%, #e0e7ff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  border: 1.5px solid #eee;
  padding: 1.5rem 1.2rem;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
}
.activity-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,255,255,0.10);
  border: 1.5px solid #9d4dff;
}
.activity-card .icon {
  font-size: 2.2rem;
  color: #9d4dff;
  margin-bottom: 1rem;
}
.activity-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #222;
}
.activity-card p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}
@media (max-width: 700px) {
  .activities-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  .activity-card {
    min-width: 90vw;
    max-width: 98vw;
  }
}
/* CTA */
.cta .btn {
  background: #222;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
}