body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
/* Custom styles for the hero section background image */
.hero-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Change this line to 2s */
    transition: background-image 2s ease-in-out;
}
/* Custom styling for the "SEND A REQUEST" button */
.send-request-btn {
    background-color: #3fc29b; /* Blue-500 */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.send-request-btn:hover {
    background-color: #3fc29b; /* Blue-600 */
}
/* Custom styling for the "SCHEDULE A TOUR" button */
.schedule-tour-btn {
    background-color: #fca5a5; /* Red-300 */
    color: #ef4444; /* Red-500 */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 1px solid #ef4444;
    transition: background-color 0.3s ease;
}
.schedule-tour-btn:hover {
    background-color: #f87171; /* Red-400 */
}
/* Style for the navigation arrows */
.nav-arrow {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 9999px; /* Full circle */
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
/* Style for slider indicators */
.slider-indicator {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.slider-indicator.active {
    background-color: white;
}
/* Custom button styles for services section */
.service-btn-blue {
    background-color: #3fc29b; /* Blue-200 */
    color: #3fc29b; /* Blue-700 */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.service-btn-blue:hover {
    background-color: #3fc29b; /* Blue-300 */
}
.service-btn-orange {
    background-color: #fed7aa; /* Orange-200 */
    color: #ea580c; /* Orange-700 */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.service-btn-orange:hover {
    background-color: #fdba74; /* Orange-300 */
}
.service-btn-teal {
    background-color: #a7f3d0; /* Teal-200 */
    color: #0d9488; /* Teal-700 */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.service-btn-teal:hover {
    background-color: #6ee7b7; /* Teal-300 */
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-overlay .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu-overlay ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu-overlay ul li a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-overlay ul li a:hover {
    color: #3fc29b; /* Blue-500 */
}


