
body { 
    background-color: white;
    color: white;
    font-family: 'DM Sans', sans-serif;
    border-radius: 20px;
    
}

.logo {
    height: 70px;
    width: auto;
}
body {
    margin: 0;
    padding: 0;
    background-color: white;
    color: white;
    font-family: 'DM Sans', sans-serif;
}

/* Sticky Header Wrapper */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Banner (part of sticky header) */
.hero-banner-alert {
    background-color: #ffe599;
    color: #333;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.hero-banner-alert a {
    color: #d9534f;
    font-weight: bold;
    text-decoration: underline;
}

.hero-banner-alert a:hover {
    text-decoration: none;
}

/* Navbar (part of sticky header) */
.navbar {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: transparent;
    width: 100%;
}

/* Scrolled state (affects both navbar and banner via .sticky-header) */
.sticky-header.scrolled {
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Optional: If you want banner to change too when scrolled */
.sticky-header.scrolled .hero-banner-alert {
    background-color: white;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Optional: Change link color on scroll */
.sticky-header.scrolled .hero-banner-alert a {
    color: #d9534f;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.custom-link {
    font-size: 18px;
    color: #047c7d !important;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.custom-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #047c7d;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.custom-link:hover::after {
    width: 100%;
    left: 0;
}

.btn-book {
    color: #047c7d;
    border-radius: 15px;
    font-weight: bold;
    padding: 10px 20px;
}

.rotated-arrow {
    transform: rotate(-45deg);
}


.home-content {
    height: 90vh; /* Adjust height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
}

.custom-card {
    background-color: #045d64;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    width: 100%; /* Full width */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 150px;
}

.custom-card .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.custom-card .btn {
    background-color: white;
    color: #047c7d;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 20px;
}

.custom-card .btn:hover {
    background-color: #035b5c;
    color: white;
}




#moving-div {
    
    margin-bottom: 20px;
    position: absolute;
    bottom: 3%;
    white-space: nowrap;
    padding: 1.2vw;
    overflow: hidden;
    width: 44%;
    margin-left: 430px;
    margin-top: 600px;
}

#moving-div .move {
    display: inline-block;
    animation-name: mobe;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#moving-div .move img {
    height: 1vw;
    margin: 0 1.2vw;
}

@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}

#blur-left {
    height: 100%;
    width: 20%;
    

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#blur-right {
    height: 100%;
    width: 20%;
    
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}




.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.card-box {
    width: 30%;
    text-align: left;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid #047c7d; /* Border color */
    border-radius: 50%; /* Circular border */
    margin-bottom: 10px;
}

.icon-box i {
    color: #047c7d;
}

h4 {
    color: #045d64;
}

p {
    color: #045d64;
}

@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .card-box {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}










#contact address
    {
      padding-bottom: 18px;
    }
	
#contact .contact-title
    {
		font-size: 24px;
		font-weight: bold;
        padding-bottom: 20px;
		color: #045d64;
    }
#contact .fa
    {
        border: 2px solid #ffffff;
        border-radius: 50%;
        color: #045d64;
        width: 50px;
        height: 50px;
        line-height: 45px;
        text-align: center;
        margin-right: 20px;
    }
#contact .form-control
    {
        background: transparent;
        border: 2px solid #999;
        border-radius: 0;
        box-shadow: none;
        color: #045d64;
        margin-bottom: 20px;
    }
#contact input
    {
        height: 50px;
    }
#contact input[type="submit"]
    {
        background: #045d64;
        border: 2px solid transparent;
        color: #ffffff;
        font-weight: bold;
        transition: all 0.4s ease-in-out;
    }
#contact input[type="submit"]:hover
    {
        background: #047c7d;
        color: #045d64;
    }
/* end contact */

/* start footer */
footer
    {
        border-top: 1px solid #090909;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 20px;
    }
footer hr
    {
        width: 100px;
    }
/* end footer */

/* start social icon */
.social-icon
    {
        position: relative;
        padding: 0;
        margin: 0;
    }
.social-icon li
    {
        display: inline-block;
        list-style: none;
    }
.social-icon li a
    {
        border-radius: 50%;
        color: #606060;
        text-decoration: none;
        transition: all 0.4s ease-in-out;
        text-align: center;
        margin-right: 10px;
    }
.social-icon li a:hover
    {
        color: #035b5c;
    }