@charset "utf-8";
/* CSS Document */

/* =========================
GLOBAL CSS
========================= */




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

img{
    width:100%;
    display:block;
}

.container{
    max-width:1250px;
    margin:auto;
    padding:0 20px;
}

section{
    padding:50px 0;
}



/* =========================
TOP BAR
========================= */

#topBtn{
    position: fixed;
    bottom: 115px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #01d0da;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    display: none;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#topBtn:hover{
    background: #000;
    transform: translateY(-5px);
}



.ada {
    font-size: 17px;
    background: #544a7d;
    color: #fff;
    padding: 1%;
    text-align: center;
}

.social-links{
   /* color:#fff;*/
    font-size:20px;
    margin-right:15px;
    transition:0.3s;
}

.social-links a{
      color:#111111;
    font-size:20px;
    /*margin-right:15px;*/
    transition:0.3s;
}

.social-links a:hover{
    color:#d4af37;
}


.top-bar{
    width:100%;
    background:#01d0da;
    padding:12px 0;
    position:relative;
    z-index:1000;
}

.top-container{
    max-width:1250px;
    margin:auto;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.top-left a,
.top-left span{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
	    background-color: rgba(0, 0, 0, 0.55);
    padding: 8px 15px;



}

.top-left i{
    margin-right:8px;
}

.top-book-btn{
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.top-book-btn:hover{
    background:#fff;
    color:#111;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
   height: 90px;
    width: auto;
    width: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    font-size: 14px;
}

@media(max-width:768px){
	
	.nav-links {
    display: flex;
    align-items: center;
    gap: 20px!important;
}

    .logo{
        font-size:22px;
        line-height:1.1;
    }

    .logo span{
        font-size:10px;
        letter-spacing:2px;
    }
.logo img {
    height: 90px;
    width: auto;
    width: 100%;
    margin-top: 20px;
}
}

/* =========================
HEADER
========================= */

header{
	  position:absolute;
      /*position:fixed;*/
    /*top:56px;*/
    left:0;
    width:100%;
    z-index:999;
    transition:0.4s;
    background:#544a7d;
    backdrop-filter:blur(8px);
}

header.sticky{
    background:#2e28284d;
    box-shadow:0 3px 15px rgba(0,0,0,0.2);
}

.navbar{
    max-width:1250px;
    margin:auto;
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    font-size:30px;
    font-weight:700;
    line-height:1.2;
}

.logo span{
    display:block;
    font-size:13px;
    font-weight:400;
    letter-spacing:3px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#d4af37;
    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* =========================
HERO SECTION
========================= */


.hero{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    width:100%;
    height:100%;
    position:relative;
	
}

.slide{
       position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomEffect 8s linear infinite;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

@keyframes zoomEffect{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.1);
    }

}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    padding:20px;
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
    animation:fadeUp 1s ease;
	display:none;
}

.hero-content p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    animation:fadeUp 1.5s ease;
}

