* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    font-family: "Cormorant", serif;
}
html {
    overflow-x: hidden;
}
header {
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    right: 0px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif !important;
}
.social-icons a {
    color: #fff;
    font-size: 20px;
    margin-left: 12px;

}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-container video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
}
/* header-slider-css */
.hero-slider {
    margin-top: -100px;
    padding: 0;
    position: relative;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slick-hero .slide-item {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slick-hero .slide-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
}

.slick-prev,
.slick-next {
    width: 55px;
    height: 55px;
    z-index: 20;
}

.slick-prev:before,
.slick-next:before {
    font-size: 55px;
    color: #ffffff !important;
    opacity: 1;
}

.slick-prev {
    left: 25px !important;
}

.slick-next {
    right: 25px !important;
}

/* MOBILE RIGHT SIDEBAR MENU */
.menu_box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    padding-top: 80px;
    transition: 0.4s ease;
    z-index: 9999;
}

.menu_box .nav-link {
    color: #ffffff;
    font-size: 14px;
    padding: 12px 25px;
}

.menu_box.show-menu {
    right: 0 !important;
}

.mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #000;
}

/* 
///////COUNTER CSS////////// */
.counter_section_inner {
    display: flex;
    justify-content: space-around;
    padding: 0px 20px;
    background: #ffffff;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.counter_box {
    background: white;
    padding: 30px;
    width: 200px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: .3s ease;
}
.counter_box:hover {
    transform: translateY(-6px);
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: #5C5C5C;
    margin-bottom: 10px;
}

