body {
    font-family: 'Barlow Condensed', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


.navbar {
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #005eb8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.8s ease;
}

.logo-imgg img {
    height: 150px;
}



.logo img {
    height: 75px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}


.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }

    .nav-links {
        position: fixed;
        top: 67px;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 25px;
        transition: left 0.5s ease;
        backdrop-filter: blur(10px);
        display: flex;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }
}

/*wtsapp button */


.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-contact-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #005eb8;
}

.fixed-contact-buttons a:hover {
    transform: scale(1.1);
}


/* footer================================== */
.footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

/* beep animation======================================================== */


@keyframes beep {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px currentColor;
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px currentColor;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px currentColor;
    }
}

.pulse-mail {
    animation: beep 2s ease-in-out infinite;
    color: red;
}

.pulse-whatsapp {
    animation: beep 2s ease-in-out infinite;
    color: green;
}

.pulse-phone {
    animation: beep 2s ease-in-out infinite;
    color: blue;
}


/* footer=======================btn  */
.company{
    color: black;
    
}
.company:hover {
    box-shadow: 0 0 25px rgba(154, 45, 237, 0.8);
    background: linear-gradient(135deg,rgb(255, 0, 153,0.3), rgba(41, 87, 255, 0.5)); /* blue to indigo */
    border-radius: 5px 5px 5px 5px;
    
}
.company {
    transition: background 0.4s ease, box-shadow 0.3s ease;
}
