/* Header Styles */
.header {
    background-color: #2caebd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
}

.navbar-dark .navbar-nav .nav-link{
    color: rgb(13, 52, 227) !important;
}

div.header-top-right{
    text-align: right;
}

.logo-file{
    width: 6vh;
    height: auto;
    border-radius: 50%;
}
/* Left-aligned header items */
.logo img {
    width: 150px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    margin-left: 1300px;
}

.nav-menu ul li {
    margin-right: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

.nav-menu ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.cta-button {
    background-color: #25D366; /* WhatsApp green */
    color: white; /* Change text color to white */
    padding: 10px 20px; /* Keep existing padding */
    text-decoration: none; /* Remove underline */
    border-radius: 30px; /* Rounded corners */
    font-size: 16px; /* Font size */
    transition: background 0.3s ease; /* Smooth background transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center icon and text vertically */
}

.cta-button:hover {
    background-color: #128C7E; /* Darker green on hover */
}

.cta-button i {
    margin-right: 10px; /* Space between icon and text */
    font-size: 20px; /* Slightly larger icon */
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.modal-lg-custom{
    max-width: 45%;
}

@media only screen and (max-width: 768px) {
    .header {
        background-color: #2caebd;
        padding: 10px;
        text-align: center;
        overflow: hidden;
    }

    .logo-file{
        margin-left: 10px;
        overflow: hidden;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: #f0f4f8;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin-bottom: 10px;
    }

    .cta-button {
        display: inline-block; /* Show CTA button on mobile */
        /* margin-top: 5px; Add some space from the menu */
    }

    .cta-button {
        /* display: inline-block; */
        margin-left: 150px;
        font-size: 10px;
        overflow: hidden;
        /* margin-top: 5px; Add some space from the menu */
    }

    .hamburger {
        display: block; /* Show hamburger icon on mobile */
        padding: 5px 5px;
        color:rgb(0, 255, 0)
    }

}