/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

header {
    background-color: #ff5722;
    padding: 15px 30px;
    position: relative;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 70px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 70px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Navbar */
.navbar {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex: 1;
    margin-right: 80px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
     transition: color 0.4s ease, transform 0.4s ease;
   
}

.navbar a:hover {
    color: #000000;
    transform: scale(1.1);
   
   
}

/* Social Media */
.social-media {
    display: flex;
    gap: 30px;
}

.social-media a {
    color: #fff;
    font-size: 22px;
     transition: color 0.4s ease, transform 0.4s ease;
}

.social-media a:hover {
    color: #000000;
     transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* Responsive for mobile */
@media (max-width: 991px) {

    .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .navbar {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #ff5722;
        flex-direction: column;
        align-items: center;
        display: none;
        z-index: 1000;
    }

    .navbar.show {
        display: flex;
    }

    .navbar a {
        padding: 10px 0;
        font-size: 18px;
    }

    .social-media {
        margin-top: 10px;
        justify-content: center;
        order: 3;
        width: 100%;
    }
}