.hero-btns{
  margin-top:15px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn-primary{
    background:#01d0da;
    color:#001F3F;
}

.btn-primary:hover{
    background:#341c93;
    color:#fff;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
	  background:#341c93;
}

.btn-outline:hover{
    background:#fff;
    /*color:#111;*/
	color:#001F3F;
	
}

/* =========================
HERO SLIDER - RESPONSIVE
========================= */

@media(max-width:991px){

    .hero{
        height:70vh;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:17px;
        max-width:90%;
    }

    .prev,
    .next{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .prev{
        left:15px;
    }

    .next{
        right:15px;
    }

}

@media(max-width:480px){

    .hero{
        height:60vh;
    }

    .hero-content{
        padding:15px;
		    top: 85%;
    }

    .hero-content h1{
        font-size:26px;
        margin-bottom:12px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.6;
    }

    .hero-btns{
        gap:12px;
        margin-top:10px;
    }

    .btn{
        padding:10px 24px;
        font-size:14px;
		        display: none;
    }

    .prev,
    .next{
        width:38px;
        height:38px;
        font-size:15px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

}


/* =========================
SLIDER BUTTONS
========================= */

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:0.4s;
    backdrop-filter:blur(5px);
}

.prev:hover,
.next:hover{
    background:#d4af37;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* =========================
WELCOME SECTION
========================= */

.welcome-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.welcome-image{
    overflow:hidden;
    border-radius:20px;
}

.welcome-image img{
    transition:0.5s;
}

.welcome-image:hover img{
    transform:scale(1.08);
}

.welcome-content h2{
    font-size:48px;
    margin-bottom:25px;
	   /* color: #01d0da;*/
	       /*color: rgb(1, 88, 91);*/
		   color:#001F3F;
}

.welcome-content p{
    color:#555;
    line-height:2;
    margin-bottom:20px;
	font-size: 17px;
}

/* =========================
AMENITIES
========================= */

.amenities{
    background:#f8f8f8;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.amenity-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.amenity-box:hover{
    transform:translateY(-10px);
}

.amenity-box i{
    font-size:45px;
    color:#d34f48;
    margin-bottom:20px;
}

.amenity-box h3{
    margin-bottom:15px;
}

.amenity-box p{
    color:#666;
    line-height:1.8;
}

/* =========================
ROOMS
========================= */

#rooms
{
	
	position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: url(../images/room-bg.jpg) center center / cover no-repeat fixed;
	    padding-bottom: 20px;
	
	
	
}

.rooms-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.room-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
	    background: #544a7d;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    height:280px;
    object-fit:cover;
}

.room-content{
    padding:30px;
}

.room-content h3{
    margin-bottom:15px;
}

.room-content p{
    color:#fff;
    line-height:1.8;
}

/* =========================
CONTACT
========================= */

.contact-section{
    background:#111;
    color:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-box{
    text-align:center;
    padding:30px;
}

.contact-box i{
    font-size:42px;
    color:#01d0da;
    margin-bottom:20px;
}

.contact-box h3{
    margin-bottom:15px;
}

.contact-box p{
    color:#ddd;
    line-height:1.8;
}

.Phone
{
    color: #fdfefe;
    text-decoration: none;

}

/* =========================
FOOTER
========================= */

.text-center
{
color:#fff;
}

footer{
    background:#544a7d;
    color:#fff;
    padding:40px 0 30px;
}

.footer-grid{
    display:grid;
   /* grid-template-columns:2fr 1fr 1fr;*/
    gap:50px;
}

.footer-logo{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-about p{
    color:#ccc;
    line-height:2;
}

.footer-links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px 0;
}

.footer-links a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding-right: 18px;
}

/* Vertical Separator */

.footer-links a::after{
    content: "|";
    position: absolute;
    right: 0;
    color: #fff;
	
	    padding-left: 5px;
    padding-right: 5px;

}

/* Remove separator from last link */

.footer-links a:last-child::after{
    display: none;
}

.footer-links a:hover{
    color: #d4af37;
}

.footer-links h3,
.footer-contact h3{
    margin-bottom:20px;
}




.footer-links a:hover{
    color:#d34f48;
  	  padding-left: 5px;
   /* padding-right: 5px;*/
       font-weight: 600;
}

.footer-contact p{
    color:#fff;
    line-height:2;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    /*margin-top:25px;*/
    padding-top:25px;
    text-align:center;
    color:#999;
	padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text
{
display: -webkit-inline-box;
}


.quick-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    line-height:2;
}

.quick-links a{
    text-decoration:none;
    color:#fff;
}



.cookie-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#1111119c;
    color:#fff;
    padding:15px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    z-index:9999;
    font-size:14px;
    flex-wrap:wrap;
}

.cookie-bar button{
    background:#01d0da;
    color:#000;
    border:none;
    padding:10px 22px;
    cursor:pointer;
    border-radius:5px;
    font-weight:600;
}


/* =========================
ANIMATION
========================= */

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:1s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .rooms-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .welcome-wrapper{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:55px;
    }

}

