﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    height: auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main-layout{
    flex:1;
}

body {
    min-height: 100vh;
    background: url("background.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.logoImg {
    height: 80px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid lightgray;
    z-index: 100;
}

    .header::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.4), transparent );
        transition: 0.5s;
    }

    .header:hover::before {
        left: 100%;
    }

.logo {
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    display: inline-block;
    transition: transform 0.5s ease;
    transform: scale(1.2);
}

    .logo:hover {
        transform: scale(1.5);
        cursor:pointer;
    }

.navbar a {
    color: dimgray;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    margin-left: 50px;
    transition: 0.3s;
    display: inline-block;
    transition: transform 0.3s ease;
}

    .navbar a:hover {
        color: darkorange;
        transform:scale(1.2);
    }
    .navbar a.active {
        color: darkorange;
        text-decoration: underline 3px darkorange;
        text-underline-offset: 4px;
        transform: scale(1.2);
    }

#menu-icon {
    font-size: 40px;
    color: darkorange;
    display: none;
}
    #menu-icon:hover{
        cursor:pointer;
    }
    /* BREAKPOINTS */
    @media (max-width: 992px) {
        .header {
        padding: 1.25rem 4%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        padding: 0.5rem 4%;
        display: none;
        transition: max-height 0.3s ease-in-out;
        overflow: hidden;
        max-height: 0;
        background: rgba(255, 255, 255, 0.95);
        z-index: 100;
    }

        .navbar.active {
            display: block;
            max-height: 500px;
        }

        .navbar a {
            display: block;
            text-align: center;
            margin: 1rem 0;
            padding: 15px;
            font-size: 18px;
        }

    .nav-bg {
        position: absolute;
        top: 79px;
        left: 0;
        width: 100%;
        height: auto;
        background: whitesmoke;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        display: none;
    }

        .nav-bg.active {
            display: block;
            opacity: 1;
        }

    .logoImg {
        transform:scale(0.8);
    }
}


/* ===== FOOTER STYLING ===== */
.footer {
    position: relative; /* or remove entirely */
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 40px 20px 10px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1 1 300px;
    text-align: left;
}

    .footer-left p {
        margin-top: 10px;
        font-size: 0.95rem;
        color: #e0e0e0;
    }

.footer-logo {
    height: 50px;
    margin-bottom: 10px;
}

.footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

    .footer-links a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #ffb347;
        }

.footer-social {
    flex: 1 1 200px;
    text-align: right;
}

    .footer-social a {
        color: white;
        margin-left: 15px;
        font-size: 1.8rem;
        transition: transform 0.3s, color 0.3s;
    }

        .footer-social a:hover {
            transform: scale(1.1);
            color: #ffb347;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #dcdcdc;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links, .footer-social, .footer-left {
        text-align: center;
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 3px;
    }

    .footer-social {
        flex: 1 1 20px;
        text-align: right;
    }

    .footer-left {
        flex: 1 1 30px;
        text-align: center;
    }

    .footer-logo {
        height: 80px;
        margin-bottom: 10px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

    .whatsapp-float:hover {
        background-color: #1ebe5b;
        transform: scale(1.1);
    }
