:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

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


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #595222;
    font-size: 1rem;
    text-transform: capitalize;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    /* color: var(--primary); */
    color: #d3c051;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(89, 82, 34, .5); */
    z-index: 1;
}

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

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

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: #e2d589;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: #e2d589;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: #595222;
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/slider/2.jpg);


    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
    width: 100%;
    height: 260px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    /* margin-top: -110px; */
    /* padding-top: 180px; */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7e2d;
    border: 1px solid #8a7e2d;
    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: #8a7e2d;
    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 {
    padding: 5px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #8a7e2d;
}

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

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

/**/
.topbg {
    background-color: #595222;
}

.topbg p {
    color: #fff;
}

.headerBg {
    background-color: #fbeee6;
}

.dheadlogo img {
    width: 150px;
}

.dtopicon i {
    color: #e2d589;
}

.dbooknow {
    color: #595222 !important;
    background-color: #e2d589;
    border-color: #e2d589;
}

.dbooknow:hover {
    color: #fff !important;
    background-color: #595222;
    border-color: #595222;
}

.text-end a {
    color: #e2d589;
}

.text-color {
    color: #595222;
    color: #595222;
    font-size: 18px;
    font-weight: 600;
    /* font-family:'Arial',sans-serif; */
}

.Icolor {
    color: #d7c34e;
}

.bg-color {
    background-color: #d7c34e;
}

.bg-color1 {
    background-color: #595222;
    color: #fff;
}

.bg-color1:hover {
    background-color: #d7c34e;
    color: #595222;
}

.roomservicetag {
    background-color: #8a7e2d;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
}

.roomcardbox {
    background-color: #fff;
    height: 200px;
}

.roommainsection {
    background-color: #fbeee6;
}

