
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --primary: #945A0F;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #945A0F;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



.section-title{
    margin-bottom: 3rem;
}

.section-title h1{
    Font-size: 3rem; 
    font-weight: 800 !important;
    font-family: "Playfair Display", serif;
    
}

.section-title h2{
    Font-size: 2.25rem;
    font-weight: 800 !important;
    font-family: "Playfair Display", serif;
}
.section-title h2 span{
    Font-size: 2.7rem;
    font-weight: 800 !important;
    font-family: "Playfair Display", serif;
    color:#925A0B;
}

.section-title h3{
    Font-size: 1.75rem;
    font-weight: 700 !important;
    font-family: "Playfair Display", serif;
    text-transform: capitalize;
}

.section-title h4{
    Font-size: 1.5rem; 
    font-weight: 700 !important;
    font-family: "Playfair Display", serif;
}

.section-title h5{
    Font-size: 2rem;
    font-weight: 600 !important;
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
}

.section-title h6{
    Font-size: 1rem;
    font-weight: 600 !important;
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    font-size: 2.8rem;
}

p{   font-family: "Lora", serif;
    color: black;
    font-size:1.3rem
}



/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}





/*** Button ***/
.btn {
    font-family: "Lora", serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-nav {
 border:red solid;
}

.navigation-sec{
    border:blue solid;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: "Lora", serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #925A0B;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}



/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .7); */
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Service ***/



.service-item {
    position: relative;
    width: 100%;
    height: 350px; /* Ensures uniform height */
    border: #925A0B solid 1px;
    box-shadow: 1px 2px 1px black;
    overflow: hidden;
    display: flex;
    align-items: center; /* Centers image vertically */
    justify-content: center; /* Centers image horizontally */
    background: #f5f5f5; /* Optional: Background color for empty areas */
}

.service-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the whole image is visible */
}

/* Overlay */
.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease-in-out;
}

/* Show overlay on hover */
.service-item:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.service-content {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to truly center */
    width: 100%;
    text-align: center;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0; /* Initially hidden */
}

/* Icon */
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 2px;
    transform: rotate(-45deg);
    box-shadow: 2px 2px 1px black;
    margin: 0 auto 5px;
}

/* Heading */
.service-item h4 {
    color: white;
    margin: 0;
    padding-bottom: 5px;
    font-size: 2rem;
    transition: transform 0.5s ease-in-out; /* Add transition for smooth sliding */
}

/* Text and button */
.service-item p,
.service-item a {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* On hover, show content */
.service-item:hover .service-content {
    opacity: 1;
}

/* On hover, slide heading up */
.service-item:hover h4 {
    transform: translateY(-20px); /* Adjust as needed */
}

/* Show text and button on hover */
.service-item:hover p,
.service-item:hover a {
    opacity: 1;
    transform: translateY(0);
}



























/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}



.logo {
    background-color: white;
    height: 125px;
    width: 125px;
    border-radius: 50%;
    padding: 0.8%;
    box-shadow: 3px 2px 2px black;
}

.navbar-brand {
    height: 160px;
    width: 180px;
    border: red solid;
}

.navbar-brand img {
    height: 100%;
    width: 100%;
}

/* For tablets */
@media screen and (max-width: 768px) {
    .logo {
        height: 120px;
        width: 120px;
    }

    .navbar-brand {
        height: 140px;
        width: 160px;
    }

    .logo {
        height: 70px;
        width: 70px;
    }

    .navbar-brand {
        height: 80px;
        width: 100px;
    }

    .banner-text{
        margin-top:20% !important;
    }
    .banner-text h5{
        font-size:1.8rem !important;
        text-shadow: 1px 2px 2px white !important;
    }
    h1.display-1{
        font-size:1.8rem !important;
        text-shadow: 1px 2px 2px white !important;
    }

    .mobilebtn{
        font-size: 1rem !important;
        text-transform:none;
        font-weight:normal !important;
    }
}

