* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#ff5200;
    padding: 15px 30px;
    background: white;
    color: black;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: black;
}
.logo img {
    width: 120px;
    height: auto;
}
.dropdown select {
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-links a, .nav-links i {
    text-decoration: none;
    color: black;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s, transform 0.2s;
}
.nav-links a:hover, .nav-links i:hover {
    color: #ff4d00;
    transform: scale(1.1);
}
.search {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
}
.dropdown select {
    text-decoration: underline;
}




/* Footer Section */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    animation: fadeIn 1s ease-in-out;
}

/* Footer Headings */
.footer h3, .footer h4 {
    color: #ff9800;
    margin-bottom: 10px;
}

/* Footer Links */
.footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #ff5722;
    text-decoration: underline;
}

/* Footer Sections */
.footer-sections {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-sections div {
    text-align: left;
}

/* Footer Text */
.footer p {
    margin: 5px 0;
    font-size: 14px;
    transition: transform 0.3s ease-in-out;
}

.footer p:hover {
    transform: scale(1.05);
    color: #ffcc00;
}

/* Developer Credit */
.developer {
    margin-top: 20px;
    font-style: italic;
    font-weight: bold;
    color: #ff4d00;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
        align-items: center;
    }
}




a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
