/* style.css */
/* --- General Setup --- */


/* --- Main Navbar Styles --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo Styles --- */
.logo-pic {
    height: 50px; /* Use height for better control */
    width: auto;
    transition: transform 0.3s;
}
.logo-pic:hover {
    transform: scale(1.05);
}

/* --- Navigation Links --- */
.desktop-links {
    display: flex;
    gap: 25px;
    list-style: none;
    font-family: sans-serif;
}

.navbar .container{
  padding: 0px;
}

.menu-item {
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}
.menu-item:hover {
    background: #f0f0f0;
}

/* Active link style */
.menu-item.active {
    background: #f4be30;
    color: black;
    font-weight: 700;
}

/* --- Mobile Menu & Burger Button --- */
.burger-button {
    display: none;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Side Contact Icons --- */
.side-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-contact .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.side-contact .icon:hover {
    transform: scale(1.1);
}

.side-contact .call {
    background-color: #f44336; /* Red */
}

.side-contact .whatsapp {
    background-color: #25D366; /* Green */
}



/* Active state for mobile menu */
.mobile-menu.show {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* --- Media Query for Responsiveness --- */
@media (max-width: 850px) {
    .desktop-links {
        display: none;
    }
    .burger-button {
        display: block;
    }
}