body {
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #cac6c6;
}

header {
    background-color: #1a1a1a ;
    color: #ffffff;
    padding: 15px;
}

.section-nav {
    display: flex;
    justify-content: end;
}

.section-title {
    margin-left: 70px;
    font-size: 30px;
    width: 500px;
}


nav a {
    color: #ffffff;
    margin:  15px;
    text-decoration: none;
}

nav a:hover , .active {
    text-decoration: underline;
}

.form-section {
    padding: 20px;
}

#admissionForm {
    background-color: #ffffff;
    color: black;
    margin: auto;
    padding: 30px;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 0 5px gray;
}

input , select {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
}

.btn-form {
    width: 100%;
    padding: 12px;
    background-color: #003366;
    color: #ffffff;
    font-size: 16px;
    border: none;
}


.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 10px;
    margin-top: 40px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-container div {
    flex: 1 1 250px;
    margin: 15px;
}

.footer h3, .footer h4 {
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0 5px;
    margin-top: 10px;
    border-top: 1px solid gray;
    font-size: 14px;
    color: #aaa;
}

.form-section {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.form-section h2 {
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
}

.btn-form {
    background-color: #003366;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-form:hover {
    background-color: #0055aa;
}

#result {
    text-align: center;
    color: green;
    font-weight: bold;
    margin-top: 15px;
}


.section-nav {
    display: flex;
    align-items: center;
    justify-content: end;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff; 
    min-width: 240px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2); 
    z-index: 100;
    border-radius: 8px; 
    top: 40px; 
    left: 15px;
    overflow: hidden;
    border-top: 3px solid #ffcc00; 
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin: 0 !important;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #003366 !important;
    padding-left: 30px; 
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .arrow {
    display: inline-block;
    transform: rotate(180deg);
    transition: 0.3s;
}