html {
  scroll-behavior: smooth;
}

p {
  padding: 5px 10px;
  
}


.about-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('Assets/dscmain1.jpg') center/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.05);
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.about-motto {
  font-family: 'Noto Sans Devanagari', sans-serif;
  letter-spacing: 2px;
}

.highlight {
  color: #ffde59;
}

.btn-outline-light:hover {
  background-color: #ffde59;
  color: black;
  border-color: #ffde59;
}

#our-journey {
  scroll-margin-top: 40px;
}
@media (max-width: 768px) {
  #our-journey {
  scroll-margin-top: 0px;
}
  
}
.about {
  background-color: #29335C;
}

.history {
  /* background-color: #29335C; */
  color: #ffffff;
}

@media (max-width:768px) {
  .ouruni {
    font-size: 30px;
    text-align: center;
    padding: 5px;
  }
}

/* div.scroll-container {
  background-color: rgb(255, 255, 255);
  overflow: auto;
  white-space: nowrap;
  justify-content:space-around;
    display: flex;
}

div.scroll-container img {
  padding: 0px;
  height: 300px;
  width: auto;
} */

.body12 {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #ffffff;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 90vw;
  max-width: 500px;
  aspect-ratio: 3 / 2;
  perspective: 1000px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 1s ease, filter 1s ease, z-index 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Optional: Enhance touch targets on small devices */
@media (max-width: 768px) {
  .slideshow-container {
    max-width: 70vw;

  }

  .slide img {
    border-radius: 5px;
  }
}




/* Custom CSS */
.vc {
  /* background-color: #29335C; */
}

.container {
  max-width: 1200px;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 3rem;
}

.team-member-card {
  background-color: #2a2a4a;
  /* Slightly lighter dark background for cards */
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 2px 4px 8px rgba(44, 49, 129, 0.2);
  /* Removed flex properties from here, now handled by inner Bootstrap row */
}

.team-member-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  /* Removed margin-right, spacing now handled by Bootstrap columns */
  flex-shrink: 0;
  /* Prevent image from shrinking */
  border: 3px solid #6c63ff;
  /* Border color for the circular image */
}

.team-member-details {
  /* flex-grow is not needed here as it's within a col-6 */
  min-width: 0;
  /* Allow content inside to shrink if needed */
}

.team-member-name {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.team-member-title {
  font-size: 1rem;
  color: #e5ae57;
  margin-bottom: 0.8rem;
}

.team-member-bio {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #6c63ff;
  /* Hover color for social icons */
}

.timeline-dot {
      width: 1rem;
      height: 1rem;
    }
    .timeline-img {
      max-width: 100%;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

/* No specific responsive adjustments for stacking for the inner card layout,
           as the request implies always side-by-side using col-6 for both halves.
           Text alignment within details will remain text-start. */
