:root {
  --primary-purple: #6a0dad;
  --secondary-purple: #8a2be2;
  --light-purple: #e6d7ff;
  --dark-purple: #4b0082;
  --gradient: linear-gradient(135deg, #6a0dad 0%, #8a2be2 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Hero Carousel */
#heroCarousel {
  height: 100vh;
  min-height: 600px;
}

.carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.carousel-caption {
  position: relative;
  right: auto;
  left: auto;
  padding: 2rem;
  color: white;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: var(--primary-purple);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .carousel-caption {
    padding: 1rem;
  }

  h1.display-4 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Cards */
.highlight-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(106, 13, 173, 0.15);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 2rem;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(106, 13, 173, 0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

.team-info h5 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-purple);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-avatar img {
  width: 100px; /* Adjust size as needed */
  height: 160px; /* Adjust size as needed */
  border-radius: 50%; /* Make it circular */
}

.team-info a {
  color: #0077b5; /* LinkedIn color */
  margin-left: 5px; /* Space between name and icon */
}

/* Events */
.event-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(106, 13, 173, 0.15);
}

.event-date {
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.event-status {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-ongoing {
  background: #d4edda;
  color: #155724;
}

.status-upcoming {
  background: #cce7ff;
  color: #004085;
}

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 40px 0 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .disp-nani-none{
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .team-card {
    text-align: center;
  }

  .team-card .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .team-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
