/* Header Styles */
header {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 20px -5px #ffffff;
    box-shadow: 0px 0px 20px -5px #ffffff;
}

footer{
    -webkit-box-shadow: 0px -5px 10px -9px #ffffff;;
    box-shadow: 0px -5px 10px -9px #ffffff;
}
/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

a {
    color: #00B7D3;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
#hero {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    background-blend-mode: multiply;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1583454110551-49838c623ca4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8MHx8fA&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding-top: 60px; /* Adjust based on header height */
}

#hero video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 4px #000000;
    padding:20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.navbar-brand > img {
}

.bg-dark {
    background-color: #000000 !important;
}

a.nav-link{
    border: 1px solid #00B7D3;
    color: #ffffff!important;
}

.btn-primary {
    color: #fff;
    background-color: #00B7D3;
    border-color: #00B7D3;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em; /* Adjust as needed */
    }

    .hero-content p {
        font-size: 1em; /* Adjust as needed */
    }

    #hero video {
        height: 100vh; /* Adjust as needed */
    }
    .hero-content {
        width: 90%;
    }
}

.hamburger {
    color: #00B7D3; /* Brand light blue color */
}

.whatsapp-button {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    height: 50px;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 1)!important;
    border-color: rgba(255, 255, 255, 1)!important;
}

.navbar-collapse .cta-button {
    margin-left: 0px; /* Adjust as needed */
}

.social-icons {
    text-align: right;
}

.social-icons a {
    display: inline-block;
    margin-left: 10px;
}

#how-it-works .elementor-element {
    margin-bottom: 20px;
}

#how-it-works h2,
#our-location h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px; /* Add some space for the underline */
}

#how-it-works h2::after,
#our-location h2::after {
    content: '';
    position: absolute;
    left: 50%; /* Center the underline initially */
    bottom: 0;
    width: 0; /* Start with zero width */
    height: 2px;
    background-color: #00B7D3;
    transition: width 0.3s ease; /* Add a transition for the width property */
}

#how-it-works h2::after,
#our-location h2::after {
    width: 100%; /* Expand the underline on hover */
    left: 0; /* Align to the left on hover */
}

#how-it-works {
    margin-top: 50px;
}

#how-it-works .col-md-3 {
    text-align: center;
    display: inline-block;
    width: 25%; /* Default width for larger screens */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 10px; /* Add some padding around the content */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    #how-it-works .col-md-3 {
        width: 50%; /* Adjust width for smaller screens */
    }
    .first-arrow-down{
        display: none;
    }
}

#how-it-works img {
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.close-header-menu{
    display: none;
}