body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #e8f0f3;
}
/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 1000 */

.mulish-uniquifier {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 20px;
  font-style: normal;
}

.heading {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 20px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.heading:hover {
    color: #d11b8e; /* Change color on hover */
    transform: scale(1.05); /* Slightly enlarge the text */
    text-decoration: underline;
}

/* Optional: Add shadow for a more dynamic effect */
.heading {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
}
.navbar .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 20px;
}
.navbar .logo {
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    align-items: center;
}
.navbar .logo img {
    margin-left: 30px;
    margin-right: 30px;
    height: 90px;
    margin-right: 10px;
}
.navbar .nav-links {
    margin-left: 40px;
    margin-right: 50px;
    /* font-size: 90px; */
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar .nav-links li {
    margin: 0 20px;
}
.navbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 35px;
}
.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: #007BFF;
    transition: width 1s;
}
.navbar .nav-links a:hover::after {
    width: 100%;
}

/* LAnding PAge Start */
/* Original CSS for Landing Page */


.landing-page {
    text-align: center;

}

.main-heading {
    color: blue;
    font-size: 48px;
    margin-bottom: 20px;
}

.sub-heading {
    color: black;
    font-size: 34px;
    margin-bottom: 20px;
}

.description {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    padding-left: 20%;
    padding-right: 20%;
}


.form-button {
    font-size: 20px;
    color: #fff;
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #0056b3;
}

.registration-form {
    margin-top: 40px;
    text-align: left;
    padding-right: 20%;
    padding-left: 20%;
}

.registration-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

.registration-form form {
    display: flex;
    flex-direction: column;
}

.registration-form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.registration-form input:hover,
.registration-form select:hover,
.registration-form textarea:hover {
    border-color: #007bff;
}

.inline-fields {
    display: flex;
    gap: 10px;
}

.field-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.submit-button {
    font-size: 20px;
    color: #fff;
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
}

.submit-button:hover {
    background-color: #218838;
}


.checkbox-group {
    display: flex;
    flex-wrap: wrap;
}

.checkbox-group label {
    flex: 1 1 45%;
    margin: 10px 0;
    background-color: #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.checkbox-group label:hover {
    background-color: #d0d0d0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}