.counter_box p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.section-title {
    font-size: 40px;
    color: #5C5C5C;
    text-transform: capitalize;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.amenity-box {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amenity-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}
.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.amenity-overlay h3 {
    color: #fff;
    font-size: 26px;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.amenity-box:hover .amenity-img img {
    transform: scale(1.12);
}

.amenity-box:hover .amenity-overlay {
    opacity: 1;
}

.amenity-box:hover .amenity-overlay h3 {
    transform: translateY(0);
}

.enquiry-form {
    background: #fff;
    padding: 44px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-title {
    font-family: 'CormorantBold';
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-about p {
    font-size: 16px;
    line-height: 24px;
    color: #d1d1d1;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dcdcdc;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.iconCls {
    margin-right: 8px;
    font-size: 17px;
}

.footer-address {
    color: #d1d1d1;
    line-height: 22px;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    color: #bfbfbf;
}

.gallery_heading {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.google-review-section {
    width: 100%;
    padding: 50px 20px;
    background: #f8f8f8;
}

.review-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #5C5C5C;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    height: 100%;
}

.review-box:hover {
    transform: translateY(-5px);
}

.reviewer-name {
    font-weight: 700;
    font-size: 18px;
}

.review-rating {
    margin: 8px 0;
    font-size: 18px;
    color: gold;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

.hotel-enquiry-section {
    background: #fafafa;
}

.form-input,
.form-textarea {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

.btn-primary {
    background: #0d6efd;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
}

.enquiry-image img {
    width: 100%;
    height: 510px;
    border-radius: 15px;
}

.btn-primary {
    background: #0d6efd;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
}

.form-input,
.form-textarea {
    border-radius: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid #cfcfcf !important;
    transition: 0.3s;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.btn_style {
    background: #ffcc0000;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 6px;
    background-image: linear-gradient(45deg, #000000 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 400ms ease-in-out;

    &:hover {
        background-position: 0;
        color: #ffffff;
        border: 2px solid #000000;
    }
}


.btn_style_black {
    background: #ffcc0000;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 6px;
    background-image: linear-gradient(45deg, #000000 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 400ms ease-in-out;

    &:hover {
        background-position: 0;
        color: #ffffff;
        border: 1px solid #000000;
    }
}

.btn_style_white {
    background: #ffcc0000;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    background-image: linear-gradient(45deg, #ffffff 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 400ms ease-in-out;
    width: 170px;

    &:hover {
        background-position: 0;
        color: #000000;
        border: 1px solid #ffffff;
    }
}

.slide_bottom-box {
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    background-size: cover;
    background-position: center;
    height: 350px;
    padding: 20px;
    position: relative;
    margin: 10px;
    border-radius: 0;
}

.slide-content_box {
    position: absolute;
    bottom: 0px;
    background: #00000094;
    margin: 0px;
    padding: 5px 20px;
    text-align: start;
    width: 100%;
    left: 0px;
}

.slide-text {
    margin: 0px;
}

.slide-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.discover-section {
    padding: 0px 0px 70px 0px;
    text-align: center;
}

.slide-text {
    font-size: 15px;
    opacity: 0.9;
}

.slide-pool {
    background-image: url('./assets/images/Infinity-Pool.png');
}

.slide-wedding {
    background-image: url('./assets/images/Destination-Wedding.png');
}

.slide-conference {
    background-image: url('./assets/images/Conference-Hall.png');
}

.slide-villa {
    background-image: url('./assets/images/Luxurious-Villa.png');
}
.slide-restaurant_new {
    background-image: url('./assets/images/new-resturent.png');
}



.call-back-1 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: mover1 1s infinite alternate;
}

.call-back-1 img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

/* Floating animation */
@keyframes mover1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}


/* 
<-------Gallery CSS -----> */
.gallery_card {
    position: relative;
    background-image: url('./assets/images/gallery_hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    margin-top: -100px;
    padding-top: 200px;
    padding-bottom: 200px;
}
.gallery_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
}

.gallery_card h2 {
    font-size: 60px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
}

.gallery-section {
    width: 100%;
    padding: 20px 0;
}

.gallery-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.gallery-tabs .tab {
    padding: 8px 18px;
    background: #eee;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.gallery-tabs .tab.active {
    background: #222;
    color: #fff;
}

.gallery-wrapper {
    display: flex;
    gap: 15px;
    justify-content: space-between !important;
    flex-wrap: wrap;
}

.gallery-card {
    width: calc(25% - 15px);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    height: 270px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-feature {
    padding-bottom: 50px;
}

.welcome_section {
    position: relative;
    background-image: url('./assets/images/clay-banks.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;

}

.welcome_section {
    position: relative;
    display: flex;
    background-image: url('./assets/images/clay-banks.jpg');
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
}

.welcome_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
}

.welcome_heading h5 {
    color: #fff;
    font-size: 26px;
}

.welcome_section * {
    position: relative;
    z-index: 2;
}

.welcome_section {
    text-align: center;
}

.welcome_heading h2 {
    color: #fff;
    font-size: 60px;
}

.welcome_heading p {
    color: #fff;
    font-size: 18px;
}

.welcome_heading {
    text-align: center;
}

.feature-box {
    padding: 25px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.feature-box img {
    transition: transform 0.3s ease;
}

.feature-box:hover {
    background: #f8f8f8;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-box:hover img {
    transform: scale(1.1);
}

.feature-box h5 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.services_section p {
    font-size: 20px;
    color: #5C5C5C;
}

.services_section h2 {
    font-size: 40px;
    color: #5C5C5C;
}

.services_section {
    text-align: center;
}


/* <//////////confrence css///////// */

.amenities-section h2 {
    font-size: 40px;
    letter-spacing: 1px;
    color: #5C5C5C
}

.facility-image {
    background: url('./assets/images/Conference.jpg') center/cover no-repeat;
    width: 100%;
    height: 330px;
    border-radius: 15px;
}

.facility-box {
    background: #fff;
    transition: 0.3s ease;
}

.seating-section {
    background: #fafafa;
}

.facility-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: contrast(0.5);
}

.seating-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.seating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.seating-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.seating-content {
    padding: 20px;
}

.seating-content ul {
    margin: 0;
    padding-left: 22px;
}

.seating-content ul li {
    margin-bottom: 6px;
}

.ideal {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #444;
}

.hero_confrence {
    position: relative;
    background-image: url('./assets/images/empty-conference.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    margin-top: -100px;
    padding-top: 200px;
    padding-bottom: 200px;
}

.hero_confrence::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
}

.hero_confrence * {
    position: relative;
    z-index: 2;
}

.confrence_heading {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.confrence_heading h2 {
    color: #fff;
    font-size: 60px;
}

.why-section {
    background: #fafafa;
}

.why-section h2 {
    font-size: 40px;
    color: #5C5C5C;
    letter-spacing: 0.5px;
}

.blog-main-title {
    font-size: 40px;
    color: #5C5C5C;
}

.tick-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: contrast(0.5);
}

.why-image {
    background: url('./assets/images/Luxurious-Villa_MyPHOTO_21_MyPHOTO_58.png') center/cover no-repeat;
    width: 100%;
    height: 330px;
    border-radius: 15px;
}

.table-responsive {
    overflow-x: auto;
}

.table-title {
    caption-side: top;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.styled-table {
    width: 80%;
    border-collapse: collapse;
    font-size: 17px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 0 auto;
}

.styled-table thead tr {
    background-color: #000000;
    color: #fff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 14px 18px;
}

.styled-table tbody tr {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    transition: 0.3s ease;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.styled-table tbody tr:hover {
    background-color: #efefef;
    transform: translateX(3px);
}

.styled-table th {
    font-weight: 600;
}



/* 
///////////////////Blog css /////////////*/

.hero-blog {
    position: relative;
    background-image: url('./assets/images/natalie-sum.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    margin-top: -100px;
    padding-top: 200px;
    padding-bottom: 200px;
}

.hero-blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
}

.hero-blog * {
    position: relative;
    z-index: 2;
}

.blog-heading {
    text-align: center;
}

.blog-heading h2 {
    color: #fff;
    font-size: 60px;
}

.wedding-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin: auto;
}

.wedding-box {
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #f1e8d9;
}

.wedding-box:hover {
    transform: translateY(-8px);
    background: #fff7ea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wedding-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.1));
}

.catering-section {
    background: #fafafa;
}

.catering-img {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.catering-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3e7d5;
}

.catering-table td {
    padding: 16px 22px;
    font-size: 17px;
    color: #444;
    border-bottom: 1px solid #f1e7d9;
    font-weight: 500;
}

.catering-table tr:last-child td {
    border-bottom: none;
}

.catering-table tr:hover td {
    background: #f3f3f3;
}

.globalColor {
    color: #000000;
}

.discover-title h2 {
    font-size: 40px;
    color: #5C5C5C;
}

.amenities-table td {
    padding: 14px 18px;
    font-size: 16px;
}

.amenity-img {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.lodge_section {
    text-align: center;
    background: #fafafa;
    padding-top: 70px;
    padding-bottom: 70px;
}

.lodge_image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(255, 0, 100, 0.5);
    transition: 0.3s ease;
    animation: floatBtn 3s infinite ease-in-out;
}

.back-to-top:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 0, 100, 0.8);
}

@keyframes floatBtn {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}



@media (max-width: 991px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .menu_box {
        position: static;
        height: auto;
        width: auto;
        background: none;
        right: 0;
        padding-top: 0;
        transition: none;
    }

    .mobile-close-btn {
        display: none;
    }

}

/* DESKTOP & TABLET (menu normal inline) */
@media (min-width: 769px) {
    .menu_box {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        right: 0 !important;
        padding-top: 0;
        transition: none;
        display: flex !important;
    }
}

@media(max-width: 768px) {
    .gallery-card {
        width: calc(50% - 15px);
    }

    .welcome_heading h2 {
        font-size: 40px !important;
    }

    .welcome_section {
        height: 330px !important;
    }

    .slide-content {
        width: 90% !important;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 25px !important;
    }

    .navbar-toggler-icon {
        width: 13px !important;
        height: 11px !important;
    }

    .services_section h2 {
        font-size: 30px !important;
    }

    .blog-box {
        margin: 30px 0px !important;
        padding: 20px 4px !important;
    }

    .blog-feature {
        padding-bottom: 0px;
    }

    .confrence_heading h2 {
        font-size: 40px !important;
    }

    .gallery_card h2 {
        font-size: 40px !important;
    }

    .blog-heading h2 {
        font-size: 40px !important;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 40px;
    }

    .slick-prev {
        left: 10px !important;
    }

    .slick-next {
        right: 10px !important;
    }

    .menu_box {
        position: absolute;
        top: 0px;
        right: 0px;
        background: #fff;
        width: 60%;
        color: #000000;
    }

    .menu_box .nav-link {
        color: #ffffff !important;
    }

    .section-title {
        text-align: center;
        margin-top: 20px;
        font-size: 30px;
    }

    .review-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .btn-primary {
        font-size: 16px;
    }

    .hotel-enquiry-section {
        padding: 20px 10px;
    }

    .enquiry-image img {
        height: auto;
    }

    .slide_bottom-box {
        height: auto;
    }

    .review-title {
        font-size: 30px;
    }

    .footer {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .menu_box {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #111;
        transition: right 0.3s ease-in-out;
        padding-top: 60px;
        z-index: 9999;
        display: block;
    }

    .menu_box.show-menu {
        right: 0;
    }

    .mobile-close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        display: block;
    }

    .nav-link {
        color: #fff !important;
        padding: 15px;
        font-size: 18px;
    }

    .why-section h2 {
        font-size: 30px;
    }

    .blog-main-title {
        font-size: 30px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slick-dots {
        bottom: 10px !important;
    }
    .counter_section_inner {
    display: grid !important;
}
}

@media (max-width: 576px) {
    .amenity-img img {
        height: 220px;
    }

    .facility-image {
        height: 220px;
    }

    .amenities-section h2 {
        font-size: 30px;
    }

    .why-image {
        height: 240px;
    }

    .why-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        width: 100%;
    }
}