body{
    margin: 0px;
    padding: 0px;
}

.navbar-brand img{
    height: 40px;
    width: 50px;
}

.navbar-brand{
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-brand > div{
    margin-left: 100px;
}

.navbar-nav{
    margin-right: 60px;
}

.dropdown-menu {
    max-height: 300px; /* Set the maximum height for the dropdown */
    overflow-y: auto;  /* Enable vertical scrolling */
}


.dropdown-item {
    font-size: 0.85rem;
}



/* Navbar Styles */
.navbar {
    background-color: #007bff; /* Change the background color */
    padding: 0.8rem 1rem; /* Adjust padding for the navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.navbar-brand {
    font-size: 1.5rem; /* Increase logo text size */
    color: #ffffff; /* Change logo text color */
}

.nav-link {
    color: #ffffff; /* Change link text color */
    transition: color 0.3s ease; /* Smooth color transition */
}

.nav-link:hover {
    color: #ffd700; /* Change link color on hover */
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: #ffffff; /* Change dropdown background color */
    border-radius: 0.5rem; /* Add border radius */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Add shadow to dropdown */
}

.dropdown-item {
    color: #333333; /* Change dropdown item text color */
    font-size: 0.9rem; /* Slightly increase font size */
}

.dropdown-item:hover {
    background-color: #007bff; /* Change background on hover */
    color: #ffffff; /* Change text color on hover */
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0.5rem; /* Adjust padding for smaller screens */
    }
}










.Home{
    display: flex;
}

  /* Home Section Styling */
  #Home {
    padding: 50px;
    text-align: center;
    background-color: #ffffff;
  }

  #Home h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }

  #Home p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
  }

  #Home img{
    width: 500px;
    height: 300px;
  }

  /* Back to Home Button */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .back-to-top:hover {
    background-color: #7b7b7b;
  }

  /* Buttons Styling */
  .buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }

  .rounded-button {
    padding: 15px 30px;
    background-color: #83d0e5;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
  }

  .rounded-button:hover {
    background-color: #2eabe5;
  }




.resources img{
    width: 100%;
    
}















/* Custom styles for the navbar */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
}

.navbar-brand .logo-text {
    font-size: 1.5rem; /* Increase logo text size */
    font-weight: bold; /* Make the logo text bold */
    color: #333; /* Set logo text color */
}

.nav-link {
    color: #555; /* Default link color */
    transition: color 0.3s ease; /* Smooth transition */
}

.nav-link:hover {
    color: #227253; /* Change color on hover */
}

.nav-link.active {
    font-weight: bold; /* Highlight active link */
    border-bottom: 3px solid #0123ab; /* Add an underline for active link */
}



