
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
   
}

/* Navigation Styles */
.topnav {
    background-color: rgba(246, 93, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.topnav.scrolled {
    padding: 5px 5%;
    background-color: rgba(246, 93, 0, 0.98);
}

.nav-items {
    display: flex;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0px;
}

.logo svg {
    height: 60px;
    width: 70px;
    transition: all 0.3s ease;
    
    
}

.scrolled .logo svg {
    height: 60px;
}

.logo p {
    color: #f1f1f1;
    font-size: 40px;
    padding: 5px;
    margin-left: 0px;
    transition: all 0.3s ease;
}

.scrolled .logo p {
    font-size: 32px;
}

.topnav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.topnav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.topnav a:hover::after {
    width: 80%;
}

.topnav a:hover {
    background-color: rgba(255, 163, 27, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .topnav {
        padding: 5px 4%;
    }
    
    .nav-items {
        gap: 10px;
    }
    
    .logo svg {
        display: none; /* Hide the image on mobile */
    }
    
    .logo p {
        font-size: 28px;
        margin-left: 0;
    }
    
    .scrolled .logo p {
        font-size: 24px;
    }
    
    .topnav a {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .topnav {
        flex-direction: column;
        padding: 5px 2%;
    }
    
    .nav-items {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    
    .logo p {
        font-size: 24px;
    }
    
    .scrolled .logo p {
        font-size: 22px;
    }
    
    .topnav a {
        padding: 6px 8px;
        font-size: 12px;
    }
}
form {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 50%;
    margin: auto;
    margin-bottom:20px  ;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Headings */
.h2 {
    text-align: center;
    color: #050302;
}

.h3 {
    color: #1c1c1c;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    margin-left: 2.5px;
    border: 1px solid #7e7e7e;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #050302;
}

/* Checkboxes & Radio Buttons */
input[type="checkbox"] {
    margin-right: 5px;
    margin-left: 5px;
}

/* Submit Button */
input[type="submit"] {
    background-color: #d17210;
    color: #fffefe;
    padding: 10px;
    margin:1px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    justify-content: center;

}

input[type="submit"]:hover {
    background-color: #ff2f00;
}

/* Responsive Design */
@media (max-width: 768px) {
    form {
        width: 90%;
    }
}

.fees-container {
    padding: 40px 5%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.fees-table {
    width: 110%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fees-table th {
    background-color: #f65d00;
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}

.fees-table td {
    padding: 20px;
    border-top: 1px solid #eee;
}

.fees-table tr:hover {
    background-color: #fff8e8;
}

.fees-table tr:last-child {
    border-bottom: 3px solid #FFD700;
}

.category {
    font-weight: bold;
    color: #333;
}

.amount {
    color: #f65d00;
    font-weight: bold;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}
.footer {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
padding: 40px 0;
font-family: Arial, sans-serif;
text-align: center;
    justify-content: center;

}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer h3 {
font-size: 24px;
margin-bottom: 20px;
font-weight: bold;
}

.footer p {
line-height: 1.6;
margin-bottom: 15px;

}

.social-media a {
    display: inline-block;
    margin-right: 25px;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-media a:hover {
    transform: translateY(-5px);
    color: #f65d00;
}