:root {
    /* Colors */
    --primary-color: #0B78C8;
    --secondary-color: #333;
    --text-color: #666;
    --light-text-color: #7A8189;
    --white: #fff;
    --black: #000000;    
    
    --background-gray: #1E2222;
    --background-grayLight: #F1EFED;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --header-scrolled-bg: rgba(255, 255, 255, 0.95);
    --transparent-color: transparent;
    --light-border-color: #E1E1E1;

    --image-radius: 12px;

    /* Typography */
    --font-family: "Poppins", sans-serif;
    --heading-font: "Playfair Display", serif;
    --sign-font: "Allura", cursive;

    /* Shadows */
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --box-shadow-none: 0 2px 5px rgba(0, 0, 0, 0);

}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{max-width: 100%; height: auto;}

html{font-size: 15px;}
body {
    color: var(--secondary-color);
    scroll-behavior: smooth;
    font: normal 15px/1.5 var(--font-family);
    color: var(--black);
    min-width: 320px;
}

a { text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

strong{font-weight: 600;}

button, a {
    cursor: pointer;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

h2{font-size: 55px;}
h3{font-size: 34px;}
h4{font-size: 20px;}

p { margin-bottom: 18px;
    color: var(--secondary-color);
}

.mb-0{margin-bottom: 0px !important;}
.mb-1{margin-bottom: 10px !important;}
.mb-2{margin-bottom: 20px !important;}
.mb-3{margin-bottom: 30px !important;}
.mb-4{margin-bottom: 40px !important;}
.mb-5{margin-bottom: 50px !important;}

.pt-4{padding-top: 40px !important;}
.pt-5{padding-top: 50px !important;}

.btn {
    display: inline-block;
    padding: 8px 20px;
    background: #D3A971;    
    border: 0 none;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn span{
    position: relative;
    z-index: 2;
}

.btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    top: 0;
    transition: left 0.2s ease;
    z-index: 1;
}

.btn:hover::before, .btn:focus::before {
    left: 100%;
}

/* Container */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px; 
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--transparent-color);
    box-shadow: var(--box-shadow-none);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.header .logo{
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: max-width 0.2s ease 0s;
    max-width: 155px;
}

header.scrolled .logo{
    max-width: 100px;
}

.header .nav{display: flex;
    flex: 1;
}

.nav-list {
    display: flex;
    gap: 30px;
    flex: 1;
}

.nav-item {
    position: relative;
    margin-right: 0;
}

.nav-item:nth-child(3) {
    margin-left: auto;
}

.nav-item a {
    padding:10px 5px;
    transition: color 0.3s ease;
    font-size: 17px;
}

header *{ 
        color: var(--white);
}

.fixed-header header {position: sticky;}

.header:hover *,
.fixed-header header  *,
header.scrolled  * {
    color: var(--black);
}

.header:hover *:hover, .header:hover *:focus,
header *:hover, header *:focus {
    color: var(--primary-color);
}

.fixed-header header *:hover, .fixed-header header *:focus,
header.scrolled *:hover, header.scrolled *:focus {
    color: var(--primary-color);
}

.header:hover,
.fixed-header header,
.header.scrolled {
    background: var(--header-scrolled-bg);
    box-shadow: var(--box-shadow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding:10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* header end  */

/* Home page start  */

/* banner section  */
.home-banner-slider .slider-item{
    height: 100vh;
    min-height: 400px;
    background-size: cover ;
    align-items: center;
}

.home-banner-slider .slick-list{
    z-index: 1;
}

.home-banner-slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:  20px;
    z-index: 2;
    background-color: var(--transparent-color);
    border: solid 1px white;
    border-left-width: 0px;
    padding: 6px 8px 6px 20px ;
    text-align: left;
}

.home-banner-slider .slick-arrow:hover{
    background-color: var(--primary-color);
}

.home-banner-slider .slick-arrow::before,
.home-banner-slider .slick-arrow::after{
    content: "";
    width: 1px;
    height: calc(50% - 10px);
    background-color: var(--white);
    
    position: absolute;
    left: 0;
    top: 0;
}

.home-banner-slider .slick-arrow::after{
    top: auto;
    bottom: 0;
}

.home-banner-slider .slick-arrow.slick-next::before,
.home-banner-slider .slick-arrow.slick-next::after{
    left: auto;
    right: 0;
}

.home-banner-slider .slick-arrow span{
    font-size: 12px;
    line-height: 1;
    color: var(--white);
}

.home-banner-slider .slick-arrow.slick-next{
    left: auto;
    right: 20px;
    padding: 6px 20px 6px 8px ;
    border-left-width: 1px;
    border-right-width: 0px;
}

.home-banner-slider .slick-arrow.slick-next svg{
    left: auto;
    right: -5px;
}

.home-banner-slider .slick-arrow svg{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:  -5px;
    z-index: 2;
}

.home-banner-slider.slick-initialized .slick-slide{display: flex;
    align-items: center;
    overflow: hidden;
}

.home-banner-slider .slider-item{
    padding-top: 100px;
    display: flex !important;
}

.home-banner-slider .container{
    text-align: center;
    color: var(--white);
}
.home-banner-slider h2{
    font-size: 96px;
    color: var(--white);
    font-family: var(--heading-font);
}

.home-banner-slider p{
    color: var(--white);
    width: 70%;
    margin: 0 auto 30px;
}

/* About section  */

.about-section{padding: 70px 0;}

.about-section > .container{display: flex; gap: 30px 5.5%;}
.about-section .image-wrapper{width: 35%;}
.about-section .image-wrapper .image{ position: sticky; top: 80px;}
.about-section .section-content{flex: 1;}


.tag-line{font-family: var(--sign-font);
    color: #8D7156;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
}

/* features section  */

.features-section{
    padding: 70px 0;
    background-color: var(--primary-color);
}

.features-section h2{
    color: var(--white);
    max-width: 85%;
    margin: 0 auto 50px;
    text-align: center;
}

.features-section .cards-grid{
    padding-top: 20px;
}

.cards-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 40px;
}

.cards-grid .grid-item{
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.cards-grid .item-icon{
    width: 52px;
}

.cards-grid .item-content{
    flex: 1;
}

.cards-grid h3{font-size: 30px; margin-bottom: 12px;}
.cards-grid p{ margin-bottom: 10px;}


/* testimonial section */

.testimonial-section{
    background-size: cover;
    padding: 70px 0;
}
.testimonial-section .tag-line{text-align: center; display: block;}
.testimonial-section h2{
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.testimonial-carousel .slick-list{
    margin-bottom: 30px;
}

.testimonial-item{padding: 0 30px; position: relative;}

.testimonial-item .testimonial-content{
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px 40px;
    position: relative;
    flex: 1;
    text-align: center;
}

.testimonial-item .testimonial-content::before,
.testimonial-item .testimonial-content::after{
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: solid 1px #D3A971;
    z-index: 1;
    left: 20px;
    top: 20px;
}

.testimonial-item .testimonial-content::after{
    left: 16px;
    top: 24px;
}

.testimonial-item .testimonial-content > *{
    position: relative;
    z-index: 2;
}

.testimonial-item .testimonial-content p {
    font-size: 18px;
}

.icon-quote{
    display: inline-block;
    margin-bottom: 8px;
}

.testimonial-item .testimonial-content footer{
    font-size: 18px;
    font-weight: 600;
}

.testimonial-carousel .slick-dots {
    display: flex;
    gap: 18px;
    justify-content: center;
    padding: 15px;
}
.testimonial-carousel .slick-dots li button{
    display: block;
    font-size: 0;
    background-color: var(--white);
    border: 0px;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    position: relative;
}

.testimonial-carousel .slick-dots li button::before{
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    border: solid 2px var(--white);
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%) scale(1.5);
}

.testimonial-carousel .slick-dots li.slick-active button{
    background-color: #D3A971;
}

.testimonial-carousel .slick-dots li.slick-active button::before{
    border-color: #D3A971;
}


/* blog section */

.blog-section{ padding: 70px 0; }

.blog-section h2{text-align: center;}
.blog-section .section-head p{ font-weight: 600; font-size: 19px; text-align: center; padding-top: 10px;}

.blog-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 40px;
}

.blog-grid .item-img{position: relative; border-radius: 6px; overflow: hidden; 
    margin-bottom: 20px;
}
.blog-grid .item-img img{display: block;
width: 100%;}
.blog-grid .item-img .blog-date{
    position: absolute;
    left: 0;
    top: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
}

.blog-grid h3{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17.5px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: solid 2px #BC9A79;
}

.icon-link{display: inline-flex; gap: 8px; align-items: center;}
.icon-link i{max-width: 15px; display: flex;}
.icon-link:hover{text-decoration: underline;}

.section-head {
    margin-bottom: 50px;
}

.section-head h2{
    margin-bottom: 0;
}

.footer-main{
    background-color: #222222;
    padding: 40px 0;
}

.footer-main .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px 8%;
}

