*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    color: white;
    background:radial-gradient(circle,
    rgb(68, 62, 62) 10px,
    rgb(46, 46, 46),
    rgb(16, 16, 16) );
    overflow-x: hidden;
}
nav{
    position: sticky;
    top: 2px;
    z-index: 100;
}
.navbar{
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
    margin: 0 0.5rem;
    box-shadow: 0 2px 5px rgba(47, 46, 46, 0.9);
    background-color: transparent;
    backdrop-filter: blur(10px);
    margin-bottom: 2.5rem;
}
@property --deg {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
.name{
    position: relative;
    background-color: #142d4a;
    border-radius: 10px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: head-show 1s linear;
}
.name a{
    text-decoration: none;
    color: white;
}
.name::after{
    content: "";
    position: absolute;
    background: conic-gradient(
        from var(--deg) at center,
        #ff6200,
        black,
        blue,
        #ff6200
    );
    width: 100%;
    height: 100%;
    border-radius: inherit;
    padding: 2px;
    z-index: -1;
    opacity: 0;
    animation: rotate-border 2s linear 1s infinite forwards;
}
@keyframes head-show {
    from{
        scale: 0.5;
        filter:blur(10px);
        transform: translateY(20px);
    }
    to{
        scale: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}
@keyframes rotate-border {
    from{
        --deg: 0deg;
        opacity: 1;
    }
    to{
        opacity: 1;
        --deg: 360deg;
    }
}
.menu{
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: white;
    border-radius: 5px;
    animation: slide 1s both;
}
@keyframes slide {
    from{
        transform: translateX(-100px);
    }
    to{
        transform: translateX(0);
    }
}
.menu:hover{
    background: linear-gradient(125deg,
    blue,   
    #ff6200);
    box-shadow: 0 0 8px white;
}
.nav-links{
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right:0.5rem;
}
.nav-links li{
    animation: dropit 1s;
}
.nav-links li a{
    text-decoration: none;
    color: white;
    font-size: 22px;
    border: 2px solid #ff6200;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ff6200;
    transition: 0.5s;
    font-weight: bold;
}
@keyframes dropit {
    0%{
        scale: 0.5;
        transform: translateY(-100px);
    }
    100%{
        scale: 1;
        transform: translate(0);
    }
}
.nav-links li a:hover,#contact-page .current-page{
    color: rgb(255, 255, 255);
    background: linear-gradient(125deg,
    blue,   
    #ff6200);
    font-weight: bold;
    border-color: rgba(255, 0, 0, 0.825);
    box-shadow: 0 0 10px 5px rgba(255, 34, 0, 0.9);
}
#contact-page .current-page:hover{
    box-shadow: 0 0 5px 2px rgba(255, 34, 0, 0.9);
}
.sidenav{
    position: absolute;
    z-index: -1;
    margin: 10px;
    padding: 20px;
    border: 2px solid #142d4a;
    border-radius: 10px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    width: 140px;
    transform: translateY(-500px);
    transition:0.5s;
}
.sidenav.active-sidenav{
    transform: scale(1) translateY(0px);
}
.sidenav h3{
    color: white;
    border: 2px solid black;
    border-radius: 10px;
    background: linear-gradient(125deg,
    blue,   
    #ff6200);
    padding: 0 10px;
    margin-bottom: 5px;
}
.filter-btn {
  background-color: transparent;
  color: white;
  border: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2px 10px;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
}
.sidenav ul{
    list-style: none;
    padding: 2px;
}
.sidenav ul li{
    background: linear-gradient(125deg,
    rgb(150, 150, 150),   
    black);
    margin:5px 0;
    padding: 0 5px;
    border-radius: 10px;
}
.sidenav a{
    text-decoration: none;
    color: white;
    font-size: 19px;
}
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    padding: 25px;
}
.hero-details{
    width: clamp(403px,40%,440px);
    margin-left: 40px;
}
.hero-para{
    margin-bottom: 1.5rem;
}
.hero-para h4{
    font-size: 22px;
    color: #ffcc00;
    animation: popup 2s ease;
}
@keyframes popup {
    from{
        scale: 0.9;
        font-size: small;
        filter: blur(10px);
    
    }
    to{
        scale: 1;
        font-size: normal;
        filter: none;
    }
}
.hero-para h1{
    font-size:50px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px;
    transition: 0.5s ease;
    color: rgb(255, 115, 0);
    overflow: hidden;
    width: 0ch;
    white-space: nowrap;
    border-right:2px solid #ff6200;
    animation: typing 2s steps(17) forwards,blinking 0.4s step-end infinite;

}
@keyframes typing {
    from{
        width: 0ch;
    }
    to{
        width: 16.5ch;
    }
}
@keyframes blinking {
    0%,100%{
        border-color: transparent;
    }
    50%{
        border-color: #ff6200;
    }
}
.hero-para h1:hover{
    cursor: pointer;
    -webkit-text-stroke: 1px rgb(255, 98, 0);
    color: transparent;
    box-shadow: -5px 5px 5px -5px #ff6200;
}
.hero-para p{
    color: rgb(184, 184, 184);
    font-size: 20px;
    line-height: 1.1;
    white-space: nowrap;
}
.hero-btns{
    display: flex;
    justify-content: space-between;
}
.hero-btn button{
    position: relative;
    font-size: 22px;
    border: 2px solid #ff6200;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 0 5px 3px #ff6200;
    font-weight: bold;
    background-color: transparent;
    z-index: 1;
    overflow: hidden;
}
.hero-btn button a{
    text-decoration: none;
    color: white;
    width:100%;
}
.hero-btn button::before{
    content: " ";
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg,
    blue,   
    #ff6200);
    transform: translateX(-100%);
    transition: 0.5s ease;
    z-index: -1;
}
.hero-btn button:hover:before{
    transform: translateX(0);
}
.hero-image img{
    width:clamp(300px,70%,450px) ;
    height: auto;
    object-fit: cover;
    margin-left: 15%;
    border-radius: 10px;
    box-shadow: 0 0 15px 3px #ff6200;
    padding: 2px;
    animation: slide-img 1.5s ease ;
}

@keyframes slide-img {
    from{
        transform: translateX(50%);
    }
    to{
        transform: translate(0);
    }
}
.green-land{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    border: 2px solid black;
    border-radius: 10px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    padding: 25px;
}
.green-land-image img{
    width:clamp(300px,70%,450px) ;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 15px 3px #ff6200;
    padding: 2px;
    margin-left: 0;
    animation: slide-img-left 1.5s ease ;
}

@keyframes slide-img-left {
    from{
        transform: translateX(-50%);
    }
    to{
        transform: translate(0);
    }
}
.green-land-para h1{
    font-size:50px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px;
    transition: 0.5s ease;
    color: rgb(255, 115, 0);
    overflow: hidden;
    width: 0ch;
    white-space: nowrap;
    border-right:2px solid #ff6200;
    animation: typing-garden 2s steps(15) forwards,blinking-garden 0.4s step-end infinite;

}
@keyframes typing-garden {
    from{
        width: 0ch;
    }
    to{
        width: 14.5ch;
    }
}
@keyframes blinking-garden {
    0%,100%{
        border-color: transparent;
    }
    50%{
        border-color: #ff6200;
    }
}
.green-land-para h1:hover{
    cursor: pointer;
    -webkit-text-stroke: 1px rgb(255, 98, 0);
    color: transparent;
    box-shadow: -5px 5px 5px -5px #ff6200;
}
.green-land-para p{
    color: rgb(184, 184, 184);
    font-size: 20px;
    line-height: 1.1;
    white-space: nowrap;
}
.green-land-para h4{
    font-size: 22px;
    color: #ffcc00;
    animation: popup 2s ease;
}
.hotelstructure{
    margin: 0 10px 20px 10px;
}
.hotel-title{
    margin-bottom: 10px;
}
.hotel-cards{
    overflow-x: hidden;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 10px;
    border: 2px solid black;
    padding: 10px;
    box-shadow: 1px 1px 5px 2px white;
}

.card-holder{
    display: flex;
    align-items: center;
    justify-content: center ;
    gap: 10px;
    width: max-content;
    animation: spin 10s linear infinite;
}
.card-holder .cards{
    flex: 0 0 200px;
    width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    border: 2px solid black;
    border-radius: 10px;
    margin-left: 20px;
    
}
@keyframes spin {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}
.hotel-cards:hover .card-holder{
    animation-play-state: paused;
}
.hotel-cards .cards img{
    width: 100%;
    border-radius: inherit;
    aspect-ratio: 1/1;
    object-fit: cover;
}
@keyframes image-reveal {
    from{
        scale: 0;
        opacity: 0;
        filter: brightness(0) blur(100px);
        transform: translateY(200px);
    }
    to{
        scale: 1;
        opacity: 1;
        filter: brightness(1) blur(0);
        transform: translateY(0);
    }
}
.amenities{
    width: 95%;
    margin: 0 auto;
    border: 2px solid #376395;
    border-radius: 10px;
    margin-bottom: 20px;
    background: linear-gradient(125deg,
    blue,   
    #ff6200);
}
.amenity{
    margin: 10px auto;
    width: 100%;
    inset: 0 0 0 0;
    background: linear-gradient(125deg,
    blue,   
    #ff6200);
    height: fit-content;
}
.amenity-card{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    animation: image-reveal 4s both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
}
.amenity-card img{
    width: 200px;
    height: 250px;
    border: 2px solid white;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 0 5px 5px #142d4a;
    position: relative;
}
#backtotop{
    outline: none;
    border: none;
    color: #ff6200;
    font-weight: 600;
    background-color: blue;
    border: 1px solid #c74c00;
    position: fixed;
    right: 2%;
    bottom: 20%;
    cursor: pointer;
    font-size: 18px;
    padding: 12px 10px;
    border-radius: 50%;
    box-shadow: 0 0 5px 1px #ff6200;
    display: none;
    z-index:999;
}
#backtotop:hover{
    box-shadow: 0 1px 5px 3px #ff6200;
}
.cards-open-container{
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
    margin: 10px auto;
}
.cards-open1,.cards-open2,.cards-open3{
    width: 250px;
    height: 300px;
    transform: perspective(1000);
}
.cards-open-c2,.cards-open-c1,.cards-open-c3{
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1500ms;
    transform-style: preserve-3d;
}
.cards-open2:hover > .cards-open-c2{
    transform: rotateY(180deg);
}
.cards-open1:hover > .cards-open-c1{
    transform: rotateY(180deg);
}
.cards-open3:hover > .cards-open-c3{
    transform: rotateY(180deg);
}
.front,.back{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border: 2px solid black;
    backface-visibility: hidden;
}
.cards-open-c2 .front{
    background: url('assets/int2.jpg') no-repeat center center/cover;
}
.back{
    background-color: #2e2e2e;
    display: flex;
    flex-direction: column;
    gap: 20%;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
}
.cards-open-c1 .front{
    background: url('assets/hotel-contact.jpeg') center left/cover;
}
.cards-open-c3 .front{
    background: url('assets/int3.jpg') center left/cover;
}
.back p{
    font-size: 20px;
    width: 60%;
}
.back h2{
    font-size:30px ;
}
.visit{
    margin-bottom: 20px;
}
.falls center{
    width: 100%;
}
.falls h2{
    width: 100%;
}
.visit div{
    margin-bottom: 20px;
}
.visit figure{
    display: flex;
    justify-content: center;
}
.visit figure img{
    width: 20%;
    margin:2% 2% 0 2%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 15px black;
    border: 1px solid white;
}
.visit figure img:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 15px 2px black;
    transition: transform 0.3s ease;
}
footer{
    height: 40dvh;
    background-color: black;
    padding: 20px;
}
.footer{
    height: 80%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items:first baseline;
    margin-bottom: 20px;
}
.footer hr{
    display: none;
}
.footer section{
    width: 25%;
}
.footer h3,h1{
    font-weight: 900;
}
footer a{
    font-size: 22px;
    text-decoration: none;
    color: #0077ff;
    border-bottom: 1px dotted rgb(0, 136, 255);
}
footer a:hover{
    border-bottom: 2px solid white;
}

.customers div{
    margin-bottom: 10%;
}
.address h1,.socialmedia h1,.easy-links h1{
    margin-bottom: 3%;
}
.terms {
    display: flex;
    justify-content: center;
    
}
.terms a{
    color: white;
    
    font-size: 18px;
margin-right: 2%;
}
.contact-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family:sans-serif;
}
.contact-container h2,.contact-container p{
    color: rgb(26, 26, 26);
}   
.contact-container p{
    margin-bottom: 20px;
}
.input-group { margin-bottom: 20px; }

.contact-form label { display: block; margin-bottom: 8px; font-weight: bold; color: #333; }

.contact-form input,.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box; 
}


.submit-btn {
  width: fit-content;
  margin-left: 70%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.hidden { display: none; }

.contactmsg {
  text-align: center;
  color: #28a745;
  padding: 20px;
}
.contactmsg .loading,.contactmsg .success {
    width: 70%;
    font-size: 20px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.booking-title{
    background-color: transparent;
    backdrop-filter: blur(50px);
    padding: 10px;
    width: max(40%,200px);
    margin-top: 50px;
    margin-left:auto;
    margin-right: auto;
    margin-bottom: 20px;
    border: 3px solid green;
    border-radius: 10px;
}
.booking-title h1{
    text-align: center;
    color: #ff6200;
}
.booking-title p{
    text-align: center;
    max-lines:2;
}
.trusted-container{
    width: 100%;
    overflow: hidden;
}
.trusted-container h1{
    width: max-content;
    margin: 0 auto;
    color: #ff6200;
}
.trusted-card-holder{
    display: flex;
    overflow-x: auto;
    width: max-content;
    animation: spin 12s linear infinite;
}
.trusted-card-holder:hover{
    animation-play-state: paused;
}
.trusted-card-holder::-webkit-scrollbar{
    display: none;
}
.card-hold{
    margin:20px 0;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 50px;
    padding:0 50px;
}

.trusted-card{
    width: max-content;
    display: flex;
    align-items: center;
    gap: 50px;
}
.trusted-card img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}
.booking-site{
    position: relative;
    width: 95%;
    height: 300px;
    margin: 10px auto;
    border: 2px solid black;
    border-radius: 10px;
}
.booking-site .background{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.booking-site .booking-logo{
    position: absolute;
    top: 10%;
    margin: 20px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
.booking-site img:hover{
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 15px 5px #5b5b5b;
    transition: transform 0.3s ease;
}
.booking-site h2{
    position: absolute;
    top: 10%;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    text-shadow: 0 0 5px black;
}
.booking-site .click-here{
    width: 150px;
    aspect-ratio: 1/1;
    position: absolute;
    top: calc(50% - 60px);
    right: 10%;
    border-radius: 500px;
}
.blog-announcement{
    position: fixed;
    top: 1px;
    width:100dvw;
    background: green;
    padding: 5px 0;
    overflow-x: hidden;
    z-index: 100;
}
.blog-announcement-container{
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    gap: 20px;
    animation: spin 20s linear infinite;
}
.blog-announcement p{
    flex: 0 0 fit-content;
    font-size: 18px;
    font-family: monospace;
}
.blog-title{
    background-color: transparent;
    backdrop-filter: blur(50px);
    padding: 10px;
    width: max-content;
    margin-top: 50px;
    margin-left:auto;
    margin-right: auto;
    margin-bottom: 20px;
    border: 3px solid green;
    border-radius: 10px;
}
.blog-title h1{
    color: #ff6200;
}
.blog-title h3{
    text-align: center;
}
.blog-content-title{
    width: max-content;
    margin: 0 auto 10px auto;
}
.blog-card{
    row-gap: 0;
    position: relative;
    height: 70dvh;
    width: min(75%,500px);
    margin: 5px auto;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(37, 37, 37);
    background-color: white;
    border-radius: 10px;
}
.blog-card-title{
    height: 30px;
    white-space: nowrap;
    color: #ff6200;
    font-size: 25px;
    margin-left: 5%;
    margin-top: 2%;
}
.blog-card-img{
    position: relative;
    height: 60%;
    width: 90%;
    margin:0 auto 5px auto;
    border: 1px solid rgb(37, 37, 37);
    border-radius: 5px;
    
}
.blog-card-img img{

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.blog-card-description-container{
    background-color: #f3f3f3;
    height: 20%;
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-snap-type: smooth;
    overflow-y: mandatory;
    border-radius: 5px;
}
.blog-card-description{
    margin-left: 2%;
    color: rgb(43, 43, 43);
    font-size: 20px;
    line-height: 1.1;
    padding: 5px;
    padding-bottom: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.blog-card-posted-date{
    position: absolute;
    bottom: 2%;
    margin-left: 2%;
    color: #2e2e2e;
    padding-top: 0;
    padding: 5px;
}
.blog-card-share {
    position: absolute;
    right: 2%;
    bottom: 2%;
    z-index: 10;
}
.share-btn {
  background: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 4px;
}
.share-btn img {
  width: 30px;
  height: 30px;
}
.share-toast {
  position: fixed;
    bottom: 0.5%;
    width: 100%;
    text-align: center;
  background: #333;
  color: rgb(0, 255, 0);
  padding: 4px 8px;
  font-size: 24px;
  z-index: 10;
}
.recent-posts-section {
  margin: 20px auto;
}
.recent-posts-section h4 {
  margin-bottom: 12px;
  width: fit-content;
  margin: 0 auto 12px auto;
  color: #fff;
  font-size: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.recent-posts-row {
  display: flex;
  gap: 12px;
  overflow-x: auto; /* scroll sideways on mobile */
  padding-bottom: 10px;
  justify-content: center;
  scrollbar-width: thin;
  scroll-snap-type: smooth;
  scrollbar-color: #2e2e2e transparent;
}
.recent-card {
  min-width: 140px;
  background: #2a2a2a;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.recent-card img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.recent-card-title {
  font-size: 12px;
  color: white;
  padding: 8px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-card-date {
  font-size: 10px;
  color: #aaa;
  padding: 0 8px 8px;
  margin: 0;
}
.category-filter li{
    width: fit-content;
    list-style: none;
    margin: 0 auto;
}   
.show-all{
    background-color: transparent;
  color: white;
  border: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2px 10px;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
}













@media (max-width:1040px) {
    .hero{
        justify-content: space-evenly;
    }
    .hero-details{
        margin:0 0 0 2.5%;
    }
    .hero-para h4,.green-land-para h4{
        font-size: 20px;
    }
    .hero-para h1,.green-land-para h1{
        font-size: 30px;
    }
    .hero-para div p,.green-land-para div p{
        font-size: 18px;
    }
    .hero-image img{
        margin-left: 25%;
    }
    .green-land .tree{
        display: none;
    }
    .green-land{
        width: 90%;
    }
    footer{
        height: max-content;
        width: 96.2%;
    }
    .footer{
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer section{
        flex:0 1 calc(50% - 10px);
    }
    .amenity{
        padding: 0;
    }
}
@media (max-width:900px) {
    .hero{
        justify-content: space-between;
        padding:15px 15px;
    }
    .hero-details{
        margin: 0;
    }
    .hero-para,.green-land-para{
        width: 300px;
    }
    .hero-para div p,.green-land-para div p{
        font-size: 15px;
    }
    .hero-image{
        width:clamp(300px,60%,450px) ;
    }
    .hero-image img{
        width: 100%;
        margin: 0;
    }
    .green-land{
        padding: 15px;
    }
    .green-land-image {
        width:clamp(300px,60%,450px);
    }
    .green-land-image img{
        width: 100% ;
        position: relative;
        left: -20px;
    }
    .green-land-image{
        margin-left: 5%;
    }
}

@media (max-width:800px) {
    .recent-posts-row{
        justify-content: left;
    }
    .cards-open1,.cards-open2,.cards-open3{
        width: 200px;
        height: 250px;
    }
    .cards-open1,.cards-open2,.cards-open3{
        width: 200px;
        height: 250px;
    }
    footer{
        width: 93.5%;
    }
}
@media screen and (max-width:650px) {
    .nav-links{
        display: none;
    }
    .name{
        font-size: 25px;
    }
    .menu{
        width: 25px;
        height: auto;
    }
    .navbar{
        padding: 15px;
    }
    .hero{
        padding:15px 15px;
        margin-left: 15px;
        justify-content: space-around;
    }
    .hero-details{
        margin: 0;
        width: 275px;
    }
    .hero-para{
        width: 275px;
        margin-bottom: 10px;
    }
    .hero-para h4{
        font-size: 15px;
    }
    .hero-para h1{
        font-size: 30px;
        margin-bottom: 5px;
    }
    .hero-para div p{
        font-size: 13px;
    }
    .hero-btns a{
        font-size: 15px;
    }
    .hero-image{
        width: fit-content;
    }
    .hero-image img{
        margin-left: 3%;
        width: 220px;
    }
    .amenities{
        position: sticky;
        top: 80px;
    }
    .amenity{
        padding: 0;
    }
    .amenity h1{
        right: 0;
        position: absolute;
        top:0;
        z-index: 1;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-size: 20px;
        color: #ff6200;
        background-color: transparent;
        backdrop-filter: blur(10px);
        border-bottom-left-radius: 10px;
        border-bottom:2px solid black;
        border-left: 2px solid black;
        padding-left: 3px;
        padding-bottom: 3px;
    }
    .amenity-card img{
        width: 100%;
    }
    .amenity-section.gap{
        display: block;
    }
    .amenity-card{
        margin-bottom: 20px;
        position: sticky;
        top: calc(var(--i) * 80px);
        width: 70%;
        margin: 0 auto;
    } 
    footer{
        width: 93.55%;
    } 
    .cards-open1,.cards-open2,.cards-open3{
        width: 150px;
        height: 200px;
    }
    .back p{
        font-size: 18px;
    }
}
@media (max-width:560px) {

    .hero,.green-land{
        flex-direction:column-reverse;
        margin: 20px 4px 0 5px;
        row-gap: 20px;
    }
    .hero-details{
        position: relative;
        left:-15%;
    }
    .hero-para h4{
        font-size: 20px;
    }
    .hero-para h1{
        font-size: 30px;
    }
    .hero-para div p{
        font-size: 18px;
    }
    .hero-btns a{
        font-size: 18px;
    }
    .hero-image{
        margin: 0 auto;
        width: 80%;
    }
    .hero-image img{
        margin-left: 0;
        width: 100%;
    }
    .hero{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .green-land{
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    .green-land-image{
        margin: 0;
        width: 80%;
    }
    .green-land-image img{
        inset: 0 0 0 0;
        width: 100%;
    }
    .footer h3, h1{
    font-weight: 0;
    font-size: 20px;
    }
    footer a{
    font-size: 18px;
    }
    .book-input{
        height: max-content;
    }
    .check-btn,.book-btn{
        font-size: 15px;
    }
    .blog-card-share{
        width: 25px;
        height: 25px;
        right: 6.5%;
    }
    .trusted-card img{
        width: 60px;
        height: 60px;
    }
    .booking-title p{
        font-size: 14px;
    }
    .booking-site h2{
        font-size: 22px;
    }
    .click-here{
        width: 10px;
        height: 200px;
    }
    .booking-site{
        justify-content: center;
    }
    footer{
        width: 92%;
    }
}
@media (max-width:440px) {
    .hero{
        padding: 10px;
    }
    .hero-details{
        margin: 10px;
        position: relative;
        left:0;
    }
    .hero-para h4,.green-land-para h4{
        font-size: 15px;
    }
    .hero-para h1,.green-land-para h1{
        font-size: 20px;
    }
    .hero-para div p,.green-land div p{
        font-size: 14px;
    } 
    .hero-btn button{
        font-size: 17px;
        padding: 3px 7px;
    }
    .blog-card-share{
        width: 20px;
        height: 20px;
        right: 8.5%;
    }
    footer{
        width: 89%;
    }
    .click-here{
        display: none;
    }
    .cards-open1,.cards-open2,.cards-open3{
        width: 100px;
        height: 150px;
    }
    .back h2{
        font-size: 18px;
    }
    .back p{
        font-size: 14px;
    }
}
@media (max-width:370px) {
    .hero{
        margin: 0 auto;
    }
    .name{
        font-size: 20px;
    }
    .menu{
        width: 23px;
        height: auto;
    }
    nav{
        width: 100vw;
    }
    .navbar{
        padding: 10px;
    }
    .sidenav{
        padding: 5px;
    }
    .hero{
        width: 90%;
        padding: 5px;
        margin: inherit 5px;
    }
    .hero-details,.green-land-para{
        width: max-content;
    }
    .hero-details div p,.green-land-para div p{
        display: none;
    }
    .hero-para{
        width: max-content;
        margin-bottom: 0;
    }
    .hero-btns{
        gap: 20px;
    }
    .hero-btns a{
        font-size: 11px;
    }
    .green-land{
        width: 90%;
        padding: 5px;
        margin: inherit 5px;
    }
    .amenity{
        background: none;
    }
    .terms{
        flex-direction: column;
        width: 120px;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    footer{
        width: 82.55%;
    }
    .blog-card-title{
        font-size: 20px;
    }
    .blog-card-description{
        font-size: 15px;
    }
    .blog-card-posted-date{
        font-size: 12px;
    }
    .blog-card-share{
        width: 15px;
        height: 15px;
        right: 10%;
    }
    .blog-title p{
        font-size: 25px;
    }
    .booking-site h2{
        font-size: 17px;
    }
    .cards-open1,.cards-open2,.cards-open3{
        width: 500px;
        height: 100px;
    }
    .back h2{
        font-size: 14px;
    }
    .back p{
        font-size: 10px;
    }
}