/* For mobile devices */
@media screen and (max-width: 480px) {
    .logo {
        height: 70px;
        width: 70px;
    }

    .navbar-brand {
        height: 80px;
        width: 100px;
    }

    .banner-text{
        margin-top:30% !important;
    }
    .banner-text h5{
        font-size:1.1rem !important;
        text-shadow: 1px 2px 2px white !important;
    }
    h1.display-1{
        font-size:1.2rem !important;
        text-shadow: 1px 2px 2px white !important;
    }

    .mobilebtn{
        font-size: 1rem !important;
        text-transform:none;
    }
}





.goldenfooter{
    border:green solid;
}

.banner-text h5{
    color:#945A0F !important;
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    text-transform: capitalize !important;
    text-shadow: white 4px 1px 1px;
}
.banner-text h1{
    color:white !important;
    font-size: 3.5rem;
    text-shadow: 2px 1px 5px black !important;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.navigation-sec{
    border:red solid;
}


.overlay .text{
    font-family: "Playfair Display", serif;
}

.service-name h5{
    font-family: "Playfair Display", serif;
}












/*** Footer ***/

.footer {
  background-color: #945A0F;
  padding: 2% 0 1%;
  font-family: "Lora", serif;
}
.footer h4{
  font-family: "Lora", serif;

}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    margin-top: 5%;
    padding:1% 0 1%;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.btn-outline-light{
    background-color: transparent !important;
}


/* Style for the overlay */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.822);
}

/* Style for the text inside the overlay */
.overlay .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 10%; 
    left: 0;
    width: 100%; 
    text-align: center; 
    padding: 10px; 
    box-sizing: border-box; 
}

/* Hide the white text box on hover */
a:hover .service-name {
    opacity: 0;
    transition: .5s ease;
}

/* Show the overlay on hover */
a:hover .overlay {
    opacity: 1;
}




/* Style for the overlay */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.76); 
}

/* Style for the text inside the overlay */
.overlay .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Show the overlay on hover */
a:hover .overlay {
    opacity: 1;
}

.about-right{
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.about-right img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image fits within the container */
}

.package-bg{
    background-color:#925A0B;
    color: white;
    font-family: "Lora", serif;
    letter-spacing: 1px;
}
.package-bg h4{
    background-color:#925A0B;
    color: white !important;
    font-family: "Lora", serif;
    letter-spacing: 1px;
}

.package-bg-middle{
    font-family: "Lora", serif;
    letter-spacing: 1px;
    color: black;
}

.footer p{
    color: white !important;
}
.footer .btn-link{
    color: white !important;
    font-size: 1.3rem !important;
}

.service-name{
    background-color: #945A0F;
    color: white !important;
}
.service-name h5{

    color: white !important;
}
.ps-4 h4{
    font-family: "Lora", serif !important;
}
.ps-4 h5{
    font-family: "Lora", serif !important;
}


.service-item {
    position: relative;
    height: 300px; /* Adjust as needed */
    padding: 30px;
    transition: .5s;
    border: #925A0B solid 1px;
    box-shadow: 1px 2px 1px black;
    overflow: hidden;
}

/* Styling the heading to be at the bottom initially */
.service-item h4 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    transition: bottom 0.5s ease-in-out;
}