.delightingbg {
    background-image: url(../img/delightingbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.offer-service-content h5 {
    padding: 16px;
    margin-bottom: 0px;
    color: #595222;
    font-size: 24px;
    font-weight: 600;
}

.offer-service-content p {
    padding: 0px 16px 16px 16px;
    margin-bottom: 0px;
}

/**/
.gallery-section {
    padding: 0px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.gallery-container {
    position: relative;
}

.image-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.image-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

/* .productGallery h4 {
    color: #ffffff !important;
    margin-top: -50px;
    position: relative;
    background-color: #8a7e2d !important;
    overflow: hidden;
    height: 50px;
    font-size: 16px;
    padding: 10px;
    text-align: center;
} */

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.anemeties-txt {
    width: 100%;
    height: 70px;
    background: #8a7e2d;
    /* color: white; */
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.anemeties-txt h4 {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

.gallery-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-btn {
    background-color: #8a7e2d;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background-color: #8c0000;
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.text-justify {
    text-align: justify;
  
}


.about-image {
    width: 100%;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.mv-div {
    width: 100%;
    height: 195px;
    background-color: white;
    padding: 20px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 50px;
    border: solid #595222 3px;

}

.mv-div h2 {
    color: #595222;
    font-size: 25px;
}

.mv-div p {
    color: black;
}

.bg-sec {
    background-color: #595222;
    margin-top: -80px;

}

.founder-div {
    width: 100%;
    height: 292px;
    /* border: solid red 2px; */
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    margin-bottom: 43px;

}

.founder-div img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


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

.feature-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
    /* margin-bottom: 50px; */
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #595222;
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 7px;
}

.feature-text {
    font-size: 16px;
    color: #555;
    text-align: justify;
}

.contact-div {
    width: 100%;
    height: 355px;
    border: solid #8a7e2d 2px;
    padding: 30px;
}

.contact-div h3 {
    color: #8a7e2d;
    padding-top: 20px;
}

.contact-div i {
    font-size: 17px;
    color: #8a7e2d;
    padding-right: 24px;
}

.contact-div a {
    color: black;
}

.form-control {
    margin-bottom: 20px;
}

.enq-btn {
    width: 150px;
    height: 40px;
    background-color: #8a7e2d;
    border: none;
    color: white;
}


@media (max-width: 768px) {
    .about-image {
        width: 100%;
        height: 250px !important;
    }

    .mv-div {
        width: 100%;
        height: 195px;
        background-color: white;
        padding: 20px !important;

    }

    .feature-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 16px !important;
        transition: transform 0.3s ease;
        /* margin-bottom: 50px; */
    }
    .founder-div img {
        width: 118% !important;
        height: 100%;
        border-radius: 20px;
    }
    .img-fluid {
        max-width: 100%;
        height: 170px !important;
    }
    .text-decoration1 {
        font-size: 2.3rem !important;
    }
    .img-fluid1{
        max-width: 100%;
        height: 150px !important;
       
    }
    .test-style{
font-size: 10px !important;
margin-top:-10px !important;
color:black !important;
    }
    .name-style{
        font-size: 15px !important;
    margin-left: -18px !important;
    }
    .icon-style{
        font-size:25px !important;
    }
    ul-design {
        line-height: 2rem;
        margin-left: -20px;
        color: #000000 !important;}
        .baner-btn {
            background-color: #817630;
            width: 150px;
            height: 35px !important;
            border: none;
            color: white;
            border-radius: 21px;
            flex-direction: column;
            text-align: center;
            align-items: center;
            justify-content: center;
        }
        .ul-design {
            line-height: 2rem;
            margin-left: -20px;
            font-size: 18px !important;
        }
        .textledes{
            margin-top: -20px !important;
            font-size: 15px;
        }
        .row-left {
            margin-left: 30px !important;
        }
        .rowlastcon {
            margin-top: -30px;
            justify-content: center;
            margin-left: 0px !important;}
        
}

.f-image {
    width: 100%;
    height: 180px;
}

.f-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footr-set {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.footer-bg {
    background-color: rgb(251, 238, 230);
    margin-top: -100px;
}
.footer p {
    color: #8a7e2d;
}

.footer p a {
    color: #8a7e2d;
}


.footer .btn.btn-link i {
    font-size: 13px;
    padding-right: 15px;
}

.baner-btn {
    background-color: #817630;
    width: 150px;
    height: 48px;
    border: none;
    color: white;
    border-radius: 21px;
    /* display: flex */
    ;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.gallery-container {
    padding: 20px 0;
}

.gallery-tabs .nav-link {
    font-weight: 600;
    color: #555;
    border: none;
    padding: 10px 20px;
}

.gallery-tabs .nav-link.active {
    color: white;
    background-color: #8a7e2d;
    /* background: transparent; */
    border-bottom: 3px solid #8a7e2d;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--gallery-spacing);
    margin-top: 20px;
    gap: 16px;
}

.media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.media-caption {
    /* padding: 12px; */
    background: white;
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


.room-hight {
    height: 266px;
}

video {
    height: 400px;
}


.room-btn {
    width: 121px;
    height: 26px;
    background-color: #8a7e2d;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 2px;
    font-size: 13px;
    color: white;
}


.text-color {
    color: #0f172b;
}

.bg-color1 {
    background-color: var(--accent-color);
    color: white;
}

.bg-color1:hover {
    background-color: #2980b9;
    color: white;
}

.roommainsection {
    padding: 5rem 0;
}

.room-item {
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.room-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.room-hight {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.roomcardbox {
    border-top: 3px solid var(--accent-color);
}

.roomservicetag {
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: 15px;
    color: #495057;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.amenities-container {
    display: flex;
    flex-wrap: wrap;
    /* gap: 8px; */
    margin-bottom: 15px;
}

.room-size {
    font-weight: 600;
    color: var(--accent-color);
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}



@media (max-width: 768px) {


    .roomservicetag {
        font-size: 0.8rem;
    }

    .founder-div {
    width: 85%;
    }
}

.room-section {
    /* padding: 80px 0; */
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.room-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 358px;
    background: linear-gradient(45deg, #636e72, #b2bec3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    width: 100%;

}
.room-image img
{
    width: 100%;
    height: 100%;
}

.room-detail {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 358px;
}

.room-detail h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.room-detail h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.roomservicetag {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: 50px;
    margin: 0 10px 15px 0;
    font-size: 14px;
    color: var(--dark-text);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.roomservicetag:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.roomservicetag i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.roomservicetag:hover i {
    color: white;
}

.more-features-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.more-features-btn:hover {
    background: var(--accent-color);
    color: white;
}

.pricing {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed #eaeaea;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.price-period {
    font-size: 14px;
    color: var(--light-text);
}

.book-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.book-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .room-image {
        margin-bottom: 30px;
        height: 300px;
    }
}

@font-face {
    font-family: 'FertigoPro'; 
    src: url('../FertigoPro-Regular.otf') format('opentype');
  }
  body,h1,h2,h3,h4,h5 {
    font-family: FertigoPro, sans-serif;
  }


.text-style{
    font-size:1.875rem;
    background: rgb(14 13 13 / 20%); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding:5px 30px;
    border-radius:2px;
}

.text-decoration{
    font-size:17px;
}
.text-decoration1{
    font-size:3.75rem;
}
.count-data{
    font-size: 20px;
    font-family: 'Arial',sans-serif;
}
.navbar-dark .navbar-toggler {
   
    /* border-color: #fea116; */
    background: lavenderblush;
font-size:30px;
}

   .line-marks{
    line-height:1.3rem;
   }
   

   .offer-section {
    padding: 60px 0;
    background: #faf7f2;
    font-family: 'Lora', serif;
  }
  
  .offer-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0f172b;
  }
  
  .offer-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .offer-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .offer-text ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #444;
  }
  
  .offer-text ul li i {
    color: #5a3e2b;
    margin-right: 10px;
    font-size: 1.1rem;
  }
  #offerCarousel {
    max-height: 320px;
    overflow: hidden;
  }
  
  #offerCarousel img {
    object-fit: cover;
    height: 320px;
  }
  
  /* Carousel Controls (Arrow Size Small) */
  #offerCarousel .carousel-control-prev-icon,
  #offerCarousel .carousel-control-next-icon {
    width: 25px;   /* arrow chhota kar diya */
    height: 25px;
    background-size: 100% 100%;
  }
  
  .offer-sectionnew{
    background-color:white;
    width:100%;
    height:auto;
  
    padding:20px;
  }


.font-design{
    font-size:15px;
    top:-20px;
}

.con-class{
    margin-top:-70px;
}
.ul-design{
    line-height: 2rem;
    margin-left: -20px;
}





    
.container {
    max-width: 1200px;
    margin: 40px auto;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo span {
    color: #ff0000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

.live-badge {
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffcc00;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #ccc;
}

/* .btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
} */

/* .btn:hover {
    background: #ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
} */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.amenity-card {
 
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition:all 0.3s 
    ease;
    display: flex;
    flex-direction: column;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
    margin-left:5px;
    transition: transform 0.5s ease;
}

.amenity-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #8a7e2d;
    margin-bottom: 10px;
   
}

.card-content p {
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Zigzag pattern */
.amenity-card:nth-child(3n+1) .card-content {
    order: 2;
}

.amenity-card:nth-child(3n+1) .card-image {
    order: 1;
}

.amenity-card:nth-child(3n+2) .card-content {
    order: 1;
}

.amenity-card:nth-child(3n+2) .card-image {
    order: 2;
}

.amenity-card:nth-child(3n+3) .card-content {
    order: 2;
}

.amenity-card:nth-child(3n+3) .card-image {
    order: 1;
}

/* Responsive design */
@media (max-width: 1100px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Adjust zigzag for 2 columns */
    .amenity-card:nth-child(2n+1) .card-content {
        order: 2;
    }
    
    .amenity-card:nth-child(2n+1) .card-image {
        order: 1;
    }
    
    .amenity-card:nth-child(2n+2) .card-content {
        order: 1;
    }
    
    .amenity-card:nth-child(2n+2) .card-image {
        order: 2;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Reset order for mobile */
    .amenity-card .card-content,
    .amenity-card .card-image {
        order: unset !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
.cont-sec{
    margin-top:-100px;
} 
.cont-sec1{
    margin-top: -130px;
}
.icon-color{
    
    color:#edd078;
}
.container-design{
    margin-top:-50px;
}
.foot-design{
    margin-top:-40px;
}
.icon-design{
    color:#000000;
}
.weather-container:hover .dropdown {
    display: block;
  }
  .dropdowncss{
    display:none;
    position:absolute;
    top:35px;
    left:-120px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    min-width:180px;
    padding:10px;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
    z-index:10;
    font-size:12px;
  }
 .icondesih{
    font-size:20px; 
    cursor:pointer;
     color:#e2d589;;
 }
 
 /* Offer list */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    float: left;
    
}
  .offer-list li {
    margin: 12px 0;
    font-size: 15px;
    color: #333;
    line-height: 1rem;
    display: flex;
    align-items: center;
  }
  .offer-list li i {
    color: #8a7e2d;
    margin-right: 10px;
    font-size: 18px;
  }
  
  /* Closing line */
  .closing {
    /* text-align: center; */
    margin-top: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #8a7e2d;
    letter-spacing: 0.3px;
  }
  .icon-clr{
    color:#dcc351;
  }
  .font-derw{
   font-size:18px;
    font-family:sans-serif;
  }
  .texrrr{
    font-family: sans-serif;
  }
  .conght{
    line-height: 1rem;
  }
  .row-left{
    margin-left:100px;
  }
  .last-content{
    margin:0px 0px;
  }
  .rowlastcon{
    margin-top: -60px;
    justify-content: center;
    margin-left: 150px;
}
  
.footer-end{
margin-top:9px;
}