body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6,
p,
button {
  font-family: "Helvetica", Arial, sans-serif!important;
}


/* Header Styles */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.25); /* Semi-transparent background */
    z-index: 20;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin: 0;
    font-size: 1em;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}

.logo img {
    height: 50px; /* Adjust logo size */
}

.logo-text {
    text-align: left;
}

.logo-text p {
    margin: 0;
    font-size: 0.9em;
    color: white;
}

.logo-text p strong {
    font-size: 1.1em;
    font-weight: bold;
}

/* Location Styles */
.location {
    position: absolute;
    top: 80px; /* Position below the header */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 15;
}

.location p {
    margin: 10px 0;
    font-weight: 600;
    font-size: 2.2em;
}

.location button {
    margin: 5px;
    padding: 10px 30px;
    font-size: 20px;
    cursor: pointer;
    background-color: #beaf87;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 5px;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Carousel */
.carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Dark overlay */
    z-index: 5;
}

/* Slogan and Actions Styles */
.slogan {
    position: absolute;
    bottom: 20px; /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 15;
}

.slogan p {
    margin: 10px 0;
    font-weight: 600;
    font-size: 2.2em;
}

.actions {
    margin-top: 10px; /* Space between slogan and buttons */
}

.actions button {
    margin: 5px;
    padding: 10px 50px;
    font-size: 20px;
    cursor: pointer;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Adjust header for smaller screens */
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .logo {
        margin-top: 10px;
    }

    /* Adjust location section */
    .location {
        top: 120px; /* Move down to accommodate stacked header */
        width: 400px;
    }
    .slogan{
         width: 400px;
    }

    .location p {
        font-size: 1.8em; /* Smaller font size for smaller screens */
    }

    .location button {
        padding: 8px 20px;
        font-size: 16px;
    }

    /* Adjust slogan and actions */
    .slogan p {
        font-size: 1.8em; /* Smaller font size for smaller screens */
    }

    .actions button {
        padding: 8px 30px;
        font-size: 16px;
    }
}
a{
    color: #beaf87;
}
@media (max-width: 480px) {
    /* Further adjustments for mobile phones */
    .contact-info p {
        font-size: 0.8em; /* Smaller font size for contact info */
    }

    .logo-text p {
        font-size: 0.8em; /* Smaller font size for logo text */
    }

    .logo-text p strong {
        font-size: 1em; /* Smaller font size for bold text */
    }

    .location p {
        font-size: 1em; /* Smaller font size for location text */
    }

    .location button {
        padding: 5px 10px;
        font-size: 14px;
    }

    .slogan p {
        font-size: 1em; /* Smaller font size for slogan */
    }

    .actions button {
        padding: 5px 20px;
        font-size: 14px;
        color: #beaf87;
    }
}