@media(max-width:768px){

    .top-container{
        justify-content:center;
        text-align:center;
    }

    header{
       /* top:95px;*/
	    position:relative!important;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:-100%;
        width:100%;
        background:#111;
        flex-direction:column;
        text-align:center;
        padding:30px 0;
        transition:0.4s;
    }

    .nav-links.active{
        left:0;
    }

    .hero-content h1{
        font-size:18px;
    }

    .hero-content p{
        font-size:16px;
		        display: none;
    }

    .section-title h2,
    .welcome-content h2{
        font-size:34px;
    }

    .amenities-grid,
    .rooms-grid{
        grid-template-columns:1fr;
    }

    .prev,
    .next{
        width:45px;
        height:45px;
        font-size:18px;
    }

}


/* =========================
ATTRACTIONS SECTION
========================= */

#attractions{
    padding: 60px 0;
    background: #f8f8f8;
}

/* SECTION TITLE */

.section-title{
    text-align: center;
    margin-bottom: 55px;
}

.sub-title{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #521714;
    margin-bottom: 15px;
}

.section-title h2{
    font-size: 56px;
    font-weight: 700;
    color: #544a7d;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-title p{
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

/* GRID */

.attractions-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARD */

.attraction-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.attraction-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */

.attraction-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* CONTENT */

.attraction-content{
    padding: 28px;
}

.attraction-content h3{
    font-size: 26px;
    margin-bottom: 14px;
    color: #111;
}

.attraction-content p{
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* BUTTON */

.explore-btn{
    text-align: center;
    margin-top: 50px;
}

.explore-btn .btn{
    display: inline-block;
    background: #544a7d;
    color: #fff;
    padding: 16px 38px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.4s ease;
}

.explore-btn .btn:hover{
    background: #000;
    transform: translateY(-5px);
}

/* MOBILE */

@media(max-width:768px){

    #attractions{
        padding: 70px 0;
    }

    .section-title h2{
        font-size: 38px;
    }

    .section-title p{
        font-size: 16px;
    }

    .attraction-card img{
        height: 220px;
    }

    .attraction-content h3{
        font-size: 22px;
    }

}



#readBtn{
    margin-top:15px;
    padding:10px 24px;
    border:none;
    background:#01d0da;
    color:#001F3F;
    cursor:pointer;
    border-radius:5px;
    font-weight:600;
    transition:0.3s;
}

#readBtn:hover{
    background:#01d0da;
}



