/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mochiy+Pop+P+One&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Kalam:wght@300;400;700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mochiy+Pop+P+One&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&display=swap');

/* Brand Bav Bar */

.navbar-logo {
    top: 35px !important; /* Top margin */
    left: 50% !important; /* Center horizontally */
    transform: translateX(-50%) !important; /* Adjust position to center */
    width: 50% !important; /* Adjust width as needed */
    background-color: #eaeaea !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
    z-index: 1000 !important; /* Ensure it’s above other content */
    display: flex !important;
    justify-content: center !important; /* Center the content inside the navbar */
}

.brand-container {
    display: flex!important;
    align-items: center!important;
    width: 100%!important;
    max-width: 600px!important;
    justify-content: space-between!important;
}

.brand-item {
    flex: 1!important;
    display: flex !important;
    align-items: center !important; /* Center images vertically */
    justify-content: center !important;
    font-size: 20px!important;
    font-weight: bold!important;
    color: #000!important;
}

.brand-item img {
    max-width: 100%!important;
    height: auto!important;
    width: auto!important;
    padding: 10px!important;
    text-align: center !important;
    justify-content: center !important;
    max-height: 100px !important; /* Adjust this height as needed */
}

@media (max-width: 991px) {
    .navbar-logo {
        width: 50%;
    }
    .brand-container {
        flex-direction: column;
        justify-content: center;
    }

    .brand-item img {
        max-height: 60px; /* Adjust the height for smaller screens */
        width: 100%;
    }
}


/* Nav Bar Design Starts*/
.navbar-custom {
    background-color: #004e6b;
    border-radius: 15px;
    position: fixed;
    top: 50px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff;
}
.navbar-custom .nav-link:hover {
    color: #ddd;
}
.navbar-custom .navbar-nav {
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.navbar-custom .nav-item {
    margin: 0 10px;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.navbar-toggler {
    border-color: #FFFFFF !important; /* White border with some transparency */
    border-width: 2px !important;
    test-decoration: none !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,%20255,%20255,%200.5%29' stroke-width='5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.dropdown-toggle {
    color: #fff !important;
}

.dropdown-menu {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease-in-out !important;
    display: block !important; /* Ensure the block is always displayed to apply animation */
    position: absolute !important;
    opacity: 0 !important;
    background-color: #004e6b !important;
    border-radius: 0 0 15px 15px !important;
}

.dropdown-menu.show {
    max-height: 550px !important; /* Adjust this height according to your dropdown content */
    opacity: 1 !important;
}

.dropdown-toggle:hover {
    color: #fff !important;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    color: #004e6b !important;
    background-color: #fff !important;
}

@media (max-width: 991px) {
    .navbar-custom {
        background-color: #005b7d;
        border-radius: 15px;
        position: fixed;
        top: 50px; /* Adjust as needed */
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        border-color: white; /* Change border color to white */
    }
    .navbar-custom .navbar-nav {
        flex-direction: column;
        align-items: center;
        padding-top: 2px; /* Adjust as needed */
    }
    .navbar-custom .nav-item {
        margin: 5px 0;
    }
}
/* Nav Bar Design Ends*/

/* Main image */
.main_cover_image {
    margin-top: 20px;
    position: relative;
    text-align: center;
    color: white;
}

.main_cover_image img {
    width: 100%;
    height: 700px;
    display: block;
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    letter-spacing: 3px;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.7); /* Optional: Add background with transparency for better readability */
    padding: 10px 20px;
    border-radius: 15px;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    .centered-text {
        font-size: 1.5em;
    }

    .main_cover_image img {
        width: 100%;
        height: 400px;
        display: block;
    }
}


/* WhatsApp Button Style */
.whatsapp-button {
    position: fixed;
    top: 50%;
    right: 10px;
    color: #fff;
    background-color: #25D366;
    border-radius: 50px;
    padding: 10px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.whatsapp-button img {
    margin-right: 8px;
}
/* Call Button Style */
.call-button {
    position: fixed;
    top: 44%;
    right: 10px;
    color: #fff;
    background-color: #007bff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.call-button img {
    margin-right: 8px;
}
/* Map Button Style */
.location-button {
    position: fixed;
    top: 56%;
    right: 10px;
    color: #fff;
    background-color: #dc3545; /* Bootstrap's danger (red) color */
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.location-button img {
    margin-right: 8px;
}

/* Media query for small screens (e.g., max-width 768px) */
@media (max-width: 991px) {
    .whatsapp-button,
    .call-button,
    .location-button {
        padding: 8px; /* Only enough padding for the icon */
        font-size: 0; /* Hide the text */
        width: 40px;
        height: 40px;
        border-radius: 50%; /* Make it circular */
    }

    .whatsapp-button img,
    .call-button img,
    .location-button img {
        padding: 2px;
        margin-right: 4px; /* Remove margin between icon and text */
    }
}

/* Cover Image */
.cover_image {
    margin-top: 70px;
    width: 100%;
    height: 800px;
    border-radius: 20px;
    box-shadow: 3px 2px 8px rgba(0, 0, 0, 0.9);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #aeaeae, #cbcbcb);
    color: #25251e;
    padding: 40px 0;
}

.footer-description h4 {
    margin-bottom: 15px;
    font-size: 25px;
    font-family: "Kalam", cursive;
    font-weight: bold;
}

.footer-description p {
    line-height: 1.5;
    font-size: 16px;
    text-align: justify;
    font-family: "Kalam", cursive;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 10px;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-family: "Kalam", cursive;
    font-weight: bold;
    font-size: 24px;
}

.footer-links a {
    color: #25251e;
    text-decoration: none;
    font-size: 18px;
    font-family: "Kalam", cursive;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    font-family: "Kalam", cursive;
    font-size: 14px;
    font-weight: 500;
    color: #6c6c08;
}

.social-icons h4 {
    font-family: "Kalam", cursive;
    font-weight: bold;
}

.social-icons a {
    color: #25251e;
    font-size: 20px;
    font-family: "Kalam", cursive;
    font-weight: bold;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #6c6c08;
}