 html {
      scroll-behavior: smooth;
    }

    /* Parallax Hero */
    .parallax-window {
      min-height: 100vh;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 2px 2px 5px #000;
    }

    /* Sticky Timeline Section */
    .sticky-title {
      position: sticky;
      top: 80px;
      background: #f8f9fa;
      padding: 10px 0;
      z-index: 10;
      text-align: center;
    }

    .timeline-section {
      background: linear-gradient(to right, #f8f9fa, #ffffff);
      padding: 80px 0;
    }

    .timeline-card {
      border-left: 5px solid #0d6efd;
      padding: 1.5rem;
      background-color: #fff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .timeline-card:hover {
      transform: translateY(-5px);
    }

    .timeline-year {
      font-size: 1.5rem;
      font-weight: bold;
      color: #0d6efd;
    }

    .feature-card {
      transition: all 0.3s ease-in-out;
      border: none;
      border-radius: 1rem;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    section {
      padding: 80px 0;
    }
	.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #e2e2e2;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-container.left {
  left: 0;
}

.timeline-container.right {
  left: 50%;
}

.timeline-container::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  border: 4px solid #0d6efd;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container.right::before {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  border-radius: 8px;
  position: relative;
  background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 25px;
  }

  .timeline-container.right {
    left: 0%;
  }

  .timeline-container::before {
    left: 15px;
  }
}
.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
}

    .video-header {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .overlay-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: rgba(0, 0, 0, 0.4); /* Optional overlay for text contrast */
      color: white;
      padding: 0 20px;
    }
#gallery video {
  object-fit: cover;
}
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 3; /* Ensure it's above video and overlay */
      background-color: rgba(0, 0, 0, 0.7); /* Optional: make navbar semi-transparent */
    }
	.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Input focus glow */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
  .navbar {
    background: linear-gradient(to right, #141e30, #243b55);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .navbar-brand {
    font-size: 1.8rem;
    color: #ffc107 !important;
    font-weight: 900;
    letter-spacing: 1px;
  }

  .navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 5px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background-color: #ffc107;
    color: #000 !important;
  }

  .navbar-toggler {
    border: 2px solid #ffc107;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28 255, 193, 7, 1 %29)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }