  body,
  html {
      margin: 0;
      padding: 0;
      height: 100%;
      /* Light color for better readability */
      font-family: "Poppins", sans-serif;
      /* Modern, clean font */
      background: #0301 11;
      /* Dark background for contrast */
  }

  /* Navigation bar styling */
/* Initial style */
.navbar-custom {
    padding: 2rem 15rem;
    background-color: transparent;
    /* Transparent background initially */
    color: white;
    /* White text color */
    transition: background-color 0.5s ease;
    /* Smooth transition for background color */
}

/* Scrolled style */
.navbar-custom.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent gray background when scrolled */
}

  .navbar-brand {
      font-weight: 600;
      color: #ffffff !important;
      /* Ensuring logo is white */
      font-size: 1.8em;
      /* Slightly larger logo text */
  }

  .navbar-nav .nav-link {
      font-size: 1.2em;
      /* Slightly larger nav text */
      color: #f8f9fa;
      transition: color 0.3s ease-in-out;
  }

  .navbar-nav .nav-link:hover {
      color: #adb5bd;
      /* Subtle hover color */
  }

  /* Hero section styling */
  .hero-section {
background: url("index.jpg") no-repeat center center/cover;
      height: 80vh;
      /* Reduced height for more content visibility */
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      /* Darker overlay for deeper contrast */
  }

  .hero-text {
      text-align: center;
      animation: fadeIn 2s ease-out forwards;
  }

  .hero-text h1 {
      font-size: 4rem;
      /* More impactful size */
      font-weight: 600;
      /* Bold weight for main title */
      margin-bottom: 0.5rem;
  }

  .hero-text p {
      font-size: 1.4rem;
      font-weight: 300;
      /* Light weight for description */
      max-width: 700px;
      /* Wider for better legibility */
      margin: auto;
      /* Centering paragraph */
  }

  /* Keyframes for animations */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .dropdown-menu {
      margin-top: 0;
      border-radius: 0.5rem;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .dropdown-item {
      color: #333;
      padding: 10px 20px;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
      color: #ffffff;
      background-color: #007bff;
  }

  .navbar-nav .dropdown-menu {
      position: absolute;
  }

  .nav-item:hover .nav-link {
      color: #007bff;
  }

  .nav-item:hover .dropdown-menu {
      display: block;
  }