.modern-amenities{
    padding:80px 0;
    background:linear-gradient(to right,#111,#1d1d1d);
    position:relative;
	background-color: #D34F48;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(175,768,347)'%3E%3Cstop offset='0' stop-color='%23D34F48'/%3E%3Cstop offset='1' stop-color='%23544A7D'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='988' height='823.3' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.2'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

.modern-amenities .section-title{
    text-align:center;
    margin-bottom:60px;
}

.modern-amenities .sub-title{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.modern-amenities .section-title h2{
    font-size:42px;
    color:#fff;
    margin:15px 0;
}

.modern-amenities .section-title p{
    color:#d1d1d1;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.modern-amenities .amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.modern-amenities .amenity-box{
    background: rgb(30 28 28 / 44%);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    transition:all 0.4s ease;
    overflow:hidden;
    position:relative;
}

.modern-amenities .amenity-box:hover{
    transform:translateY(-10px);
    background:#01d0da;
}

.modern-amenities .amenity-icon{
    width:85px;
    height:85px;
    line-height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
}

.modern-amenities .amenity-icon i{
    font-size:36px;
    color:#fff;
}

.modern-amenities .amenity-box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.modern-amenities .amenity-box p{
    color:#ddd;
    line-height:1.8;
    margin:0;
}

.modern-amenities .amenity-box:hover p,
.modern-amenities .amenity-box:hover h3{
    color:#fff;
}

@media(max-width:991px){

    .modern-amenities .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .modern-amenities{
        padding:60px 0;
    }

    .modern-amenities .section-title h2{
        font-size:32px;
    }

    .modern-amenities .amenities-grid{
        grid-template-columns:1fr;
    }

}

/* =========================
INNER AMENITIES PAGE
========================= */

.inner-hero{
    height:65vh;
    min-height:420px;
}

.inner-static-slide{
    position:relative;
    opacity:1;
    visibility:visible;
    z-index:2;
}

.inner-hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.inner-hero .slide img{
    animation:none;
}

.inner-hero-content h1{
    font-size:56px;
}

.inner-page-section{
    padding:80px 0;
    background:#fff;
}

.inner-amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.inner-amenity-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    border:1px solid #efefef;
    transition:0.4s ease;
}

.inner-amenity-card:hover{
    transform:translateY(-8px);
    background:#544a7d;
}

.inner-amenity-card i{
    width:76px;
    height:76px;
    line-height:76px;
    border-radius:50%;
    background:#01d0da;
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.inner-amenity-card h3{
    font-size:23px;
    color:#111;
    margin-bottom:12px;
}

.inner-amenity-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.inner-amenity-card:hover h3,
.inner-amenity-card:hover p{
    color:#fff;
}

.room-amenities-section{
    padding:80px 0;
    background:#f8f8f8;
}

.room-amenities-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:center;
}

.room-amenities-image{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.room-amenities-image img{
    height:520px;
    object-fit:cover;
}

.room-amenities-content h2{
    font-size:44px;
    color:#544a7d;
    margin:12px 0 18px;
}

.room-amenities-content p{
    color:#555;
    line-height:1.8;
    font-size:17px;
    margin-bottom:24px;
}

.amenities-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 18px;
    list-style:none;
}

.amenities-list li{
    background:#fff;
    padding:14px 16px;
    border-radius:10px;
    color:#333;
    font-weight:500;
    box-shadow:0 3px 12px rgba(0,0,0,0.05);
}

.amenities-list i{
    color:#01d0da;
    margin-right:9px;
}

.amenities-note-section{
    padding:80px 0;
    background:#544a7d;
    color:#fff;
    text-align:center;
}

.amenities-note{
    max-width:900px;
    margin:auto;
}

.amenities-note h2{
    font-size:42px;
    margin-bottom:18px;
}

.amenities-note p{
    color:#000;
    line-height:1.9;
    font-size:18px;
}

.amenities-call-btn{
    border-color:#fff;
    color:#fff;
}

@media(max-width:991px){
    .inner-amenities-grid,
    .room-amenities-wrapper{
        grid-template-columns:1fr 1fr;
    }

    .amenities-list{
        grid-template-columns:1fr;
    }

    .room-amenities-image img{
        height:420px;
    }
}

@media(max-width:768px){
    .inner-hero{
        height:55vh;
        min-height:340px;
    }

    .inner-hero-content{
        top:50%;
    }

    .inner-hero-content h1{
        font-size:34px;
    }

    .inner-hero-content p{
        display:block;
        font-size:15px;
    }

    .inner-amenities-grid,
    .room-amenities-wrapper{
        grid-template-columns:1fr;
    }

    .inner-page-section,
    .room-amenities-section,
    .amenities-note-section{
        padding:60px 0;
    }

    .room-amenities-content h2,
    .amenities-note h2{
        font-size:32px;
    }

    .room-amenities-image img{
        height:auto;
    }
}


.location-map-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
	margin-top: 80px;
}

.location-map-hero iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .location-map-hero {
        height: 55vh;
        min-height: 380px;
    }
}


.inner-page-section {
    padding: 20px 0 !important;
    background: #fff;
}

.inner-hero-content h1 {
    font-size: 54px;
    text-transform: capitalize;
    display: none!important;
}

.hero-content p {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    animation: fadeUp 1.5s ease;
    display: none!important;
}




.nav-links a.active{
    color:#FFFFFF;
    font-weight:600;
}

.nav-links a.active::after{
    width:100%;
}

.sitemap-link

{
	
	    text-decoration: none;
    color: #544a7d;
    font-weight: 600;
    font-size: 18px;
}
	


.faq-link {
    text-decoration: none;
    color: #544A7D;
    font-weight: 600;
    font-size: 16px;
}

.cgs2

{
 text-decoration: none;
    color: #fff;	
}

.Phone-sitemap-link
{
	color: #fff;	
	    text-decoration: none;

}


p a {
    color: #544a7d;
    text-decoration: underline;
}

p a:hover {
    color: #544a7d;
    text-decoration: underline;
}