﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

header {
    background: #fbfeed;
    padding: 10px 15px;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    font-weight: bolder;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #00d9ff;
    animation: slide-in 1s ease forwards;
}

.nav-links {
    display: flex;
    gap: 20px;
    transition: max-height 0.3s ease;
}

    .nav-links a {
        color: black;
        text-decoration: none;
        font-size: 1.1em;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: #ff5900;
            text-decoration: underline;
        }

.hamburger {
    font-size: 1.8em;
    display: none;
    cursor: pointer;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #fbfeed;
        overflow: hidden;
        max-height: 0;
    }

        .nav-links.active {
            max-height: 300px;
            animation: dropdown 0.4s ease-in-out forwards;
        }

    .hamburger {
        display: block;
        color:#767676;
    }
}

@keyframes dropdown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.footer {
    background-color: #fbfeed;
    color: white;
    padding: 15px 2px 2px;
    font-family: 'Segoe UI', sans-serif;
    border-top:1px solid black;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #00d9ff;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

    .footer-links a {
        color: black;
        font-weight:bolder;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #ff5900;
            text-decoration: underline;
        }

.footer-social a {
    color: white;
    margin-right: 15px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

    .footer-social a:hover {
        color: #00d9ff;
    }

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 0.9em;
    color: #999;
    border-top: 1px solid #222;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }


    .Para {
        font-size: 12px;
        text-align: justify;
        width: 98%;
        margin: 15px;
    }
}