.footer-main .footer-col{
    text-align: center;
    color: #A2A2A2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.footer-main h4{
    font-size: 20px;
    color: var(--white);
}

.footer-main p{
    color: #A2A2A2;
}

.sm-list {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-main .footer-link{
    margin-bottom: 30px;
    font-weight: bold;
    color: #D3A971;
    border-bottom: solid 2px #D3A971;
    display: inline-block;
}

.footer-main .footer-link:hover{
    color: var(--white);
    border-color: var(--white);
}

.footer-main .footer-logo{
    margin-bottom: 20px;
}

.footer-bottom{
    background-color: black;
    padding: 25px 0;
}

.footer-bottom .footer-nav{
    padding: 0 0 15px;
}
.footer-bottom .footer-nav .navLinks{display: flex; justify-content: center; gap: 30px; margin: 0;}
.footer-bottom .footer-nav a{color: var(--white);}
.footer-bottom .footer-nav a:hover{text-decoration: underline;}

.copywrite-text { text-align: center; color: #A2A2A2;}

/* Blog Page  */

/* Top Banner  */
.banner-section{
    padding: 220px 0 70px;
    background-size: cover;
}
.banner-section .container{
    text-align: center;
    color: white;
}
.banner-section h1{
    font-size: 70px;
    padding-bottom: 36px;
    margin-bottom: 20px;
    background: center bottom url(../images/sepreater.svg) no-repeat;
}

.banner-section .breadcrumb{
    display: inline-flex;
    border: solid 1px var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    gap: 10px;
}

.banner-section .breadcrumb li{
    padding-right:20px;
    background: right center url(../images/breadcrumb-arrow.svg) no-repeat;
}
.banner-section .breadcrumb li:last-child{
    padding-right: 0;
    background: none;
}
.banner-section .breadcrumb a{
    color: var(--white);
}
.banner-section .breadcrumb a:hover{
    text-decoration: underline;
}

/* blog Page section */

.blogPage-section{
    padding: 70px 0;
}


.blog-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 80px 40px;
    margin-bottom: 60px;
}

.blog-list .blog-item{
    position: relative;
    padding-bottom: 40px;
}

.blog-list .item-img{position: relative; z-index: 1; border-radius: 6px; overflow: hidden; 
    margin-bottom: 20px;
}
.blog-list .item-img img{display: block;
    width: 100%;
}
.blog-list .item-img .blog-date{
    position: absolute;
    left: 20px;
    top: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
}

.blog-list .item-content{
    position: absolute;
    width: 80%;
    left: 10%;
    bottom: 0;
    z-index: 2;
    background-color: var(--white);
    border: solid 1px #AF9479;
    padding: 20px;
}

.blog-list h3{
    font-size: 20px;
    margin-bottom: 18px;
}

.blog-list .icon-link{
    font-weight: bold;
    font-family: var(--heading-font);
}

.pagination {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}
.pagination > ul{
    display: flex;
    justify-content: center;
    border: solid 1px #AF9479;
    border-radius: 6px;
    padding: 8px ;
}

.pagination li{
    padding-right: 10px;
    margin-right: 10px;
    border-right: solid 1px #AF9479;
}

.pagination li:last-child{
    border: none;
    margin-right: 0;
}

.pagination a{
    display: block;
    padding: 10px;
}

.pagination li a.disabled{
    color: #AB8965;
    cursor: default;
    pointer-events: none;
}

/* Blog Details page  */

.detailPage-section{padding: 70px 0;}

.detailPage-section .container{
    display: flex;
    gap: 30px;
}
.detailPage-section .main-content{flex: 1;}

.featured-image {
    margin-bottom: 20px;
}

.featured-image img{
    width: 100%;
    display: block;
}

.blog-shortInfo{
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.blog-shortInfo > div{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1;
    color: #6A6A6A;
}

.blog-shortInfo > div > i > img{
    height: 16px;
    display: block;
    width: auto;
}

.detailPage-section h2{
    font-size: 28px;
}


.two-cols{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax( 300px, 1fr ));
    gap: 30px;
    margin-bottom: 20px;
}

.default-list li{
    padding: 5px 0 5px 42px;
    background: url(../images/right-bordered-arrow.svg) left top no-repeat;
    margin-bottom: 10px;
}

.brownList {margin-bottom: 20px;}
.brownList li{
    background: url(../images/listing.svg) left 3px no-repeat;
    color: #AB8965;
    padding: 0 0 0 24px;
}

.blog-navigation{
    background-color: #02528D;
    color: var(--white);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 16%;
}

.blog-navigation a{color: var(--white);}

.blog-navigation .next-blog{
    text-align: right;
}

.blog-navigation h4{
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-navigation h4 a{
    display: inline-flex;
    gap: 8px;
    align-items: center;
}


small {
    color: #6D6D6D;
}

.form-row{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-row .form-col{
    min-width: 250px;
    flex: 1;
}

.default-input{
    background-color: #EEEEEE;
    border: solid 1px #EEEEEE;
    padding: 20px;
    display: block;
    width: 100%;
    resize: none;
    font-family: var(--font-family);
    font-size: 15px;
}

textarea.default-input{
    height: 120px;
}

button.btn{
    padding: 14px 20px;
}

.detailPage-section .right-sidebar{
    width: 28%;
}

.aside-box{
    background-color: #EEEEEE;
    border: solid 1px #D5D5D5;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px 24px;
}

.searchbox{
    background-color: var(--white);
    border-radius: 25px;
    display: flex;
}

.searchbox input{
    background-color: transparent;
    border: transparent;
    flex: 1;
    padding: 12px 20px;
    font-family: var(--font-family);
    font-size: 15px;
    min-width: 100px;
}

.searchbox input:focus-visible{
    outline: none;
}

.searchbox button{
    background-color: transparent;
    border: transparent;
    padding: 12px 20px 12px 10px;
}


.blogItem {display: flex; gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #B9B9B9;
    align-items: center;
}

.blogItem:last-child{
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blogItem .item-image{min-width: 80px;}
.blogItem .item-image img{display: block; width: 100%;}

.blogItem h3{
    font-size: 15px;
    font-family: var(--font-family);
    font-weight: 600;
    margin: 0;
    margin-bottom: 8px;
}

.blogItem .blog-shortInfo{margin-bottom: 0;}

/* contact page  */

.contactPage-section{
    padding: 70px 0;
}

.contactPage-section .container{
    display: flex;
    gap: 40px 7%;
    flex-wrap: wrap;
}

.contactPage-section .contact-form{width: 50%;}
.contactPage-section .contact-details{width: 35%;}


.contactPage-section .tag-line{font-size: 32px;}
.contactPage-section h2{font-size: 43px;}

.contact-list .list-item{
    display: flex;
    gap: 20px;
    margin-bottom: 26px;
    align-items: center;
}

.contact-list .list-item .item-icon{display: block;
    background-color: var(--primary-color);
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-list .list-item .item-info{
    flex: 1;
}

.contact-list .list-item h4{
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-map iframe{
    display: block;
    width: 100%;
}


/* Overlay hidden by default */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: auto;  
}

/* Popup box styling */
.popup {
  background: #fff;
  padding: 30px;
  max-width: 76%;
  margin: 100px auto;
  border-radius: 10px;
  position: relative;
}

/* Close button */
.closePopup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  background-color: #EBE8E8;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup .container{
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 0;
}

.popup .left-side{width: 48%; position: relative;}
.popup .left-side > img{
    width: 100%; 
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.popup .booking-call{
    position: absolute;
    display: flex;
    gap: 20px;
    left: 40px;
    bottom: 30px;
    align-items: center;
}

.popup .booking-call .icon-wrapper{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--white);
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}

.popup .booking-call .icon-wrapper::before{
    content: "";
    border-radius: 50%;
    position: absolute;
    border: solid 1px var(--white);
    transform: scale(1.2) translate(-50%, -50%);
    height: 100%;
    width: 100%;
    left: 60%;
    top: 60%;
}

.popup .booking-call-text{
    flex: 1;
    color: var(--white);
}

.flatpickr-months{
    background: transparent linear-gradient(180deg, #D0D0D0 0%, #8E8E8E 100%) 0% 0% no-repeat padding-box;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month{
    padding: 7px !important;
}

.flatpickr-weekdays{background-color: #E1E4EB !important; height: auto !important;}
.flatpickr-weekday{color: var(--black) !important; padding: 10px !important; display: block !important;
    font-weight: 600;
        border-right: solid 1px #D5CFCF !important;
        border-bottom: solid 1px #D5CFCF !important;
}

.flatpickr-current-month{padding: 6px 0 0 0 !important;}
.numInputWrapper .numInput,
.flatpickr-monthDropdown-months{font-size: 15px !important; font-weight: 600 !important;}

.popup .booking-call-text span{display: block; font-size: 28px; line-height: 1.2;}
.popup .booking-call-text a{
    font-weight: bold;
    color: var(--white);
}
.popup .right-side .form-row{
    margin-bottom: 15px;
}
.popup .right-side .default-input{
    padding: 8px 14px;
}

.popup .right-side .btn.full-width{
    padding: 12px 20px 10px;
}

.popup .right-side textarea.default-input{height: 80px;}

.full-width{width: 100%;}


    .flatpickr-calendar {
      max-width: 100%;
      margin-bottom: 20px;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      border: solid 1px #C1C0C0;
    }

    .flatpickr-calendar,
    .flatpickr-rContainer,
    .flatpickr-days,
    .dayContainer{
        max-width: 100% !important;
        width: 100% !important;
    }

    .flatpickr-weekdays .flatpickr-weekdaycontainer,
    .dayContainer{
        border-left: solid 1px #D5CFCF !important;
    }

    .dayContainer .flatpickr-day{
        width: 14.28% !important;
        max-width: 14.28% !important;
        background-color: #F5F5F5 !important;
        color: #6A6A6A !important;
        border-radius: 0 !important;
        height: 34px !important;
        line-height: 34px !important;
        border-right: solid 1px #D5CFCF !important;
        border-bottom: solid 1px #D5CFCF !important;
    }
    .dayContainer .flatpickr-day.flatpickr-disabled{
        background-color: var(--white) !important;
        color: #6A6A6A !important;
    }

    .dayContainer .flatpickr-day.selected,
    .dayContainer .flatpickr-day.today{
        background-color: #AF9479 !important;
        color: var(--white) !important;
        border-color: #AF9479 !important;
    }

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month{
        background-color: var(--white) !important;
        height: 23px !important;
        width: 23px !important;
        padding: 2px 4px !important;
        border-radius: 50% !important;
        margin: 5px 8px !important;
    }


/* countdown section */

.countdown-section {
    background-color: var(--black);
    padding: 30px 0;
}

.countdown-section .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.countdown-section .cont-item{
    color: white;
    display: flex;
    border-right: solid 1px #BBBBBB;
    padding: 40px;
    align-items: center;
}

.countdown-section .cont-item:last-child{
    border: none;
}

.countdown-section .cont-item span{
    font-size: 108px;
    font-family: var(--heading-font);
    line-height: 1;
    font-weight: bold;
    opacity: 0.35;
    margin-top: -30px;
}


.countdown-section .cont-item strong{
    font-size: 22px;
    font-family: var(--heading-font);
    line-height: 1.2;
    font-weight: bold;
    margin-left: -36px;
}

/* portfolio section */

.portfolio-section{
    padding: 70px 0;
    background-color: var(--background-grayLight);
    overflow: hidden;
}

    .portfolio-section h2{
        text-align: center;
        margin-bottom: 50px;
        font-size: 46px;
    }

    .portfolio-slider .slick-list{
        overflow: visible;
        margin: 0 -20px 50px;
    }

    .portfolio-slider .slick-slide {
        margin: 0 20px;
        }

    .portfolio-slider .item-image{position: relative;}
    .portfolio-slider .item-image img{display: block;}
    .portfolio-slider .item-image .image-caption{
        position: absolute;
        left: 20px;
        bottom: 20px;
        background-color: #FFFFFFCF;
        padding: 3px 10px 6px 10px;
        font-size: 27px;
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: var(--heading-font);
        font-weight: bold;
    }
    .portfolio-slider .item-image .image-caption::before{
        content: '';
        width: 50px;
        height: 2px;
        display: block;
        background-color:var(--black);
        margin-top: 3px;
    }

    .portfolio-slider .slick-dots{
        display: flex;
        justify-content: center;
    }

    .portfolio-slider .slick-dots li button:before {
        content: '';
        width: 0px;
        height: 2px;
        display: block;
        background-color:var(--black);
        transition: width 0.5s ease;
        top: 2px;
    }
    .portfolio-slider .slick-dots li.slick-active button:before {
        width: 40px;
    }
    .portfolio-slider .slick-dots li button {
        font-size: 0;
        display: flex;
        align-items: center;
        font-family: var(--heading-font);
        font-weight: bold;
        font-size: 15px;
        border: none;
    }
    .portfolio-slider .slick-dots li button::after {
        content: attr(data-dot-number);
        font-size: 14px;
        color: #000;
        padding: 2px 10px 5px 10px;
    }

 /* Room facilities sections */

.facilities-section{
    padding: 70px 0;
}

.facilities-section .container{
    display: flex;
    gap: 50px;
}

.facilities-section .left-side{
    width: 50%;
}

.facilities-section h2{
    font-size: 45px;
}

.facilities-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    position: relative;
}

.facilities-list::after{
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--white);
    right: 0;
    top: 0;
}

.facilities-list::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    bottom: 0;
    left: 0;
}

.facilities-list .facilities-item{
    padding: 20px;
    display: flex;
    gap: 20px;
    border-right: solid 1px #B9B9B9;
    border-bottom: solid 1px #B9B9B9;
}

.facilities-list .item-icon{
    width: 52px;
}

.facilities-list .item-content{
    flex: 1;
}

.facilities-list h3{font-size: 22px; margin-bottom: 12px; color: #AF9479;}
.facilities-list p{ margin-bottom: 10px;}

.two-images{display: flex; gap: 20px; position: sticky; top: 80px;}
.two-images .image-wrapper:nth-child(2){
    margin-top: 80px;
}

.facilities-section .right-side{
    flex: 1;
}

/* booking section */

.booking-section{
    /* background: url(../images/bookingBG-img.png) center center no-repeat; */
    /* background-size: cover; */
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none; 
  z-index: 0;
}

.image-layer img{display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.left-image { position: relative;}
.left-image::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.right-image {
  flex: 1;
}


.booking-section .container{
    display: flex;
    align-items: center;
    min-height: 360px;
    position: relative;
    z-index: 2;
}

.booking-section .content-section{
    width: 63.5%;
    text-align: center;
    padding-right: 30px ;
}

.booking-section .tagline{
   color:  #AB8965;
   font-family: var(--font-family);
}

.booking-section h2{
    font-size: 55px;
    font-family: var(--font-family);
    font-weight: 100;
    color: var(--white);
    margin-bottom: 40px;
}
.booking-section h2 span,.booking-section h2 b{
    color: #AF9479;
}

.slick-slide > div {
    width: 100%;
}

@media (max-width: 1399.98px) {


.popup .booking-call{
    left: 20px;
}

.popup .booking-call-text span{
    font-size: 20px;
}

}

@media (max-width: 1199.98px) {
    

    .container { max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px; 
        padding-right: 20px;}

    .home-banner-slider h2{font-size: 70px;}
    .banner-section h1{ font-size: 50px;}
    body .container h2 {
        font-size: 42px;
    }

    body .contactPage-section h2{
        font-size: 35px;
    }

    .popup h3{
        font-size: 25px;
    }

    .detailPage-section .right-sidebar {
        width: 300px;
    }


    .footer-main .container{
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-main .footer-col:first-child{
        order: 2;
    }

    .footer-main .footer-col{width: calc(48% - 20px);}
    .footer-main .footer-col:nth-child(2){
        width: 100%;
    }

    .footer-main .footer-col:nth-child(2) p{
        max-width: 600px;
    }


.popup .booking-call{
    left: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.popup .booking-call-text span{
    font-size: 20px;
}


}


@media (max-width: 1024.9px) {

    .home-banner-slider h2{font-size: 50px;}
    .banner-section h1{ font-size: 40px;}
    body .container h2 {
        font-size: 30px;
    }

/* Mobile nav  */
.header{ background: var(--header-scrolled-bg); box-shadow: var(--box-shadow); }
.header .container {padding: 8px 20px;}
.header *{color: var(--black);}

.header .nav, .header-links{gap: 12px;}

.header .logo {
    max-width: 100px;
}

    .nav-list {
        display: none;
        position: fixed;
        top: 54px;
        left: 0;
        width: 100%;
        height: calc(100vh - 54px);
        background: var(--white);
        flex-direction: column;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow: auto;
        padding: 20px;
    }

    body.active{
        overflow: hidden;
    }
    .nav-list.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-list li a{display: block;
        border-bottom: solid 1px  var(--light-border-color);
        font-weight: 600;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        display: block;
    }

    .nav-list .dropdown li a { font-weight: normal;}

    .nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
        display: block;
    }

.nav-item:nth-child(3) {
    margin-left: 0;
}

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1000;
    }

.contact-list .list-item h4 {
    font-size: 20px;
}

.popup .container{
    display: block;
}
.popup .left-side{
    display: none;
}

    .contactPage-section .container > *
    {
        width: 100%;
    }

}

.home-banner-slider .slick-dots{display: none !important;}

@media (max-width: 768.9px) {
    .about-section > .container,
    .facilities-section .container,
    .detailPage-section .container,
    .contactPage-section .container
    {
        flex-direction: column;
    }

    .about-section > .container > *,
    .facilities-section .container > *,
    .detailPage-section .container > *,
    .contactPage-section .container > *
    {
        width: 100%;
    }


    .footer-main .footer-col {
        width: 100%;
    }

.booking-section .left-image{width: 100%;}
.booking-section .right-image{display: none;}

.booking-section .content-section{width: 100%;}

.countdown-section .cont-item{border: none;}

.contact-list .list-item h4 {
    font-size: 18px;
}


.home-banner-slider .slick-arrow{
 display: none !important;
}


.home-banner-slider .slick-dots {
    display: flex !important;
    gap: 18px;
    justify-content: center;
    padding: 15px;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 2;
}
.home-banner-slider .slick-dots li button{
    display: block;
    font-size: 0;
    background-color: var(--white);
    border: 0px;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    position: relative;
}

.home-banner-slider .slick-dots li button::before{
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    border: solid 1px var(--white);
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%) scale(1.5);
}

.home-banner-slider .slick-dots li.slick-active button{
    background-color: #D3A971;
}

.home-banner-slider .slick-dots li.slick-active button::before{
    border-color: #D3A971;
}

.testimonial-carousel .slick-dots li button{    
    height: 11px;
    width: 11px;
}
.testimonial-carousel .slick-dots li button::before{
    border-width: 1px;
}

}

