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

        :root {

            --primary: #d8c46b;
            --primary-light: #f3e29f;
            --primary-dark: #b99a3d;

            --dark: #06110c;
            --dark-light: #0d1c15;

            --gray: #c5cec8;

            --border: rgba(216, 196, 107, .12);

            --shadow:
                0 10px 40px rgba(0, 0, 0, .35);

            --gold-gradient:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #06110c;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        section {
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            position: relative;
            z-index: 5;
        }

        /* =====================================
               NAVBAR
            ===================================== */

        .navbar {

            background:
                rgba(6, 17, 12, .82);

            backdrop-filter: blur(14px);

            padding: 16px 0;

            border-bottom:
                1px solid rgba(255, 255, 255, .05);
        }

        .main-logo {
            width: 120px;
        }

        .nav-link {
            color: #fff !important;
            margin-left: 20px;
            font-weight: 500;
            position: relative;
        }

        .nav-link::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -5px;

            width: 0;
            height: 2px;

            background: var(--primary);

            transition: .4s;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .book-btn {

            background: var(--gold-gradient);

            color: #102118;

            padding: 12px 28px;

            border-radius: 50px;

            font-weight: 700;

            transition: .4s;
        }

        .book-btn:hover {

            transform:
                translateY(-5px);

            color: #000;
        }

        /* =====================================
               HERO
            ===================================== */

        .gallery-hero {

            min-height: 75vh;

            background:
                linear-gradient(rgba(0, 0, 0, .78),
                    rgba(0, 0, 0, .78)),
                url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;

            display: flex;
            align-items: center;

            text-align: center;

            position: relative;
        }

        .gallery-hero::before {

            content: '';

            position: absolute;

            width: 600px;
            height: 600px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .12),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(80px);
        }

        .hero-logo img {

            width: 280px;

            animation:
                floatLogo 4s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .gallery-hero h1 {

            font-size: 78px;

            font-weight: 800;

            margin-top: 30px;
        }

        .gallery-hero h1 span {
            color: var(--primary);
        }

        .gallery-hero p {

            max-width: 760px;

            margin: 20px auto 0;

            line-height: 1.9;

            color: #ddd;

            font-size: 18px;
        }

        /* =====================================
               SECTION TITLE
            ===================================== */

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title span {

            color: var(--primary);

            letter-spacing: 2px;

            font-weight: 600;

            text-transform: uppercase;
        }

        .section-title h2 {

            font-size: 48px;

            font-weight: 800;

            margin-top: 12px;
        }

        /* =====================================
               GALLERY
            ===================================== */

        .gallery-card {

            position: relative;

            border-radius: 28px;

            overflow: hidden;

            border:
                1px solid rgba(216, 196, 107, .12);

            box-shadow:
                0 10px 35px rgba(0, 0, 0, .35);

            transition: .5s;
        }

        .gallery-card:hover {

            transform:
                translateY(-10px);
        }

        .gallery-card img {

            width: 100%;
            height: 340px;

            object-fit: cover;

            transition: .6s;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {

            position: absolute;

            inset: 0;

            background:
                linear-gradient(to top,
                    rgba(0, 0, 0, .92),
                    transparent);

            display: flex;
            align-items: flex-end;

            padding: 30px;

            opacity: 0;

            transition: .5s;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {

            font-size: 28px;

            font-weight: 700;
        }

        .gallery-overlay p {

            color: #ddd;

            margin-top: 10px;
        }

        /* =====================================
               VIDEO SECTION
            ===================================== */

        .video-box {

            position: relative;

            border-radius: 35px;

            overflow: hidden;

            border:
                1px solid rgba(216, 196, 107, .12);

            box-shadow:
                0 15px 40px rgba(0, 0, 0, .35);
        }

        .video-box img {

            width: 100%;
            height: 550px;

            object-fit: cover;
        }

        .play-btn {

            position: absolute;

            top: 50%;
            left: 50%;

            transform: translate(-50%, -50%);

            width: 110px;
            height: 110px;

            border-radius: 50%;

            background: var(--gold-gradient);

            display: flex;
            align-items: center;
            justify-content: center;

            color: #102118;

            font-size: 40px;

            animation:
                pulse 2s infinite;
        }

        @keyframes pulse {

            0% {
                box-shadow:
                    0 0 0 0 rgba(216, 196, 107, .5);
            }

            70% {
                box-shadow:
                    0 0 0 30px rgba(216, 196, 107, 0);
            }

            100% {
                box-shadow:
                    0 0 0 0 rgba(216, 196, 107, 0);
            }
        }

        .royal-slider-section {

            padding: 120px 0;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #0b1d14);

            position: relative;

            overflow: hidden;
        }

        .royal-slider-section::before {

            content: '';

            position: absolute;

            width: 550px;
            height: 550px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .10),
                    transparent 70%);

            top: -180px;
            left: -120px;

            border-radius: 50%;

            filter: blur(80px);
        }

        .slider-heading {
            margin-bottom: 70px;
        }

        .slider-heading span {

            color: #d8c46b;

            letter-spacing: 3px;

            font-weight: 600;

            text-transform: uppercase;
        }

        .slider-heading h2 {

            color: #fff;

            font-size: 58px;

            font-weight: 800;

            margin-top: 15px;
        }

        .slider-heading p {

            color: #c7c7c7;

            max-width: 700px;

            margin: 18px auto 0;

            line-height: 1.9;
        }

        .room-card {

            position: relative;

            border-radius: 28px;

            overflow: hidden;

            border:
                1px solid rgba(216, 196, 107, .14);

            transition: .5s;

            background: #111;
        }

        .room-card:hover {

            transform:
                translateY(-10px);
        }

        .room-card img {

            width: 100%;
            height: 450px;

            object-fit: cover;

            transition: .7s;
        }

        .room-card:hover img {

            transform: scale(1.1);
        }

        .room-overlay {

            position: absolute;

            inset: 0;

            background:
                linear-gradient(to top,
                    rgba(0, 0, 0, .92),
                    rgba(0, 0, 0, .12));

            display: flex;

            flex-direction: column;

            justify-content: flex-end;

            padding: 30px;
        }

        .room-overlay h3 {

            color: #fff;

            font-size: 30px;

            font-weight: 700;
        }

        .room-overlay p {

            color: #ddd;

            margin-top: 8px;
        }

        /* SWIPER BUTTON */

        .swiper-button-next,
        .swiper-button-prev {

            width: 58px;
            height: 58px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, .08);

            backdrop-filter: blur(10px);

            border:
                1px solid rgba(216, 196, 107, .18);

            transition: .4s;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {

            font-size: 20px;

            color: #fff;

            font-weight: 700;
        }

        .swiper-button-next:hover::after,
        .swiper-button-prev:hover::after {

            color: #102118;
        }

        /* PAGINATION */

        .swiper-pagination {
            margin-top: 20px;
        }

        .swiper-pagination-bullet {

            width: 14px;
            height: 14px;

            background: #777;

            opacity: 1;
        }

        .swiper-pagination-bullet-active {

            width: 36px;

            border-radius: 30px;

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .slider-heading h2 {
                font-size: 42px;
            }

            .room-card img {
                height: 380px;
            }
        }

        @media(max-width:768px) {

            .royal-slider-section {
                padding: 90px 0;
            }

            .slider-heading h2 {
                font-size: 32px;
            }

            .room-card img {
                height: 320px;
            }

            .room-overlay h3 {
                font-size: 24px;
            }

            .swiper-button-next,
            .swiper-button-prev {

                width: 48px;
                height: 48px;
            }
        }

        /* =====================================
               FOOTER
            ===================================== */

        footer {

            position: relative;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #020504);

            padding: 110px 0 20px;

            overflow: hidden;
        }

        footer::before {

            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .08),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(60px);
        }

        .footer-logo {
            width: 120px;
            margin-bottom: 25px;
        }

        .footer-title {

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 30px;

            position: relative;

            display: inline-block;
        }

        .footer-title::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -10px;

            width: 60px;
            height: 3px;

            border-radius: 20px;

            background: var(--gold-gradient);
        }

        .footer-desc {

            color: #b9c2bc;

            line-height: 2;
        }

        .footer-links a {

            display: flex;
            align-items: center;

            gap: 12px;

            color: #c4cbc6;

            margin-bottom: 16px;

            transition: .4s;
        }

        .footer-links a i {

            width: 34px;
            height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(216, 196, 107, .08);

            color: var(--primary);
        }

        .footer-links a:hover {

            color: var(--primary);

            transform:
                translateX(8px);
        }

        .social-icons {

            display: flex;
            gap: 14px;

            margin-top: 30px;
        }

        .social-icons a {

            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 18px;

            background:
                rgba(255, 255, 255, .04);

            color: #fff;

            transition: .5s;
        }

        .social-icons a:hover {

            background: var(--gold-gradient);

            color: #102118;

            transform:
                translateY(-8px);
        }

        .newsletter-box {

            margin-top: 30px;

            position: relative;
        }

        .newsletter-box input {

            width: 100%;

            height: 60px;

            border: none;

            outline: none;

            border-radius: 50px;

            padding: 0 160px 0 25px;

            background:
                rgba(255, 255, 255, .05);

            color: #fff;
        }

        .newsletter-box button {

            position: absolute;

            right: 6px;
            top: 6px;

            height: 48px;

            padding: 0 28px;

            border: none;

            border-radius: 50px;

            background: var(--gold-gradient);

            color: #102118;

            font-weight: 700;
        }

        .copyright {

            margin-top: 70px;

            padding-top: 25px;

            border-top:
                1px solid rgba(255, 255, 255, .06);

            text-align: center;

            color: #8d9791;
        }

        /* =====================================
               RESPONSIVE
            ===================================== */

        @media(max-width:991px) {

            .gallery-hero h1 {
                font-size: 54px;
            }

            .section-title h2 {
                font-size: 36px;
            }
        }

        @media(max-width:768px) {

            section {
                padding: 80px 0;
            }

            .gallery-hero h1 {
                font-size: 38px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .hero-logo img {
                width: 220px;
            }

            .video-box img {
                height: 350px;
            }

            .newsletter-box input {
                padding-right: 25px;
            }

            .newsletter-box button {

                position: relative;

                width: 100%;

                margin-top: 15px;

                right: auto;
                top: auto;
            }
        }


        /* contact page css */

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

        :root {

            --primary: #d8c46b;
            --primary-light: #f5e6aa;
            --primary-dark: #b99940;

            --dark: #06110c;
            --dark-light: #0d1c15;
            --card: #102018;

            --white: #fff;
            --gray: #c7d0ca;

            --border: rgba(216, 196, 107, .12);

            --gold-gradient:
                linear-gradient(135deg,
                    #f5e6aa,
                    #d8c46b,
                    #b99940);

            --shadow:
                0 10px 40px rgba(0, 0, 0, .35);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        section {
            padding: 110px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            position: relative;
            z-index: 5;
        }

        /* =====================================
               NAVBAR
            ===================================== */

        .navbar {

            background:
                rgba(6, 17, 12, .82);

            backdrop-filter: blur(14px);

            padding: 16px 0;

            border-bottom:
                1px solid rgba(255, 255, 255, .05);
        }

        .main-logo {
            width: 120px;
        }

        .nav-link {
            color: #fff !important;
            margin-left: 20px;
            font-weight: 500;
            position: relative;
        }

        .nav-link::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -5px;

            width: 0;
            height: 2px;

            background: var(--primary);

            transition: .4s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .book-btn {

            background: var(--gold-gradient);

            color: #102118;

            padding: 12px 28px;

            border-radius: 50px;

            font-weight: 700;

            transition: .4s;
        }

        .book-btn:hover {

            transform:
                translateY(-5px);

            color: #000;
        }

        /* =====================================
               HERO
            ===================================== */

        .contact-hero {

            min-height: 80vh;

            background:
                linear-gradient(rgba(0, 0, 0, .78),
                    rgba(0, 0, 0, .78)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;

            display: flex;
            align-items: center;

            position: relative;

            text-align: center;
        }

        .contact-hero::before {

            content: '';

            position: absolute;

            width: 600px;
            height: 600px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .12),
                    transparent 70%);

            top: -250px;
            right: -120px;

            border-radius: 50%;

            filter: blur(80px);
        }

        .contact-hero::after {

            content: '';

            position: absolute;

            inset: 0;

            background:
                radial-gradient(circle at top right,
                    rgba(216, 196, 107, .12),
                    transparent 35%),

                radial-gradient(circle at bottom left,
                    rgba(31, 92, 64, .20),
                    transparent 35%);
        }

        .hero-logo img {

            width: 280px;

            animation:
                floatLogo 4s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .contact-hero h1 {

            font-size: 78px;

            font-weight: 800;

            margin-top: 30px;
        }

        .contact-hero p {

            max-width: 760px;

            margin: 20px auto 0;

            line-height: 1.9;

            color: #ddd;

            font-size: 18px;
        }

        /* =====================================
               SECTION TITLE
            ===================================== */

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title span {

            display: inline-block;

            padding: 8px 18px;

            border-radius: 50px;

            background:
                rgba(216, 196, 107, .08);

            border:
                1px solid rgba(216, 196, 107, .12);

            color: var(--primary);

            font-size: 13px;

            letter-spacing: 2px;

            text-transform: uppercase;
        }

        .section-title h2 {

            font-size: 52px;

            font-weight: 800;

            margin-top: 18px;

            background:
                linear-gradient(to right,
                    #fff,
                    #f5e6aa);

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* =====================================
               CONTACT BOX
            ===================================== */

        .contact-box {

            background:
                linear-gradient(145deg,
                    rgba(17, 36, 27, .95),
                    rgba(8, 16, 12, .96));

            border:
                1px solid rgba(216, 196, 107, .12);

            border-radius: 30px;

            overflow: hidden;

            box-shadow: var(--shadow);
        }

        .contact-left {

            padding: 60px 50px;

            position: relative;
        }

        .contact-left::before {

            content: '';

            position: absolute;

            width: 280px;
            height: 280px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .10),
                    transparent 70%);

            top: -80px;
            right: -80px;

            border-radius: 50%;
        }

        .contact-info {

            display: flex;
            gap: 20px;

            margin-bottom: 35px;
        }

        .contact-icon {

            min-width: 75px;
            height: 75px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 22px;

            background:
                rgba(216, 196, 107, .08);

            border:
                1px solid rgba(216, 196, 107, .12);

            transition: .5s;
        }

        .contact-info:hover .contact-icon {

            transform:
                rotateY(180deg);

            background: var(--gold-gradient);
        }

        .contact-info:hover .contact-icon i {
            color: #102118;
        }

        .contact-icon i {

            color: var(--primary);

            font-size: 28px;

            transition: .5s;
        }

        .contact-text h4 {

            font-size: 24px;

            margin-bottom: 10px;

            font-weight: 700;
        }

        .contact-text p {

            color: var(--gray);

            line-height: 1.8;

            margin-bottom: 5px;
        }

        /* =====================================
               FORM
            ===================================== */

        .contact-form {
            padding: 60px 50px;
            background: #0c1712;
            height: 100%;
        }

        .input-group-custom {
            position: relative;
            margin-bottom: 25px;
        }

        .input-group-custom i {

            position: absolute;

            left: 20px;
            top: 50%;

            transform: translateY(-50%);

            color: var(--primary);

            z-index: 2;
        }

        .input-group-custom textarea+i {
            top: 30px;
            transform: none;
        }

        .form-control {

            background:
                rgba(255, 255, 255, .04);

            border:
                1px solid rgba(255, 255, 255, .08);

            height: 60px;

            border-radius: 18px;

            padding-left: 55px;

            color: #fff;

            box-shadow: none;
        }

        textarea.form-control {
            height: 180px;
            resize: none;
            padding-top: 18px;
        }

        .form-control:focus {

            background:
                rgba(255, 255, 255, .06);

            border-color:
                rgba(216, 196, 107, .35);

            color: #fff;

            box-shadow: none;
        }

        .form-control::placeholder {
            color: #aaa;
        }

        .submit-btn {

            background: var(--gold-gradient);

            color: #102118;

            border: none;

            padding: 16px 38px;

            border-radius: 50px;

            font-weight: 700;

            transition: .4s;
        }

        .submit-btn:hover {

            transform:
                translateY(-5px);

            box-shadow:
                0 10px 30px rgba(216, 196, 107, .25);
        }

        /* =====================================
               MAP SECTION
            ===================================== */

        .map-section {
            padding-top: 0;
        }

        .map-box {

            overflow: hidden;

            border-radius: 35px;

            border:
                1px solid rgba(216, 196, 107, .12);

            box-shadow: var(--shadow);

            position: relative;
        }

        .map-box iframe {
            width: 100%;
            height: 550px;
            border: none;
            filter: grayscale(.2);
        }

        /* =====================================
               FOOTER
            ===================================== */

        footer {

            position: relative;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #020504);

            padding: 60px 0 20px;

            overflow: hidden;
        }

        footer::before {

            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .08),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(60px);
        }

        .footer-logo {

            width: 140px;

            margin-bottom: 25px;

            filter:
                drop-shadow(0 10px 25px rgba(0, 0, 0, .45));
        }

        .footer-title {

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 30px;

            position: relative;

            display: inline-block;
        }

        .footer-title::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -10px;

            width: 60px;
            height: 3px;

            border-radius: 20px;

            background: var(--gold-gradient);
        }

        .footer-desc {

            color: #b9c2bc;

            line-height: 2;

            font-size: 15px;
        }

        .footer-links a {

            display: flex;
            align-items: center;

            gap: 12px;

            color: #c4cbc6;

            margin-bottom: 16px;

            transition: .4s;

            font-size: 15px;
        }

        .footer-links a i {

            width: 34px;
            height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(216, 196, 107, .08);

            color: var(--primary);

            transition: .4s;
        }

        .footer-links a:hover {

            color: var(--primary);

            transform:
                translateX(8px);
        }

        .footer-links a:hover i {

            background: var(--gold-gradient);

            color: #102118;
        }

        .social-icons {

            display: flex;
            gap: 14px;

            margin-top: 30px;
        }

        .social-icons a {

            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 18px;

            background:
                rgba(255, 255, 255, .04);

            border:
                1px solid rgba(255, 255, 255, .05);

            color: #fff;

            transition: .5s;

            position: relative;

            overflow: hidden;
        }

        .social-icons a::before {

            content: '';

            position: absolute;

            inset: 0;

            background: var(--gold-gradient);

            opacity: 0;

            transition: .5s;
        }

        .social-icons a i {
            position: relative;
            z-index: 2;
        }

        .social-icons a:hover::before {
            opacity: 1;
        }

        .social-icons a:hover {

            transform:
                translateY(-8px) rotate(5deg);

            color: #102118;

            border-color:
                transparent;
        }

        .copyright {

            margin-top: 70px;

            padding-top: 25px;

            border-top:
                1px solid rgba(255, 255, 255, .06);

            text-align: center;

            color: #8d9791;

            font-size: 15px;

            letter-spacing: .5px;
        }

        .newsletter-box {

            margin-top: 30px;

            position: relative;
        }

        .newsletter-box input {

            width: 100%;

            height: 60px;

            border: none;

            outline: none;

            border-radius: 50px;

            padding: 0 160px 0 25px;

            background:
                rgba(255, 255, 255, .05);

            color: #fff;

            border:
                1px solid rgba(255, 255, 255, .06);
        }

        .newsletter-box button {

            position: absolute;

            right: 6px;
            top: 6px;

            height: 48px;

            padding: 0 28px;

            border: none;

            border-radius: 50px;

            background: var(--gold-gradient);

            color: #102118;

            font-weight: 700;

            transition: .4s;
        }

        .newsletter-box button:hover {

            transform: scale(.96);
        }

        /* =====================================
               RESPONSIVE
            ===================================== */

        @media(max-width:991px) {

            .contact-hero h1 {
                font-size: 52px;
            }

            .contact-form,
            .contact-left {
                padding: 40px 30px;
            }
        }

        @media(max-width:768px) {

            section {
                padding: 80px 0;
            }

            .contact-hero h1 {
                font-size: 38px;
            }

            .contact-hero p {
                font-size: 16px;
            }

            .section-title h2 {
                font-size: 34px;
            }

            .main-logo {
                width: 170px;
            }

            .hero-logo img {
                width: 220px;
            }

            .contact-info {
                flex-direction: column;
            }

            footer {
                padding: 80px 0 20px;
            }

            .footer-title {
                font-size: 24px;
            }

            .newsletter-box input {
                padding-right: 25px;
                height: 58px;
            }

            .newsletter-box button {

                position: relative;

                width: 100%;

                margin-top: 15px;

                right: auto;
                top: auto;
            }
        }

/* about page css */


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

        :root{

            --primary:#d8c46b;
            --primary-light:#f3e29f;
            --primary-dark:#b99a3d;

            --green:#0f3f2b;
            --green-light:#1f5c40;

            --dark:#06110c;
            --dark-light:#0d1c15;
            --dark-card:#102018;

            --light:#ffffff;
            --gray:#c7d0ca;

            --border:rgba(216,196,107,.12);

            --shadow:
            0 10px 40px rgba(0,0,0,.35);

            --gold-gradient:
            linear-gradient(135deg,
            #f3e29f,
            #d8c46b,
            #b99a3d);
        }

        body{
            font-family:'Poppins',sans-serif;
            overflow-x:hidden;
            background:var(--dark);
            color:#fff;
        }

        a{
            text-decoration:none;
        }

        section{
            padding:100px 0;
            position:relative;
            overflow:hidden;
        }

        .container{
            position:relative;
            z-index:5;
        }

        /* =========================
           SECTION SEPARATOR
        ========================= */

        section::after{
            content:'';
            position:absolute;
            left:0;
            bottom:-1px;
            width:100%;
            height:90px;

            background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230d1c15' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,121L1360,121C1280,121,1120,121,960,121C800,121,640,121,480,121C320,121,160,121,80,121L0,121Z'%3E%3C/path%3E%3C/svg%3E");

            background-size:cover;
            background-repeat:no-repeat;
            z-index:2;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar{
            background:
            rgba(6,17,12,.85);

            backdrop-filter:blur(14px);

            padding:16px 0;

            border-bottom:
            1px solid rgba(255,255,255,.05);
        }

        .main-logo{
            width:120px;
        }

        .nav-link{
            color:#fff !important;
            margin-left:20px;
            font-weight:500;
            position:relative;
        }

        .nav-link::after{
            content:'';
            position:absolute;
            left:0;
            bottom:-5px;
            width:0;
            height:2px;
            background:var(--primary);
            transition:.4s;
        }

        .nav-link:hover::after{
            width:100%;
        }

        .book-btn{
            background:var(--gold-gradient);
            color:#102118;
            padding:12px 28px;
            border-radius:50px;
            font-weight:700;
            transition:.4s;
        }

        .book-btn:hover{
            transform:translateY(-5px);
            color:#000;
        }

        /* =========================
           PAGE HERO
        ========================= */

        .page-hero{

            min-height:70vh;

            background:
            linear-gradient(rgba(0,0,0,.72),
            rgba(0,0,0,.75)),
            url('{{ asset("assets/image/about-img.avif") }}')
            center/cover;

            display:flex;
            align-items:center;
            text-align:center;
        }

        .page-hero h1{
            font-size:70px;
            font-weight:800;
            margin-top:30px;
        }

        .page-hero p{
            max-width:750px;
            margin:25px auto 0;
            color:#ddd;
            line-height:1.9;
        }

        .hero-logo img{
            width:280px;

            animation:
            floatLogo 4s ease-in-out infinite;
        }

        @keyframes floatLogo{

            0%{
                transform:translateY(0px);
            }

            50%{
                transform:translateY(-10px);
            }

            100%{
                transform:translateY(0px);
            }
        }

        /* =========================
           SECTION TITLE
        ========================= */

        .section-title{
            text-align:center;
            margin-bottom:70px;
        }

        .section-title span{
            color:var(--primary);
            font-weight:600;
            letter-spacing:2px;
            text-transform:uppercase;
        }

        .section-title h2{
            font-size:44px;
            font-weight:700;
            margin-top:12px;
        }

        /* =========================
           ABOUT CONTENT
        ========================= */

        .about-image{
            overflow:hidden;
            border-radius:30px;

            border:
            1px solid var(--border);

            box-shadow:var(--shadow);
        }

        .about-image img{
            width:100%;
            transition:.6s;
        }

        .about-image:hover img{
            transform:scale(1.08);
        }

        .about-content h3{
            font-size:42px;
            font-weight:700;
            margin-bottom:20px;
        }

        .about-content p{
            color:var(--gray);
            line-height:2;
            margin-bottom:20px;
        }

        /* =========================
           CARDS
        ========================= */

        .info-card{

            background:
            linear-gradient(145deg,
            #102018,
            #0b1611);

            border:
            1px solid var(--border);

            border-radius:25px;

            padding:40px 35px;

            transition:.5s;

            height:100%;

            box-shadow:var(--shadow);
        }

        .info-card:hover{

            transform:
            translateY(-10px);

            border-color:
            rgba(216,196,107,.25);
        }

        .info-card .icon{

            width:85px;
            height:85px;

            display:flex;
            align-items:center;
            justify-content:center;

            border-radius:50%;

            margin-bottom:25px;

            background:
            rgba(216,196,107,.08);
        }

        .info-card .icon i{
            font-size:34px;
            color:var(--primary);
        }

        .info-card h3{
            font-size:30px;
            margin-bottom:18px;
            font-weight:700;
        }

        .info-card p{
            color:var(--gray);
            line-height:1.9;
        }

        /* =========================
           FACILITIES
        ========================= */

        .facility-card{

            background:
            rgba(255,255,255,.03);

            border:
            1px solid rgba(255,255,255,.05);

            border-radius:22px;

            padding:30px 25px;

            text-align:center;

            transition:.4s;

            height:100%;
        }

        .facility-card:hover{

            transform:
            translateY(-8px);

            border-color:
            rgba(216,196,107,.25);
        }

        .facility-card i{
            font-size:42px;
            color:var(--primary);
            margin-bottom:20px;
        }

        .facility-card h5{
            font-size:20px;
            font-weight:600;
        }

        /* =========================
           QUOTE
        ========================= */

        .quote-box{

            background:
            linear-gradient(135deg,
            #173728,
            #102018);

            border:
            1px solid rgba(216,196,107,.15);

            border-radius:30px;

            padding:80px 40px;

            text-align:center;

            box-shadow:var(--shadow);
        }

        .quote-box h2{
            font-size:46px;
            font-weight:700;
            line-height:1.5;
        }

        .quote-box span{
            color:var(--primary);
        }

        /* =========================
           FOOTER
        ========================= */

        footer{

    position:relative;

    background:
    linear-gradient(to bottom,
    #06110c,
    #020504);

    padding:110px 0 20px;

    overflow:hidden;
}

footer::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(circle,
    rgba(216,196,107,.08),
    transparent 70%);

    top:-220px;
    right:-120px;

    border-radius:50%;

    filter:blur(60px);
}

.footer-logo{

    width:120px;

    margin-bottom:25px;

    filter:
    drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

.footer-title{

    font-size:28px;

    font-weight:700;

    margin-bottom:30px;

    position:relative;

    display:inline-block;

    color:#fff;
}

.footer-title::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-10px;

    width:60px;
    height:3px;

    border-radius:20px;

    background:
    linear-gradient(135deg,
    #f3e29f,
    #d8c46b,
    #b99a3d);
}

.footer-desc{

    color:#b9c2bc;

    line-height:2;

    font-size:15px;
}

.footer-links a{

    display:flex;
    align-items:center;

    gap:12px;

    color:#c4cbc6;

    margin-bottom:16px;

    transition:.4s;

    font-size:15px;

    text-decoration:none;
}

.footer-links a i{

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(216,196,107,.08);

    color:#d8c46b;

    transition:.4s;
}

.footer-links a:hover{

    color:#d8c46b;

    transform:
    translateX(8px);
}

.footer-links a:hover i{

    background:
    linear-gradient(135deg,
    #f3e29f,
    #d8c46b,
    #b99a3d);

    color:#102118;
}

.social-icons{

    display:flex;
    gap:14px;

    margin-top:30px;
}

.social-icons a{

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.05);

    color:#fff;

    transition:.5s;

    position:relative;

    overflow:hidden;
}

.social-icons a::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(135deg,
    #f3e29f,
    #d8c46b,
    #b99a3d);

    opacity:0;

    transition:.5s;
}

.social-icons a i{
    position:relative;
    z-index:2;
}

.social-icons a:hover::before{
    opacity:1;
}

.social-icons a:hover{

    transform:
    translateY(-8px) rotate(5deg);

    color:#102118;

    border-color:
    transparent;
}

.copyright{

    margin-top:70px;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.06);

    text-align:center;

    color:#8d9791;

    font-size:15px;

    letter-spacing:.5px;
}

.newsletter-box{

    margin-top:30px;

    position:relative;
}

.newsletter-box input{

    width:100%;

    height:60px;

    border:none;

    outline:none;

    border-radius:50px;

    padding:0 160px 0 25px;

    background:
    rgba(255,255,255,.05);

    color:#fff;

    border:
    1px solid rgba(255,255,255,.06);
}

.newsletter-box button{

    position:absolute;

    right:6px;
    top:6px;

    height:48px;

    padding:0 28px;

    border:none;

    border-radius:50px;

    background:
    linear-gradient(135deg,
    #f3e29f,
    #d8c46b,
    #b99a3d);

    color:#102118;

    font-weight:700;

    transition:.4s;
}

.newsletter-box button:hover{

    transform:scale(.96);
}

@media(max-width:768px){

    footer{
        padding:80px 0 20px;
    }

    .footer-title{
        font-size:24px;
    }

    .newsletter-box input{
        padding-right:25px;
        height:58px;
    }

    .newsletter-box button{

        position:relative;

        width:100%;

        margin-top:15px;

        right:auto;
        top:auto;
    }
}

        /* =========================
           RESPONSIVE
        ========================= */

        @media(max-width:991px){

            .navbar-brand img{
                height: 70px;
            }

            .page-hero h1{
                font-size:50px;
            }

            .about-content{
                margin-top:40px;
            }
        }

        @media(max-width:768px){

            section{
                padding:70px 0;
            }

            .page-hero h1{
                font-size:38px;
            }

            .section-title h2{
                font-size:32px;
            }

            .quote-box h2{
                font-size:30px;
            }

            .main-logo{
                width:170px;
            }

            .hero-logo img{
                width:220px;
            }
        }

/* facilities page css */

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

        :root {

            --primary: #d8c46b;
            --primary-light: #f3e29f;
            --primary-dark: #b99a3d;

            --dark: #06110c;
            --dark-light: #0d1c15;

            --gray: #c5cec8;

            --border: rgba(216, 196, 107, .12);

            --shadow:
                0 10px 40px rgba(0, 0, 0, .35);

            --gold-gradient:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #06110c;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        section {
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            position: relative;
            z-index: 5;
        }

        /* =====================================
               NAVBAR
            ===================================== */

        .navbar {

            background:
                rgba(6, 17, 12, .82);

            backdrop-filter: blur(14px);

            padding: 16px 0;

            border-bottom:
                1px solid rgba(255, 255, 255, .05);
        }

        .main-logo {
            width: 120px;
        }

        .nav-link {
            color: #fff !important;
            margin-left: 20px;
            font-weight: 500;
            position: relative;
        }

        .nav-link::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -5px;

            width: 0;
            height: 2px;

            background: var(--primary);

            transition: .4s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .book-btn {

            background: var(--gold-gradient);

            color: #102118;

            padding: 12px 28px;

            border-radius: 50px;

            font-weight: 700;

            transition: .4s;
        }

        .book-btn:hover {

            transform:
                translateY(-5px);

            color: #000;
        }

        /* =====================================
               HERO
            ===================================== */


        .facilities-hero {

            min-height: 80vh;

            background:
                linear-gradient(rgba(0, 0, 0, .78),
                    rgba(0, 0, 0, .78)),
                url("{{ asset('assets/image/hallimage.png') }}");  center/cover no-repeat;

            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .facilities-hero::before {

            content: '';

            position: absolute;

            width: 600px;
            height: 600px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .12),
                    transparent 70%);

            top: -200px;
            right: -120px;

            border-radius: 50%;

            filter: blur(70px);
        }

        .hero-logo img {

            width: 280px;

            animation:
                floatLogo 4s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .facilities-hero h1 {

            font-size: 78px;

            font-weight: 800;

            margin-top: 30px;
        }

        .facilities-hero h1 span {
            color: var(--primary);
        }

        .facilities-hero p {

            max-width: 760px;

            margin: 20px auto 0;

            line-height: 1.9;

            color: #ddd;

            font-size: 18px;
        }

        /* =====================================
               SECTION TITLE
            ===================================== */

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title span {

            color: var(--primary);

            letter-spacing: 2px;

            font-weight: 600;

            text-transform: uppercase;
        }

        .section-title h2 {

            font-size: 48px;

            font-weight: 800;

            margin-top: 12px;
        }

        /* =====================================
               FACILITY CARD
            ===================================== */

        .facility-card {

            background:
                linear-gradient(145deg,
                    #102018,
                    #0b1611);

            border:
                1px solid rgba(216, 196, 107, .12);

            border-radius: 28px;

            overflow: hidden;

            transition: .5s;

            height: 100%;

            box-shadow:
                0 10px 35px rgba(0, 0, 0, .35);
        }

        .facility-card:hover {

            transform:
                translateY(-12px);

            border-color:
                rgba(216, 196, 107, .28);
        }

        .facility-img {
            overflow: hidden;
        }

        .facility-img img {

            width: 100%;
            height: 280px;

            object-fit: cover;

            transition: .6s;
        }

        .facility-card:hover .facility-img img {
            transform: scale(1.1);
        }

        .facility-content {
            padding: 35px 30px;
        }

        .facility-icon {

            width: 75px;
            height: 75px;
margin-left: 35%;
            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(216, 196, 107, .08);

            margin-bottom: 25px;
        }

        .facility-icon i {

            color: var(--primary);

            font-size: 30px;
        }

        .facility-content h3 {

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 15px;
        }

        .facility-content p {

            color: var(--gray);

            line-height: 1.9;
        }

        /* =====================================
               HIGHLIGHT SECTION
            ===================================== */

        .highlight-box {

            background:
                linear-gradient(135deg,
                    #173728,
                    #0f1f18);

            border:
                1px solid rgba(216, 196, 107, .12);

            border-radius: 30px;

            padding: 70px 40px;

            text-align: center;
        }

        .highlight-box h2 {

            font-size: 48px;

            font-weight: 700;
        }

        .highlight-box p {

            max-width: 750px;

            margin: 20px auto;

            color: #ddd;

            line-height: 1.9;
        }

        /* =====================================
               FOOTER
            ===================================== */

        footer {

            position: relative;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #020504);

            padding: 60px 0 20px;

            overflow: hidden;
        }

        footer::before {

            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .08),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(60px);
        }

        .footer-logo {
            width: 120px;
            margin-bottom: 25px;
        }

        .footer-title {

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 30px;

            position: relative;

            display: inline-block;
        }

        .footer-title::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -10px;

            width: 60px;
            height: 3px;

            border-radius: 20px;

            background: var(--gold-gradient);
        }

        .footer-desc {

            color: #b9c2bc;

            line-height: 2;
        }

        .footer-links a {

            display: flex;
            align-items: center;

            gap: 12px;

            color: #c4cbc6;

            margin-bottom: 16px;

            transition: .4s;
        }

        .footer-links a i {

            width: 34px;
            height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(216, 196, 107, .08);

            color: var(--primary);
        }

        .footer-links a:hover {

            color: var(--primary);

            transform:
                translateX(8px);
        }

        .social-icons {

            display: flex;
            gap: 14px;

            margin-top: 30px;
        }

        .social-icons a {

            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 18px;

            background:
                rgba(255, 255, 255, .04);

            color: #fff;

            transition: .5s;
        }

        .social-icons a:hover {

            background: var(--gold-gradient);

            color: #102118;

            transform:
                translateY(-8px);
        }

        .newsletter-box {

            margin-top: 30px;

            position: relative;
        }

        .newsletter-box input {

            width: 100%;

            height: 60px;

            border: none;

            outline: none;

            border-radius: 50px;

            padding: 0 160px 0 25px;

            background:
                rgba(255, 255, 255, .05);

            color: #fff;
        }

        .newsletter-box button {

            position: absolute;

            right: 6px;
            top: 6px;

            height: 48px;

            padding: 0 28px;

            border: none;

            border-radius: 50px;

            background: var(--gold-gradient);

            color: #102118;

            font-weight: 700;
        }

        .copyright {

            margin-top: 70px;

            padding-top: 25px;

            border-top:
                1px solid rgba(255, 255, 255, .06);

            text-align: center;

            color: #8d9791;
        }

        /* =====================================
               RESPONSIVE
            ===================================== */

        @media(max-width:991px) {

            .facilities-hero h1 {
                font-size: 54px;
            }

            .section-title h2 {
                font-size: 36px;
            }
        }

        @media(max-width:768px) {

            section {
                padding: 80px 0;
            }

            .facilities-hero h1 {
                font-size: 38px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .highlight-box h2 {
                font-size: 34px;
            }

            .hero-logo img {
                width: 220px;
            }

            .newsletter-box input {
                padding-right: 25px;
            }

            .newsletter-box button {

                position: relative;

                width: 100%;

                margin-top: 15px;

                right: auto;
                top: auto;
            }
        }

        /* gallery page css */



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

        :root {

            --primary: #d8c46b;
            --primary-light: #f3e29f;
            --primary-dark: #b99a3d;

            --dark: #06110c;
            --dark-light: #0d1c15;

            --gray: #c5cec8;

            --border: rgba(216, 196, 107, .12);

            --shadow:
                0 10px 40px rgba(0, 0, 0, .35);

            --gold-gradient:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #06110c;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        section {
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            position: relative;
            z-index: 5;
        }

        /* =====================================
               NAVBAR
            ===================================== */

        .navbar {

            background:
                rgba(6, 17, 12, .82);

            backdrop-filter: blur(14px);

            padding: 16px 0;

            border-bottom:
                1px solid rgba(255, 255, 255, .05);
        }

        .main-logo {
            width: 120px;
        }

        .nav-link {
            color: #fff !important;
            margin-left: 20px;
            font-weight: 500;
            position: relative;
        }

        .nav-link::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -5px;

            width: 0;
            height: 2px;

            background: var(--primary);

            transition: .4s;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .book-btn {

            background: var(--gold-gradient);

            color: #102118;

            padding: 12px 28px;

            border-radius: 50px;

            font-weight: 700;

            transition: .4s;
        }

        .book-btn:hover {

            transform:
                translateY(-5px);

            color: #000;
        }

        /* =====================================
               HERO
            ===================================== */

        .gallery-hero {

            min-height: 75vh;

            background:
                linear-gradient(rgba(0, 0, 0, .78),
                    rgba(0, 0, 0, .78)),
                url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;

            display: flex;
            align-items: center;

            text-align: center;

            position: relative;
        }

        .gallery-hero::before {

            content: '';

            position: absolute;

            width: 600px;
            height: 600px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .12),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(80px);
        }

        .hero-logo img {

            width: 280px;

            animation:
                floatLogo 4s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .gallery-hero h1 {

            font-size: 78px;

            font-weight: 800;

            margin-top: 30px;
        }

        .gallery-hero h1 span {
            color: var(--primary);
        }

        .gallery-hero p {

            max-width: 760px;

            margin: 20px auto 0;

            line-height: 1.9;

            color: #ddd;

            font-size: 18px;
        }

        /* =====================================
               SECTION TITLE
            ===================================== */

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title span {

            color: var(--primary);

            letter-spacing: 2px;

            font-weight: 600;

            text-transform: uppercase;
        }

        .section-title h2 {

            font-size: 48px;

            font-weight: 800;

            margin-top: 12px;
        }

        /* =====================================
               GALLERY
            ===================================== */

        .gallery-card {

            position: relative;

            border-radius: 28px;

            overflow: hidden;

            border:
                1px solid rgba(216, 196, 107, .12);

            box-shadow:
                0 10px 35px rgba(0, 0, 0, .35);

            transition: .5s;
        }

        .gallery-card:hover {

            transform:
                translateY(-10px);
        }

        .gallery-card img {

            width: 100%;
            height: 340px;

            object-fit: cover;

            transition: .6s;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {

            position: absolute;

            inset: 0;

            background:
                linear-gradient(to top,
                    rgba(0, 0, 0, .92),
                    transparent);

            display: flex;
            align-items: flex-end;

            padding: 30px;

            opacity: 0;

            transition: .5s;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {

            font-size: 28px;

            font-weight: 700;
        }

        .gallery-overlay p {

            color: #ddd;

            margin-top: 10px;
        }

        /* =====================================
               VIDEO SECTION
            ===================================== */

        .video-box {

            position: relative;

            border-radius: 35px;

            overflow: hidden;

            border:
                1px solid rgba(216, 196, 107, .12);

            box-shadow:
                0 15px 40px rgba(0, 0, 0, .35);
        }

        .video-box img {

            width: 100%;
            height: 550px;

            object-fit: cover;
        }

        .play-btn {

            position: absolute;

            top: 50%;
            left: 50%;

            transform: translate(-50%, -50%);

            width: 110px;
            height: 110px;

            border-radius: 50%;

            background: var(--gold-gradient);

            display: flex;
            align-items: center;
            justify-content: center;

            color: #102118;

            font-size: 40px;

            animation:
                pulse 2s infinite;
        }

        @keyframes pulse {

            0% {
                box-shadow:
                    0 0 0 0 rgba(216, 196, 107, .5);
            }

            70% {
                box-shadow:
                    0 0 0 30px rgba(216, 196, 107, 0);
            }

            100% {
                box-shadow:
                    0 0 0 0 rgba(216, 196, 107, 0);
            }
        }

        .royal-slider-section {

            padding: 120px 0;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #0b1d14);

            position: relative;

            overflow: hidden;
        }

        .royal-slider-section::before {

            content: '';

            position: absolute;

            width: 550px;
            height: 550px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .10),
                    transparent 70%);

            top: -180px;
            left: -120px;

            border-radius: 50%;

            filter: blur(80px);
        }

        .slider-heading {
            margin-bottom: 70px;
        }

        .slider-heading span {

            color: #d8c46b;

            letter-spacing: 3px;

            font-weight: 600;

            text-transform: uppercase;
        }

        .slider-heading h2 {

            color: #fff;

            font-size: 58px;

            font-weight: 800;

            margin-top: 15px;
        }

        .slider-heading p {

            color: #c7c7c7;

            max-width: 700px;

            margin: 18px auto 0;

            line-height: 1.9;
        }

        .room-card {

            position: relative;

            border-radius: 28px;

            overflow: hidden;

            border:
                1px solid rgba(216, 196, 107, .14);

            transition: .5s;

            background: #111;
        }

        .room-card:hover {

            transform:
                translateY(-10px);
        }

        .room-card img {

            width: 100%;
            height: 450px;

            object-fit: cover;

            transition: .7s;
        }

        .room-card:hover img {

            transform: scale(1.1);
        }

        .room-overlay {

            position: absolute;

            inset: 0;

            background:
                linear-gradient(to top,
                    rgba(0, 0, 0, .92),
                    rgba(0, 0, 0, .12));

            display: flex;

            flex-direction: column;

            justify-content: flex-end;

            padding: 30px;
        }

        .room-overlay h3 {

            color: #fff;

            font-size: 30px;

            font-weight: 700;
        }

        .room-overlay p {

            color: #ddd;

            margin-top: 8px;
        }

        /* SWIPER BUTTON */

        .swiper-button-next,
        .swiper-button-prev {

            width: 58px;
            height: 58px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, .08);

            backdrop-filter: blur(10px);

            border:
                1px solid rgba(216, 196, 107, .18);

            transition: .4s;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {

            font-size: 20px;

            color: #fff;

            font-weight: 700;
        }

        .swiper-button-next:hover::after,
        .swiper-button-prev:hover::after {

            color: #102118;
        }

        /* PAGINATION */

        .swiper-pagination {
            margin-top: 20px;
        }

        .swiper-pagination-bullet {

            width: 14px;
            height: 14px;

            background: #777;

            opacity: 1;
        }

        .swiper-pagination-bullet-active {

            width: 36px;

            border-radius: 30px;

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .slider-heading h2 {
                font-size: 42px;
            }

            .room-card img {
                height: 380px;
            }
        }

        @media(max-width:768px) {

            .royal-slider-section {
                padding: 90px 0;
            }

            .slider-heading h2 {
                font-size: 32px;
            }

            .room-card img {
                height: 320px;
            }

            .room-overlay h3 {
                font-size: 24px;
            }

            .swiper-button-next,
            .swiper-button-prev {

                width: 48px;
                height: 48px;
            }
        }

        /* =====================================
               FOOTER
            ===================================== */

        footer {

            position: relative;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #020504);

            padding: 110px 0 20px;

            overflow: hidden;
        }

        footer::before {

            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .08),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(60px);
        }

        .footer-logo {
            width: 120px;
            margin-bottom: 25px;
        }

        .footer-title {

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 30px;

            position: relative;

            display: inline-block;
        }

        .footer-title::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -10px;

            width: 60px;
            height: 3px;

            border-radius: 20px;

            background: var(--gold-gradient);
        }

        .footer-desc {

            color: #b9c2bc;

            line-height: 2;
        }

        .footer-links a {

            display: flex;
            align-items: center;

            gap: 12px;

            color: #c4cbc6;

            margin-bottom: 16px;

            transition: .4s;
        }

        .footer-links a i {

            width: 34px;
            height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(216, 196, 107, .08);

            color: var(--primary);
        }

        .footer-links a:hover {

            color: var(--primary);

            transform:
                translateX(8px);
        }

        .social-icons {

            display: flex;
            gap: 14px;

            margin-top: 30px;
        }

        .social-icons a {

            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 18px;

            background:
                rgba(255, 255, 255, .04);

            color: #fff;

            transition: .5s;
        }

        .social-icons a:hover {

            background: var(--gold-gradient);

            color: #102118;

            transform:
                translateY(-8px);
        }

        .newsletter-box {

            margin-top: 30px;

            position: relative;
        }

        .newsletter-box input {

            width: 100%;

            height: 60px;

            border: none;

            outline: none;

            border-radius: 50px;

            padding: 0 160px 0 25px;

            background:
                rgba(255, 255, 255, .05);

            color: #fff;
        }

        .newsletter-box button {

            position: absolute;

            right: 6px;
            top: 6px;

            height: 48px;

            padding: 0 28px;

            border: none;

            border-radius: 50px;

            background: var(--gold-gradient);

            color: #102118;

            font-weight: 700;
        }

        .copyright {

            margin-top: 70px;

            padding-top: 25px;

            border-top:
                1px solid rgba(255, 255, 255, .06);

            text-align: center;

            color: #8d9791;
        }

        /* =====================================
               RESPONSIVE
            ===================================== */

        @media(max-width:991px) {

            .gallery-hero h1 {
                font-size: 54px;
            }

            .section-title h2 {
                font-size: 36px;
            }
        }

        @media(max-width:768px) {

            section {
                padding: 80px 0;
            }

            .gallery-hero h1 {
                font-size: 38px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .hero-logo img {
                width: 220px;
            }

            .video-box img {
                height: 350px;
            }

            .newsletter-box input {
                padding-right: 25px;
            }

            .newsletter-box button {

                position: relative;

                width: 100%;

                margin-top: 15px;

                right: auto;
                top: auto;
            }
        }