.buttons-section {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .buttons-wrapper {
    display: inline-block;
    animation: scroll 15s linear infinite;
  }
  
  .rounded-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    white-space: nowrap;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .load-more {
    display: block;
    margin: 20px auto;
  }
  

/* Custom styles for the Home section */
.home-section {
    background-color: white; /* Light background for contrast */
    padding: 50px 0; /* Vertical padding */
}

.home-section h1 {
    color: #5a2929; /* Maroon */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
}

.home-section p {
    color: #001f3f; /* Navy blue */
    line-height: 1.6; /* Improve readability */
}

.text-darkgreen {
    color: #006400; /* Dark green */
}

.text-yellow {
    color: #FFD700; /* Yellow */
}




/* Custom styles for the Buttons section */
.buttons-section {
    background-color: white; /* Always white background */
    padding: 50px 0; /* Vertical padding */
}

.rounded-button {
    display: inline-block;
    padding: 15px 25px; /* Padding to create a rectangular look */
    border-radius: 8px; /* Rounded corners */
    text-align: center;
    text-decoration: none;
    color: #333; /* Default text color */
    font-weight: bold; /* Bold text */
    background-color: white; /* White background */
    border: 2px solid #ccc; /* Light border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow */
    transition: background-color 0.3s, transform 0.3s, border-color 0.3s; /* Smooth transitions */
}

.rounded-button:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Hover colors */
.rounded-button:hover {
    color: white; /* Text color on hover */
}

.rounded-button:hover:nth-child(1) {
    background-color: #800000; /* Maroon */
}

.rounded-button:hover:nth-child(2) {
    background-color: #001f3f; /* Navy blue */
}

.rounded-button:hover:nth-child(3) {
    background-color: #006400; /* Dark green */
}

.rounded-button:hover:nth-child(4) {
    background-color: #FFD700; /* Yellow */
}

/* Repeat hover color styles for additional buttons */
.rounded-button:hover:nth-child(5) {
    background-color: #800000; /* Maroon */
}

.rounded-button:hover:nth-child(6) {
    background-color: #001f3f; /* Navy blue */
}

.rounded-button:hover:nth-child(7) {
    background-color: #006400; /* Dark green */
}

.rounded-button:hover:nth-child(8) {
    background-color: #FFD700; /* Yellow */
}

.rounded-button:hover:nth-child(9) {
    background-color: #800000; /* Maroon */
}

.rounded-button:hover:nth-child(10) {
    background-color: #001f3f; /* Navy blue */
}

.rounded-button:hover:nth-child(11) {
    background-color: #006400; /* Dark green */
}

.rounded-button:hover:nth-child(12) {
    background-color: #FFD700; /* Yellow */
}

.rounded-button:hover:nth-child(13) {
    background-color: #800000; /* Maroon */
}

.rounded-button:hover:nth-child(14) {
    background-color: #001f3f; /* Navy blue */
}

.rounded-button:hover:nth-child(15) {
    background-color: #006400; /* Dark green */
}

.rounded-button:hover:nth-child(16) {
    background-color: #FFD700; /* Yellow */
}

.rounded-button:hover:nth-child(17) {
    background-color: #800000; /* Maroon */
}

.rounded-button:hover:nth-child(18) {
    background-color: #001f3f; /* Navy blue */
}

.rounded-button:hover:nth-child(19) {
    background-color: #006400; /* Dark green */
}

.rounded-button:hover:nth-child(20) {
    background-color: #FFD700; /* Yellow */
}

.rounded-button:hover:nth-child(21) {
    background-color: #800000; /* Maroon */
}

.rounded-button:hover:nth-child(22) {
    background-color: #001f3f; /* Navy blue */
}

.rounded-button:hover:nth-child(23) {
    background-color: #006400; /* Dark green */
}

.rounded-button:hover:nth-child(24) {
    background-color: #FFD700; /* Yellow */
}





.resources {
    background-color: #f9f9f9; /* Light background */
    padding: 20px 0; /* Padding for top and bottom */
}

h2 {
    color: #333; /* Darker color for the heading */
    text-decoration: none; /* Remove underline from heading */
}

.resources-div {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center; /* Center items */
    gap: 20px; /* Space between items */
}

.resources-div .col {
    background-color: white; /* White background for the items */
    border-radius: 12px; /* Rounded corners */
    padding: 20px; /* Padding for the item */
    border: 1px solid #eaeaea; /* Light border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-align: center; /* Center align text */
    width: 200px; /* Set a fixed width for uniformity */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effects */
}

.resources-div .col:hover {
    transform: translateY(-5px); /* Move up on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.resources-div img {
    width: 48px; /* Fixed width for images */
    height: 48px; /* Fixed height for images */
}

.resources-div h3 {
    margin-top: 10px; /* Spacing above the heading */
    font-size: 1.25rem; /* Consistent font size */
    color: black; /* Change text color to black */
}

.resources-div p {
    margin-top: 5px; /* Spacing above the paragraph */
    text-align: center; /* Center text */
    color: black; /* Change paragraph text color to black */
}

.resources-div a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit color from parent elements */
}

.resources-div a:hover {
    color: black; /* Keep the text color black on hover */
}





.resources {
    background-color: #f9f9f9; /* Light background */
    padding: 20px 0; /* Padding for top and bottom */
}

h2 {
    color: #333; /* Darker color for the heading */
    text-decoration: none; /* Remove underline from heading */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for animation */
}

h2:hover {
    transform: scale(1.1); /* Slightly grow the heading on hover */
    color: #007bff; /* Change color on hover */
}

.resources-div {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center; /* Center items */
    gap: 20px; /* Space between items */
}

.resources-div .col {
    background-color: white; /* White background for the items */
    border-radius: 12px; /* Rounded corners */
    padding: 20px; /* Padding for the item */
    border: 1px solid #eaeaea; /* Light border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-align: center; /* Center align text */
    width: 200px; /* Set a fixed width for uniformity */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effects */
}

.resources-div .col:hover {
    transform: translateY(-5px); /* Move up on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.resources-div img {
    width: 48px; /* Fixed width for images */
    height: 48px; /* Fixed height for images */
}

.resources-div h3 {
    margin-top: 10px; /* Spacing above the heading */
    font-size: 1.25rem; /* Consistent font size */
    color: black; /* Change text color to black */
}

.resources-div p {
    margin-top: 5px; /* Spacing above the paragraph */
    text-align: center; /* Center text */
    color: black; /* Change paragraph text color to black */
}

.resources-div a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit color from parent elements */
}

.resources-div a:hover {
    color: black; /* Keep the text color black on hover */
}
