
        /* Ensure footer stays at the bottom */
        body,
        html {
            height: 100%;
            margin: 0;
        }

        .content {
            min-height: calc(100vh - 100px); /* Adjust height for footer */
            padding-bottom: 50px; /* Ensure content doesn't overlap footer */
        }

        /* Light blue color for navbar and footer */
        .navbar {
            background-color: #add8e6;
            padding-left: 15px;
            padding-right: 15px;
        }

        /* Custom style for the hamburger menu icon to make it dark blue */
        .navbar-toggler-icon {
            background-color: transparent; /* Remove default background */
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after,
        .navbar-toggler-icon span {
            background-color: #003366; /* Dark blue for the hamburger icon lines */
        }

        footer {
            position: relative;
            bottom: 0;
            width: 100%;
            background-color: #add8e6;
            padding: 10px 0;
            text-align: center;
        }

        .navbar a {
            color: #000;
        }

        footer p {
            color: #000;
        }

        footer a {
            color: #003366;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Add padding between the navbar and columns */
        .container-fluid {
            padding-top: 20px; /* Add padding between navbar and columns */
        }

        /* Responsive Layout for the Columns */
        @media (max-width: 768px) {
            .col-md-3 {
                width: 50%; /* 2 cards in a row on mobile devices */
            }
        }

        /* Navbar link hover effect */
        .navbar a:hover {
            color: #003366; /* Dark blue hover effect */
            text-decoration: underline;
        }

        /* Equal card height */
        .card {
            height: 100%;
	    aling:center;
        }

        /* Light blue background for the text box at the bottom of each card */
        .card-footer {
            background-color: #add8e6;
            color: #000;
            padding: 10px;
            text-align: center;
        }

        /* Remove default card link styling */
        .card-link {
            text-decoration: none;
            color: inherit;
        }

        /* Add hover effect on card */
        .card:hover {
            cursor: pointer;
            transform: scale(1.05);
            transition: transform 0.3s ease-in-out;
        }



.h1-heading {
    text-align: center;
    margin-bottom: 30px;
}
.custom-padding {
        padding: 100px;
    }
/* Custom Button Styles */
.custom-btn {
    background-color: #add8e6; /* Light blue color similar to the navbar */
    border: 2px solid #003366; /* Darker border for contrast */
    color: #003366; /* Dark blue text color */
    font-weight: bold;
    border-radius: 8px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    padding: 12px 18px; /* Increase padding for larger buttons */
    text-align: center;
    display: block;
}

.custom-btn:hover {
    background-color: #003366; /* Darker background on hover */
    color: #fff; /* White text color on hover */
    border-color: #add8e6; /* Light blue border on hover */
    transform: translateY(-5px); /* Subtle raise effect on hover */
}

.custom-btn:focus, .custom-btn:active {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 51, 102, 0.5); /* Soft glow effect on focus/active */
}

/* Adjust button size for smaller screens */
@media (max-width: 768px) {
    .custom-btn {
        font-size: 14px; /* Smaller font size on mobile */
    }
}

/* Quick Links Section - Links in the Left Column */
.quick-link {
    color: #000; /* Black text color for links */
    text-decoration: none; /* Remove underline from links */
    
}

/* Quick Links Section - Hover Effect */
.quick-link:hover {
    color: #003366; /* Dark blue color on hover */
    text-decoration: underline; /* Underline the link on hover */
}

body{
	color: #333;
	font-family: "Noto Serif", serif;
	
		}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 700;
}

p {
	margin-bottom: 1.6em;
}

b,
strong {
	font-weight: 700;
}

dfn,
cite,
em,
i {
	font-style: italic;
}
   