 /* Basic Navbar Styles */
  .nav-item {
    font-family: 'Times New Roman', serif;  /* Font style */
    color: black;  /* Black text */
    font-weight: bold;  /* Bold text */
    margin-right: 15px;  /* Space between items */
    transition: all 0.3s ease;  /* Smooth transition effect */
  }


  .nav-link {
    color: black !important;  /* Ensures text color is black */
    padding: 12px 20px;  /* Padding for better clickable area */
    text-decoration: none;  /* Remove underline */
  }

  /* Hover Effect */
  .nav-item:hover {
    color: #007bff;  /* Change text color to blue on hover */
    cursor: pointer;  /* Pointer cursor on hover */
  }

  .nav-item:hover .dropdown-menu {
    display: block;  /* Show dropdown on hover */
    opacity: 1;
    transition: opacity 0.3s ease;  /* Fade-in effect for dropdown */
  }

  /* Dropdown Menu Styling */
  .dropdown-menu {
    display: none;  /* Hide dropdown by default */
    background-color: #f9f9f9;  /* Light background for dropdown */
    border: 1px solid #ddd;  /* Border for dropdown */
    border-radius: 5px;  /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Shadow for dropdown */
  }

  .dropdown-item {
    font-family: 'Times New Roman', serif;
    color: black !important;  /* Black text color for dropdown items */
    padding: 10px 15px;  /* Padding for dropdown items */
    text-decoration: none;
    transition: background-color 0.3s ease;  /* Smooth transition for background */
  }

  

  /* Adjusting sub-arrow */
  .sub-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .nav-item:hover .sub-arrow {
    transform: rotate(180deg);  /* Rotate arrow on hover */
  }

  /* Right-aligned items */
  .nav-item:last-child {
    margin-right: 0;  /* Remove margin from the last item */
  }

/* Attractive styling for the text */
.attractive-text {
    font-family: Lucida Sans Unicode, Microsoft Sans Serif, Segoe UI Symbol, STIXGeneral, Cambria Math, Arial Unicode MS, sans-serif;; /* Classic font */
    font-size: 24px;  /* Larger font size for prominence */
    font-weight: bold;  /* Bold text for emphasis */
    color: #000000;  /* White text for a clean, modern look */
    letter-spacing: 2px;  /* Slight letter-spacing for elegance */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);  /* Soft shadow for depth */
    background: linear-gradient(45deg, #6a11cb, #2575fc);  /* Gradient background effect */
    -webkit-background-clip: text;  /* Clip the background to the text */
    background-clip: text; /* Apply the gradient effect to the text */
    padding: 5px 15px;  /* Padding around the text for better spacing */
    border-radius: 5px;  /* Optional: Rounded corners for a softer look */
    display: inline-block;  /* Ensure text stays inline */
    transition: all 0.3s ease;  /* Smooth transition for hover effects */
}

/* Custom CSS to position the modal on the top right corner */
.custom-modal-top-right {
  position: fixed;
  top: 0; /* Align to the top */
  right: 0; /* Align to the right */
  transform: translate(0, 0); /* No need for vertical centering */
  width: 50%; /* Adjust width as needed */
  max-width: 100%; /* Ensure it doesn't exceed the viewport width */
  margin: 0; /* Remove default margins */
}

.modal-backdrop.show {
  opacity: 0.5; /* Ensure the backdrop is visible */
}

/* Additional CSS to ensure the modal displays properly */
.modal-dialog {
  max-width: 100%; /* Ensure the modal width does not exceed the viewport width */
}