/* Initially hide the text and button */
.service-item p,
.service-item a {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Hover Effect */
.service-item:hover h4 {
    bottom: 120px; /* Moves up, making room for text & button */
}

.service-item:hover p,
.service-item:hover a {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover .service-name {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.border-bottom h4{
    font-family: "Lora", serif !important;
}


@media screen and (min-width: 786px) {
    .sec-padding {
        /* border: rgb(73, 168, 18) solid; */
        padding:7% 5%;
    }
}
@media screen and (min-width: 481px) and (max-width: 786px) {
    .sec-padding {
        /* border: red solid; */
        padding:9% 5%;

    
    }

    .wsfulllinksty {
        margin: 14% 0 0;
    }
}
@media screen and (max-width: 480px) {
    .sec-padding {
        padding:7% 5%;
    }
    .wsfulllinksty {
        margin: 14% 0 0;
    }
  
}



.section-padding {
    width: 100%;
    float: left;
    position: relative;
    padding: 60px 0 10px 0;
}

.category-container {
    width: 100%;
    float: left;
    position: relative;
}

.section-header h5 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    color: #231f20;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.section-header h2 {
    font-family: 'Luxus-Brut', sans-serif;
    font-size: 50px;
    font-weight: 500;
    text-align: left;
    color: #231f20;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}

.image-group {
    width: 100%;
    float: left;
    position: relative;
}

.image-wrapper {
    width: 100%;
    float: left;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    height: 440px;
}

.image-small-container {
    top: 15%;
    width: 40%;
    float: left;
    position: absolute;
    right:-20px;
}

.image-small-container img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    border-radius: 80px;
}



















#luxury-stay-section {
    width: 100%;
    float: left;
    position: relative;
    padding: 50px 0 10px 0;
}

.luxury-stay-card {
    width: 100%;
    float: left;
    position: relative;
    padding-top: 15px;
}

.luxury-stay-box {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.luxury-stay-image {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.luxury-stay-image img {
    width: 100%;
    object-fit: cover;
}

.luxury-stay-overlay {
    width: 100%;
    float: left;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 49px 40px 49px;
}

.overlay-text-container {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-direction: row;
}

.overlay-text-content {
    width: 100%;
    float: left;
    position: relative;
}

.overlay-text-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 20px 0;
    line-height: inherit;
    margin: 0;
}

.overlay-text-content h3 {
    font-family: 'quasimoda', sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    color: #fff;
    text-transform: inherit;
    padding: 0 0 5px 0;
    line-height: inherit;
    margin: 0;
    position: relative;
}

.overlay-text-content h3:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 40px;
    background: #fff;
    left: -10%;
    top: 40%;
}

.overlay-text-content h5 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #fff;
    text-transform: inherit;
    padding: 0;
    line-height: inherit;
    margin: 0;
}


#luxury-stay-section .owl-nav {
    position: absolute;
    top: 45%;
    left: 0%;
    width: 100%;
    padding: 0 0px;
    visibility: visible;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#luxury-stay-section .owl-nav .owl-prev {
    background: #f1f1f1 !important;
    color: #231f20 !important;
    float: left;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 0%;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    outline: none;
    padding: 5px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#luxury-stay-section .owl-nav .owl-prev:hover {
    background: #945A0F !important;
}

#luxury-stay-section .owl-nav .owl-next {
    background: #f1f1f1 !important;
    color: #231f20 !important;
    float: right;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 0%;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    outline: none;
    padding: 5px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#luxury-stay-section .owl-nav .owl-next:hover {
    background: #945A0F !important;
}



  .content-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }

  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.342); /* Adjust opacity as needed */
    z-index: 1;
}
.package-bg-middle{
    font-family: "Playfair Display", serif !important;
}
.whyus-text h4{
    font-family: "Playfair Display", serif;
}
.ps-4 h1{
    font-family: "Playfair Display", serif; 
}

.display-5{
    font-family: "Playfair Display", serif; 
    color: black; 
}
.p-5 span{
    font-family: "Playfair Display", serif; 
    font-size:1.2rem;
}






.btn-primary{
    border:white solid 1px;
    padding:1rem;
    background-color: #945A0F;
}


.btn-primary:hover{
    color: white;
    padding:1rem;
    background-color:white;
    color:#945A0F;
    border:#945A0F 1px solid;

}

.home-cta-text h2{

  Font-size: 2.7rem;
  font-weight: 800 !important;
  font-family: "Playfair Display", serif;
  color:white;
  margin-bottom: 5%;
}

.home-cta-text h3{
    Font-size: 1.7rem;
    font-weight: 800 !important;
    font-family: "Playfair Display", serif;
    color:#945A0F;
    text-shadow: 1px 2px 2px black;
}

.tailor-btn:hover{
    font-family: "Playfair Display", serif; 
    font-size:1.2rem;
    color: black !important;
}

.middle-button:hover{
color: #945A0F !important;
}

.cta-sec{
    /* border: transparent solid .2px; */
    padding:28% 0;
}

.sticky-banner.cta-sec {
    position: relative;
    background-size: cover;
    background-position: center;
}

.sticky-banner.cta-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.76); /* Adjust opacity as needed */
    z-index: 1;
}

.sticky-banner.cta-sec .container {
    position: relative;
    z-index: 2;
}

.cta-section h2{
    line-height: 170%;
} 