/*---------------------------------------------------------------------------------
    Included CSS INDEX
-----------------------------------------------------------------------------------

01. Typography

02. Utilities
    - mixing
    - variables

03. components
    - header
    - footer
    - common
    - modal

04. Layouts
    - hero
    - extra-services
    - testimonials
    - menu
    - Book

05. pages
    - about
    - services
    - rooms
    - rooms-2
    - rooms-3
    - amenities
    - blog
    - team
    - gallery
    - gallery-2
    - contact
    - faq
    - blog-details
    - Spa
    - checkout
    - authentication

-----------------------------------------------------------------------------------*/
/* Typography ( Import Typography ) */
/*-------------------------------------------------
  Fonts Family & Style CSS
---------------------------------------------------*/

.float {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 5rem;


    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    padding: 12px;
}

.my-float {
    margin-top: 16px;
}

/* Modern Filter Menu Styles */
.filter-section {
    margin-bottom: 4rem;
    text-align: center;
}

.filter-header {
    margin-bottom: 2rem;
}

.filter-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: "Poppins", sans-serif;


}

.filter-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.modern-filter-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #495057;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #eb9000 0%, #ff9224 100%);
    color: #fff;
    border-color: #eb9000;
    box-shadow: 0 8px 25px rgba(235, 144, 0, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #eb9000 0%, #ff9224 100%);
    color: #fff;
    border-color: #eb9000;
    box-shadow: 0 8px 25px rgba(235, 144, 0, 0.2);
}

.filter-btn i {
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

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

.filter-btn:hover i,
.filter-btn:hover span,
.filter-btn.active i,
.filter-btn.active span {
    color: #fff;
}

/* Remove all filter and item animations and scaling */
.filter-item li {
    width: 50%;
    padding: 5px;
    float: left;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    transform: none;
}

.filter-item li.hidden {
    display: none;
}

.filter-item li.visible {
    display: block;
}

.filter-item li.active {
    width: 50%;
    padding: 5px;
}

.filter-item li.delete {
    width: 0;
    padding: 0;
    display: none;
}

.filter-item img {
    display: block;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media(max-width: 768px) {
    .filter-header h3 {
        font-size: 2rem;
    }

    .modern-filter-menu {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .filter-btn i {
        font-size: 1rem;
    }
}

@media(max-width: 575px) {
    .filter-header h3 {
        font-size: 1.75rem;
    }

    .filter-header p {
        font-size: 1rem;
    }

    .modern-filter-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media screen and(min-width: 768px) {
    .filter-item li {
        width: 33.33%;
    }

    h2 {
        font-size: 190%;
    }
}
@media screen and(min-width: 1280px) {
    .filter-item li.active,
    .filter-item li {
        width: 25%;
    }

    h2 {
        font-size: 270%;
    }
}

.nav-item.active .nav-link {
    color: #eb9000 !important;
}
ul li a.active {
    color: #eb9000 !important;
}
ul li a.active:hover {
    color: #ffff !important;
}

.ppolicy p {
    margin-bottom: 15px;
}
.ctus h4 {
    font-family: "Poppins", sans-serif;


    font-size: 25px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
}

.ctus i {
    font-size: 25px;
    color: #eb9000;
    line-height: 1.2;
    margin-right: 15px;
}

/* Class for the unordered list */
.hotel-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Class for each list item */
.hotel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d3d3d3;
    padding: 10px;
    margin: 10px;
    font-size: 16px;

    border-radius: 4px;
    width: 30%;
    box-sizing: border-box;
}

/* Different background colors for odd and even list items */
.hotel-item:nth-child(odd) {
    background-color: #fff;
    color: #333;
}

.hotel-item:nth-child(even) {
    background-color: #f5f5f5;
    color: #333;
}

/* Responsive behavior for medium and small screens */
@media(max-width: 768px) {
    .hotel-item {
        width: 45%;
    }
}

@media(max-width: 480px) {
    .hotel-item {
        width: 100%;
    }
}
.pt-50 {
    padding-top: 50px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pt-20 {
    padding-top: 20px;
}

.d-head {
    font-size: 58px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8000 0%, #eb9000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Remove text-shadow if you want the gradient to be more visible, or keep it subtle */
    /* text-shadow: 1px 1px #fff, -1px 1px #fff, 1px -1px #fff, -1px -1px #fff, 1px 1px 5px #555555; */
}

/*--  Poppins font  --*/
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url("../fonts/poppins/Poppins-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}
/* Playfair */
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Playfair Display", serif;
    src: url("../fonts/Playfair/PlayfairDisplay-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}
/* Utilities ( Import Utilities ) */
/* mixing */
/* variables */
/* components ( Import components ) */
/* common */
body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    line-height: 26px;
    letter-spacing: 0.02rem;
}

/* ::-moz-selection {
  color: #eb9000;
  background-color: rgba(0, 0, 0, 0.04);
}

::selection {
  color: #eb9000;
  background-color: rgba(0, 0, 0, 0.04);
} */

p,
li,
a {
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    color: #000;
    font-weight: 400;
    /* line-height: 26px;
  letter-spacing: 0.03rem; */
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;


    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.03rem;
}

[type="radio"]:checked {
    position: relative;
    opacity: 0;
    display: none;
}
[type="radio"]:checked + label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    line-height: 16px;
    display: inline-block;
    color: #555555;
    letter-spacing: 0;
}
[type="radio"]:checked + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #eb9000;
}
[type="radio"]:checked + label:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #eb9000;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
[type="radio"]:not(:checked) {
    position: relative;
    opacity: 0;
    display: none;
}
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    line-height: 16px;
    display: inline-block;
    color: #555555;
    letter-spacing: 0;
}
[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #eee;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:not(:checked) + label:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #eb9000;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.bg-two-secondary {
    background-color: #f5f5f5;
}

.p-0 {
    padding: 0;
}

.rx-text-right {
    text-align: right;
}

.rx-banner p {
    margin-bottom: 0.3rem;
    font-family: "Poppins", sans-serif;
    /*font-size: 16px;*/
    letter-spacing: 1px;
    /*font-weight: 500;*/
    color: #555555;
}
.rx-banner h4 {
    font-family: "Poppins", sans-serif;


    font-size: 3rem;
    color: #000;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.rx-banner h4 span {
    color: #eb9000;
}

.rx-banner-effects p {
    position: relative;
}
.rx-banner-effects p .left-side {
    padding-right: 10px;
}
.rx-banner-effects p .right-side {
    padding-left: 10px;
}
.rx-banner-effects p svg,
.rx-banner-effects p img {
    width: 90px;
}
.rx-banner-effects p svg path,
.rx-banner-effects p img path {
    fill: #eb9000;
}
.rx-banner-effects p svg .cls-1,
.rx-banner-effects p svg .cls-2,
.rx-banner-effects p img .cls-1,
.rx-banner-effects p img .cls-2 {
    fill-rule: evenodd;
}
.rx-banner-effects p svg .cls-2,
.rx-banner-effects p svg .cls-3,
.rx-banner-effects p img .cls-2,
.rx-banner-effects p img .cls-3 {
    fill-opacity: 0;
    stroke: #eb9000;
    stroke-linejoin: round;
    stroke-width: 2px;
}

/* Breadcrumb */
.section-breadcrumb {
    position: relative;
}
.section-breadcrumb:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 200px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.85) 100%);
}

.rx-breadcrumb-overlay {
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.rx-breadcrumb-image {
    width: 100%;
    height: 400px;
    margin: 0;

    background-size: cover;
    background-position: center;
}

.inner-breadcrumb-contact {
    position: relative;
    height: 100%;
    z-index: 1;
}
.inner-breadcrumb-contact .main-breadcrumb-contact {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.inner-breadcrumb-contact .main-breadcrumb-contact .rx-banner-contact h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.inner-breadcrumb-contact .rx-banner-breadcrumb {
    position: absolute;
    bottom: 0;
    padding: 10px 0;
    background: linear-gradient(90deg, #eb7600 0%, #eb9000 100%);
    width: 100%;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .main-heading h4 {
    font-size: x-large;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .last-contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -8px;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .last-contact ul li {
    padding: 0 8px;
    font-size: large;
    font-weight: 300;
    color: #fff;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .last-contact ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: large;
    font-weight: 500;
    color: #fff;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .last-contact ul li a:hover {
    color: #ababab;
}
.inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .last-contact ul li:last-child:before {
    content: "\ea6e";
    font-family: "remixicon";
    font-size: 14px;
    font-weight: 500;
    padding-right: 12px;
}

/* Back to top button */
a.back-to-top {
    width: 38px;
    height: 38px;
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 10;
    border-radius: 20px;
    cursor: pointer;
    background-color: #fff;
    color: #eb9000;
    border: 1px solid #eb9000;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
}

/* @media (min-width: 1200px) {
  a.back-to-top {
    bottom: 4rem;
  }
  a.back-to-top svg,
  a.back-to-top img {
    bottom: 4rem;
  }
} */

a.back-to-top i {
    font-size: 20px;
}
a.back-to-top:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a.back-to-top svg,
a.back-to-top img {
    width: 36px;
    height: 36px;
    position: fixed;
    right: 16px;
    bottom: 16px;
}
a.back-to-top svg path,
a.back-to-top img path {
    fill: transparent;
    stroke: #eb9000;
    stroke-width: 5px;
}

/* Loader */
.rx-loader {
    min-width: 100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    z-index: 45;
}
.rx-loader .loader {
    width: 100px;
    height: 100px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-loader .loader:after,
.rx-loader .loader:before {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 50px solid #eb9000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-animation: animloader 2s linear infinite;
    animation: animloader 2s linear infinite;
}
.rx-loader .loader:after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
@-webkit-keyframes animloader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes animloader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.form-select:focus {
    -webkit-box-shadow: 0 0 0 2px #eb9000;
    box-shadow: 0 0 0 2px #eb9000;
    border-color: #eb9000;
    outline: none;
}

.form-select option {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background-color: #fffbe6;
    padding: 10px 16px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.form-select option:checked,
.form-select option:focus,
.form-select option:hover {
    background-color: #ffe0a3;
    color: #eb9000;
}

textarea {
    width: 100%;
    padding: 4px;
    font-weight: 400;
    font-size: large;
    color: #555555;
    border: 1px solid #c2c2c2;
    outline: 0;
    border-radius: 4px;
}
textarea:focus {
    border: 1px solid #eee;
}
textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
textarea::-moz-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
textarea::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}

input,
.rx-from-control {
    width: 100%;
    height: 40px;
    padding: 4px;
    color: #555555;
    border: 1px solid #c2c2c2;
    outline: 0;
    border-radius: 4px;
    font-weight: 400;
    font-size: large;
}
input:focus,
.rx-from-control:focus {
    border: 1px solid #eee;
}
input::-webkit-input-placeholder,
.rx-from-control::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
input::-moz-placeholder,
.rx-from-control::-moz-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
input:-ms-input-placeholder,
.rx-from-control:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
input::-ms-input-placeholder,
.rx-from-control::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
input::placeholder,
.rx-from-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}

.custom-dropdown {
    position: relative;
}
.custom-dropdown ul.dropdown {
    background-color: #131618;
    display: none;
    position: absolute;
    left: 0;
    z-index: 2;
    width: 100%;
    top: 100%;
    margin-top: 7px;
    margin-bottom: 0;
    padding: 10px 5px;
}
.custom-dropdown ul.dropdown li a {
    padding: 0 12px;
    font-size: large;
    display: block;
}

.rx-btn-one {
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    padding: 12px 32px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 1.2px;
    background: linear-gradient(90deg, #eb7600 0%, #eb9000 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px 0 rgba(169, 36, 49, 0.15), 0 1.5px 4px 0 rgba(233, 144, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rx-btn-one:hover {
    background: #fff;
    color: #eb9000;
    border: 1.5px solid #eb9000;
    box-shadow: 0 6px 24px 0 rgba(233, 144, 0, 0.18), 0 2px 8px 0 rgba(169, 36, 49, 0.12);
    transform: translateY(-2px) scale(1.03);
}

.rx-btn-two {
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    padding: 12px 32px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 1.2px;
    background: linear-gradient(90deg, #eb7600 0%, #eb9000 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px 0 rgba(169, 36, 49, 0.15), 0 1.5px 4px 0 rgba(233, 144, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rx-btn-two:hover {
    background: #fff;
    color: #eb9000;
    border: 1.5px solid #eb9000;
    box-shadow: 0 6px 24px 0 rgba(233, 144, 0, 0.18), 0 2px 8px 0 rgba(169, 36, 49, 0.12);
    transform: translateY(-2px) scale(1.03);
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-24 {
    margin-top: 24px;
}

.m-minus-12 {
    margin: -12px;
}

.mb-minus-24 {
    margin-bottom: -24px;
}

.padding-t-100 {
    padding: 100px 0 0;
}

.padding-b-100 {
    padding-bottom: 100px !important;
}

.padding-tb-100 {
    padding: 100px 0;
}

.padding-tb-50 {
    padding: 50px 0;
}

.padding-t-50 {
    padding: 50px 0 0;
}

.padding-b-50 {
    padding-bottom: 50px;
}

.margin-t-50 {
    margin-top: 50px;
}

.margin-tb-100 {
    margin: 100px 0;
}

.margin-tb-50 {
    margin: 50px 0;
}

.margin-b-50 {
    margin-bottom: 50px;
}

/* owl */
.owl-dots {
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    padding: 0;
    display: block;
    text-align: center;
    position: relative;
    bottom: 0;
    z-index: 1;
}
.owl-dots .owl-dot {
    margin: 0 2px;
    padding: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.owl-dots .owl-dot span {
    border: 0;
    background: transparent;
    display: block;
    outline: none;
    line-height: 0;
    font-size: 0;
    border: 1px solid #131618;
    color: transparent;
    cursor: pointer;
}
.owl-dots .owl-dot span:before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #fff;
    display: inline-block;
    border-radius: 0;
    text-align: center;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.owl-dots .owl-dot.active span::before {
    background-color: #131618;
    width: 25px;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .inner-breadcrumb-contact .main-breadcrumb-contact .rx-banner-contact h2 {
        font-size: 38px;
    }
    .rx-banner {
        margin-bottom: 24px;
    }
    .rx-banner h4 {
        font-size: 32px;
    }
    .rx-banner p {
        margin-bottom: 0;
    }
}
@media screen and(max-width: 1199px) {
    .inner-breadcrumb-contact .main-breadcrumb-contact .rx-banner-contact h2 {
        font-size: 36px;
    }
    .rx-banner {
        margin-bottom: 20px;
    }
    .rx-banner h4 {
        font-size: 30px;
    }
    .padding-tb-100 {
        padding: 70px 0;
    }
    .padding-t-100 {
        padding-top: 70px;
    }
    .padding-b-100 {
        padding-bottom: 70px !important;
    }
    .padding-tb-50 {
        padding: 35px 0;
    }
    .padding-t-50 {
        padding-top: 35px;
    }
    .padding-b-50 {
        padding-bottom: 35px;
    }
    .margin-tb-50 {
        margin: 35px 0;
    }
    .margin-t-50 {
        margin-top: 35px;
    }
    .margin-b-50 {
        margin-bottom: 35px;
    }
}
@media screen and(max-width: 991px) {
    .d-none-991 {
        display: none;
    }
    .rx-breadcrumb-image {
        height: 350px;
    }
    .rx-breadcrumb-overlay {
        height: 350px;
    }
    .inner-breadcrumb-contact .main-breadcrumb-contact .rx-banner-contact h2 {
        font-size: 32px;
    }
    .rx-banner h4 {
        font-size: 26px;
    }
}
@media screen and(max-width: 767px) {
    .inner-breadcrumb-contact .main-breadcrumb-contact .rx-banner-contact h2 {
        font-size: 30px;
    }
}
@media screen and(max-width: 575px) {
    .rx-breadcrumb-image {
        height: 300px;
    }
    .rx-breadcrumb-overlay {
        height: 300px;
    }
    .inner-breadcrumb-contact .main-breadcrumb-contact .rx-banner-contact h2 {
        font-size: 28px;
    }
    .rx-banner p {
        font-size: 15px;
        line-height: 22px;
    }
    .rx-banner h4 {
        font-size: 24px;
    }
    .rx-575-50 {
        width: 50%;
    }
}
@media screen and(max-width: 480px) {
    .rx-footer-inner-contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .rx-footer-inner-contact .rx-footer-left-side-contact {
        margin-bottom: 12px;
    }
    .rx-575-50 {
        width: 100%;
    }
}
@media screen and(max-width: 420px) {
    .rx-banner-effects p svg,
    .rx-banner-effects p img {
        width: 70px;
    }
    .col-420-full {
        width: 100%;
    }
    .inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .main-heading {
        margin-bottom: 6px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .inner-breadcrumb-contact .rx-banner-breadcrumb .breadcrumb-contact .last-contact ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media screen and(max-width: 319px) {
    .rx-banner-effects p svg,
    .rx-banner-effects p img {
        width: 60px;
    }
}
/* Header */
header {
    position: relative;
}
header .rx-header {
    width: 100%;
    position: absolute;
    z-index: 16;
    padding: 20px 0;
}
header .header-fixed {
    width: 100%;
    padding: 2px 0 !important;
    position: fixed !important;
    top: 0 !important;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(45, 45, 45, 0.45) 50%, rgba(26, 26, 26, 0.45) 100%), url('../img/navbar-bg.webp') center/cover;

    -webkit-animation: slideDown 0.35s ease-in-out;
    animation: slideDown 0.35s ease-in-out;
    z-index: 14;
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.container-custom {
    max-width: 90% !important;
    margin-inline: auto;
}

@media(min-width: 576px) {
    .container-custom {
        max-width: 85% !important;
    }
}

@media(min-width: 768px) {
    .container-custom {
        max-width: 80% !important;
    }
}

@media(min-width: 992px) {
    .container-custom {
        max-width: 75% !important;
    }
}

@media(min-width: 1200px) {
    .container-custom {
        max-width: 95% !important;
    }
}
@media(min-width: 1520px) {
    .container-custom {
        max-width: 85% !important;
    }
}

.rx-inner-menu-desk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rx-inner-menu-desk .rx-header-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-inner-menu-desk .rx-header-btn img {
    width: 160px;
}
.rx-inner-menu-desk .navbar-toggler {
    display: none;
    border: 1px solid #fff;
    padding: 5px;
}
.rx-inner-menu-desk .navbar-toggler i {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.rx-inner-menu-desk .rx-main-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.rx-inner-menu-desk .rx-main-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown {
    position: relative;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown:hover .rx-dropdown-menu {
    margin-top: 2px;
    opacity: 1;
    visibility: visible;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown .rx-dropdown-item {
    position: relative;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown .rx-dropdown-item:after {
    content: "";
    height: 8px;
    width: 8px;
    rotate: 135deg;

    position: absolute;
    border-top: 2px solid #ffff;
    border-right: 2px solid #ffff;
    top: 25%;
    right: 0;

}


.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown .rx-dropdown-menu {
    min-width: 100%;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 25px 0 0;
    border-radius: none;
    position: absolute;
    top: 40px;
    z-index: 16;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: auto !important;
    background: #fff;
    -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown .rx-dropdown-menu li {
    margin: 0;
    padding: 2px 0;
    width: 100%;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown .rx-dropdown-menu li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px 15px;
    line-height: 22px;
    font-size: large;
    font-weight: 300;
    color: #555555;
}
.rx-inner-menu-desk .rx-main-menu ul .rx-dropdown .rx-dropdown-menu li a:hover {
    color: white;
    background-color: #eb9000;
}
.rx-inner-menu-desk .rx-main-menu ul li {
    margin-right: 45px;
}
.rx-inner-menu-desk .rx-main-menu ul li a.nav-link {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0;
    font-size: large;
    font-weight: 400;
    color: #fff;
    position: relative;
}
.rx-inner-menu-desk .rx-main-menu ul li a.nav-link::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -16px;
    height: 2px;
    width: 0;
    background: #eb9000;
    left: 0;
    right: auto;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: 0 auto;
}
.rx-inner-menu-desk .rx-main-menu ul li:hover a {
    color: #eb9000;
}
.rx-inner-menu-desk .rx-main-menu ul li:hover a::before {
    background: #eb9000;
    width: 100%;
}
.rx-inner-menu-desk .header-button {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
}

/*===== Mobile menus =====*/
.rx-mobile-menu-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 16;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.rx-mobile-menu-overlay.show {
    opacity: 1;
}

.rx-mobile-menu {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 300px;
    height: 100%;
    padding: 15px 20px 20px;
    position: fixed;
    top: 0;
    right: auto;
    left: 0;
    background-color: #fff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 17;
    overflow: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.rx-mobile-menu::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    padding: 5px;
}
.rx-mobile-menu::-webkit-scrollbar-track {
    width: 12px;
    background-color: #131618;
    -webkit-box-shadow: inset 0 0 0 #000;
}
.rx-mobile-menu::-webkit-scrollbar-thumb {
    background-color: #eb9000;
    border-radius: 20px;
}
.rx-mobile-menu .rx-menu-title {
    width: 100%;
    padding: 20px 20px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    background: #fff;
}

.rx-dropdown-menu {
    background: #fff;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    min-width: 230px;
}
.rx-dropdown-menu li {
    margin: 0;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    font-size: 16px;
    color: #333;

    transition: background 0.18s, color 0.18s;
    font-weight: 500;
}
.dropdown-item i {
    font-size: 18px;
    color: #eb9000;
    min-width: 22px;
    text-align: center;
}
.dropdown-item.active,
.dropdown-item:hover {
    background: #f7f3ed;
    color: #eb9000;
}
.dropdown-item.active,
.dropdown-item:hover > i {
    color: #fff;
}
/* For mobile sub-menu */
.sub-menu {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}
.sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 15px;
    color: #333;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}
.sub-menu li a i {
    font-size: 17px;
    color: #eb9000;
    min-width: 20px;
}
.sub-menu li a.active,
.sub-menu li a:hover {
    background: #f7f3ed;
    color: #eb9000;
}


.rx-mobile-menu .rx-menu-title .menu_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.rx-mobile-menu .rx-menu-title .rx-close-menu {
    position: relative;
    border: 0;
    font-size: 30px;
    line-height: 1;
    color: #ff0000;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li {
    position: relative;
    margin-bottom: 5px;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li a {
    margin-bottom: 0;
    padding: 12px 15px;
    display: block;
    text-transform: capitalize;
    color: #555555;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li a:hover,
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li a.active {
    background-color: #eb9000;
    color: #fff;
    border-color: #eb9000;
}

.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li a:last-child {
    margin-bottom: 0;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .menu-toggle:hover {
    background-color: #f5f5f5;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .menu-toggle::before {
    content: "+";
    font-weight: 500;
    color: #555555;
    font-size: 19px;
    transition: all 0.3s ease;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li.active .menu-toggle::before {
    content: "−";
    color: #eb9000;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu {
    width: 100%;
    min-width: auto;
    padding: 0;
    margin-bottom: 10px;
    position: static;
    top: auto;
    display: none;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 5px;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu li a {
    margin-bottom: 0;
    padding: 10px 20px;
    text-transform: capitalize;
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu li a:hover,
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu li a.active {
    background-color: #eb9000;
    color: #fff;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu li:last-child a {
    border-bottom: none;
}
.rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu li .sub-menu li a {
    font-weight: 400;
    padding-left: 30px;
    font-size: 14px;
    color: #555555;
}
.rx-mobile-menu .rx-menu-inner .header-res-social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.rx-mobile-menu .rx-menu-inner .header-res-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}
.rx-mobile-menu .rx-menu-inner .header-res-social ul li {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #131618;
    border-radius: 10px;
    cursor: pointer;
}
.rx-mobile-menu .rx-menu-inner .header-res-social ul li:hover {
    background-color: #eb9000;
    transform: translateY(-2px);
}
.rx-mobile-menu .rx-menu-inner .header-res-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.rx-mobile-menu .rx-menu-inner .header-res-social ul li a i {
    color: #fff;
    font-size: 16px;
}

.rx-mobile-menu.rx-menu-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .rx-inner-menu-desk .rx-main-menu ul li {
        margin-right: 40px;
    }
    .rx-inner-menu-desk .rx-header-btn img {
        width: 110px;
    }
}
@media screen and(max-width: 1199px) {
    .rx-inner-menu-desk .rx-header-btn img {
        width: 100px;
    }
    .rx-inner-menu-desk .rx-main-menu ul li {
        margin-right: 30px;
    }
}
@media screen and(max-width: 991px) {
    .rx-inner-menu-desk {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }
    .rx-inner-menu-desk .rx-header-btn img {
        width: 85px;
    }
    .rx-inner-menu-desk .rx-main-menu {
        display: none !important;
    }
    .rx-inner-menu-desk .navbar-toggler {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        height: 40px;
        width: 40px;
        border-radius: 8px;
        border: 2px solid #eb9000;
        background-color: transparent;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        margin-left: auto;
        position: relative;
        z-index: 10000;
    }
    .rx-inner-menu-desk .navbar-toggler:hover {
        background-color: #eb9000;
    }
    .rx-inner-menu-desk .navbar-toggler:hover i {
        color: #fff;
    }
    .rx-inner-menu-desk .navbar-toggler i {
        color: #eb9000;
        font-size: 20px;
        transition: all 0.3s ease;
    }
}
@media screen and(max-width: 767px) {
    .rx-inner-menu-desk .rx-header-btn img {
        width: 80px;
    }
    .rx-mobile-menu {
        width: 280px;
    }
}
@media screen and(max-width: 575px) {
    .rx-mobile-menu {
        width: 260px;
        padding: 15px 15px 20px;
    }
    .rx-inner-menu-desk .navbar-toggler {
        height: 35px;
        width: 35px;
    }
    .rx-inner-menu-desk .navbar-toggler i {
        font-size: 18px;
    }
}
/* Footer */
footer {
    background: #ba8b02;
    background: -webkit-linear-gradient(to right, #181818, #684e01);
    background: linear-gradient(to right, #181818, #684e01);
}


.rx-social-media .rx-logo img {
    width: 160px;
}
.rx-social-media .inner-contact {
    margin-bottom: 30px;
}
.rx-social-media .inner-contact p {
    font-size: large;
    /* line-height: 1.7; */
    font-weight: 300;
    color: #cbcbcb;
}
.rx-social-media .rx-social-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
}
.rx-social-media .rx-social-logo .inner-logo {
    padding: 5px;
}
.rx-social-media .rx-social-logo .inner-logo img {
    width: 140px;
    border: 1px solid #393e48;
    border-radius: 10px;
}

.rx-footer-items .rx-items-heading {
    margin-bottom: 20px;
    position: relative;
}
.rx-footer-items .rx-items-heading:after {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -7px;
    background-color: #ddd;
}
.rx-footer-items .rx-items-heading h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    margin: 0;
    position: relative;
}
.rx-footer-items .rx-items-contact ul li {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px 0 0px 12px;
    position: relative;
}
.rx-footer-items .rx-items-contact ul li:after {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #ddd;
}
.rx-footer-items .rx-items-contact ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    color: #c0c0c0;
    text-decoration: none;
    letter-spacing: 0.3px;


}
.rx-footer-items .rx-items-contact ul li:hover {
    padding-left: 18px;
}
.rx-footer-items .rx-items-contact ul li:hover a {
    color: #eb9000;
}
.rx-footer-items .rx-items-contact ul li:hover:after {
    background-color: #eb9000;
    width: 10px;
}

.rx-footer-other-info {
    margin-bottom: -20px;
}
.rx-footer-other-info .inner-info {
    margin-bottom: 20px;
}
.rx-footer-other-info .inner-info h5 {
    margin-bottom: 12px;
    font-size: x-large;
    font-weight: 500;
    line-height: 1.3;
    color: #f8f8f8;
}
.rx-footer-other-info .inner-info p,
.rx-footer-other-info .inner-info a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: large;
    line-height: 20px;
    font-weight: 300;
    color: #cbcbcb;
    text-decoration: none;
}
.rx-footer-other-info .inner-info p:hover,
.rx-footer-other-info .inner-info a:hover {
    text-decoration: none;
}
.rx-footer-other-info .inner-info a:hover {
    text-decoration: underline;
    color: #eb9000;
}

.rx-footer-copy {
    background: #7945004f;

}

.rx-footer-inner-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;


}
.rx-footer-inner-contact .rx-footer-left-side-contact p {
    font-size: large;
    font-weight: 500;
    color: #bbb;
}
.rx-footer-inner-contact .rx-footer-left-side-contact p a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: large;
    font-weight: 500;
    color: #bbb;
}
.rx-footer-inner-contact .rx-footer-left-side-contact p a:hover {
    color: #eb9000;
}
.rx-footer-inner-contact .rx-footer-last-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
}
.rx-footer-inner-contact .rx-footer-last-logo .rx-inner-footer-logo {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 30px;
    width: 30px;
    margin: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* border: 1px solid #ffff; */
    background: #eb9000;
    border-radius: 5px;
}
.rx-footer-inner-contact .rx-footer-last-logo .rx-inner-footer-logo i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    color: #ffff;
}
.rx-footer-inner-contact .rx-footer-last-logo .rx-inner-footer-logo:hover {
    border-color: #684e01;
    background-color: white;
    color: #eb9000;
}
.rx-footer-inner-contact .rx-footer-last-logo .rx-inner-footer-logo:hover i {
    color: #eb9000;
}

/* Enhanced right-side social icons styling */
.rx-footer-right-side-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.rx-footer-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 1rem;
}

.rx-footer-social-icons .rx-inner-footer-logo {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #eb9000 0%, #ff9224 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(235, 144, 0, 0.2);
}

.rx-footer-social-icons .rx-inner-footer-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.rx-footer-social-icons .rx-inner-footer-logo:hover::before {
    left: 100%;
}

.rx-footer-social-icons .rx-inner-footer-logo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(235, 144, 0, 0.4);
    background: linear-gradient(135deg, #ff9224 0%, #eb9000 100%);
}

.rx-footer-social-icons .rx-inner-footer-logo i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.rx-footer-social-icons .rx-inner-footer-logo:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
}

.rx-footer-inner-contact .rx-footer-center-side-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}

.rx-footer-inner-contact .rx-footer-center-side-contact p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    margin: 0;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.6;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.rx-footer-inner-contact .rx-footer-center-side-contact p:hover {
    color: #ffffff;
}

.rx-footer-inner-contact .rx-footer-center-side-contact p a {
    color: #eb9000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.rx-footer-inner-contact .rx-footer-center-side-contact p a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eb9000 0%, #ff9224 100%);
    transition: width 0.3s ease;
}

.rx-footer-inner-contact .rx-footer-center-side-contact p a:hover {
    color: #ff9224;
    text-decoration: none;
}

.rx-footer-inner-contact .rx-footer-center-side-contact p a:hover::after {
    width: 100%;
}


/* Responsive */
@media screen and(max-width: 1399px) {
    .rx-social-media .rx-social-logo .inner-logo img {
        width: 120px;
    }
}
@media screen and(max-width: 1199px) {
    .rx-social-media .rx-social-logo .inner-logo img {
        width: 100px;
    }
}
@media(max-width: 991px) {


    .rx-footer-other-info .inner-info h5 {
        margin-bottom: 6px;
    }
    .footer-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .footer-order-2 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .footer-order-3 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .footer-order-4 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .footer-order-5 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
@media screen and(max-width: 575px) {
    .footer-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .footer-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .footer-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .footer-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .footer-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
}

/* Modal - Improved Design and UI */
.rx-modal .modal-content {
    padding: 32px 28px 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(41, 41, 41, 0.18), 0 1.5px 6px 0 rgba(185, 142, 64, 0.08);
    border: none;
    position: relative;
    transition: box-shadow 0.2s;
    max-width: 80vh;
}

.rx-modal .modal-content:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: 0 0 0 2px #eb9000 inset;
    opacity: 0.07;
}

.rx-modal .modal-body {
    padding: 0 0 10px;
}

.rx-modal .qty-close {
    border: none;
    background: #fff;
    position: absolute;
    right: 18px;
    top: 18px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px 0 rgba(185, 142, 64, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.rx-modal .qty-close:hover {
    background: #ffe7c2;
}
.rx-modal .qty-close i {
    font-size: 22px;
    font-weight: 700;
    color: #eb9000;
    transition: color 0.2s;
}
.rx-modal .qty-close:hover i {
    color: #eb9000;
}

.rx-modal .sub-title {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
}
.rx-modal .sub-title h4 {
    font-size: 26px;
    font-weight: 700;
    color: #eb900e;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;


    margin: 0;
    text-align: center;
    text-shadow: 0 1px 0 #fff, 0 2px 8px #f5e2c2;
}

.rx-modal .rx-booking-from {
    padding: 10px 0 0;
}
.rx-modal .rx-booking-from .rx-inner-input {
    margin-bottom: 18px;
    position: relative;
}
.rx-modal .rx-booking-from .rx-inner-input label {
    font-size: 1.08rem;
    font-weight: bolder;
    color: #242424;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.5px;
}
.rx-modal .rx-booking-from .rx-inner-input input,
.rx-modal .rx-booking-from .rx-inner-input select,
.rx-modal .rx-booking-from .rx-inner-input textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    color: #222;
    background: #faf8f6;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: none;
    margin-top: 2px;
    font-family: "Poppins", sans-serif;
}
.rx-modal .rx-booking-from .rx-inner-input input:focus,
.rx-modal .rx-booking-from .rx-inner-input select:focus,
.rx-modal .rx-booking-from .rx-inner-input textarea:focus {
    border-color: #eb9000;
    box-shadow: 0 0 0 2px #ffe7c2;
    background: #fff;
}
.rx-modal .rx-booking-from .rx-inner-input textarea {
    min-height: 80px;
    resize: vertical;
}

.rx-modal .rx-booking-from .rx-inner-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}
.rx-modal .rx-booking-from .rx-inner-button .rx-btn-two,
.rx-modal .rx-booking-from .rx-inner-button button[type="submit"] {
    background: linear-gradient(90deg, #eb7600 0%, #eb9000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 12px 36px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(185, 142, 64, 0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.rx-modal .rx-booking-from .rx-inner-button .rx-btn-two:hover,
.rx-modal .rx-booking-from .rx-inner-button button[type="submit"]:hover {
    background: linear-gradient(90deg, #eb9000 0%, #eb9000 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(185, 142, 64, 0.18);
}

/* Responsive Modal */
@media(max-width: 575px) {
    .rx-modal .modal-content {
        padding: 18px 6px;
        border-radius: 12px;
    }
    .rx-modal .qty-close {
        right: 8px;
        top: 8px;
        width: 32px;
        height: 32px;
    }
    .rx-modal .sub-title h4 {
        font-size: 20px;
    }
    .rx-modal .rx-booking-from .rx-inner-button .rx-btn-two,
    .rx-modal .rx-booking-from .rx-inner-button button[type="submit"] {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

/* tools-sidebar */
.rx-tools-sidebar-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 41;
}

.rx-tools-sidebar {
    width: 300px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 42;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
}
.rx-tools-sidebar .rx-tools-sidebar-toggle {
    position: absolute;
    top: 45%;
    right: 302px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 25px;
    z-index: -1;
    text-decoration: none;
    border-radius: 5px;
}
.rx-tools-sidebar .rx-tools-sidebar-toggle i {
    font-size: 20px;
    color: #fff;
}
.rx-tools-sidebar .rx-inner-tools-sidebar {
    height: 100%;
    overflow: auto;
}
.rx-tools-sidebar .rx-inner-tools-sidebar::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    padding: 5px;
}
.rx-tools-sidebar .rx-inner-tools-sidebar::-webkit-scrollbar-track {
    width: 12px;
    background-color: #131618;
    -webkit-box-shadow: inset 0 0 0 #000;
}
.rx-tools-sidebar .rx-inner-tools-sidebar::-webkit-scrollbar-thumb {
    background-color: #eb9000;
    border-radius: 20px;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-bar-title {
    margin-bottom: 15px;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-bar-title h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #000;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-bar-title .close-tools {
    color: #ff0000;
    font-size: 17px;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail {
    padding: 0 15px 15px;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block h3 {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block p {
    margin: 0;
    text-transform: capitalize;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-color {
    margin: 0;
    padding: 0;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-color li {
    display: inline-block;
    height: 35px;
    width: 35px;
    margin: 6px;
    border-radius: 5px;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .rx-tools-item,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .rx-tools-item,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .rx-tools-item,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .rx-tools-item,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .rx-tools-item {
    width: 125px;
    margin-bottom: 10px;
    text-align: center;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .rx-tools-item img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .rx-tools-item img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .rx-tools-item img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .rx-tools-item img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .rx-tools-item img {
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .rx-tools-item img:hover,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .rx-tools-item img:hover,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .rx-tools-item img:hover,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .rx-tools-item img:hover,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .rx-tools-item img:hover {
    border: 1px solid #eb9000;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-dark-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-skin,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-box,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-bg,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-dark-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-skin,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-box,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-bg,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-dark-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-skin,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-box,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-bg,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-dark-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-skin,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-box,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-bg,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-dark-mode,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-skin,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-box,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-bg {
    position: relative;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-dark-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-skin:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-box:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-bg:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-dark-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-skin:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-box:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-bg:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-dark-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-skin:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-box:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-bg:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-dark-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-skin:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-box:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-bg:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-dark-mode:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-skin:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-box:after,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-bg:after {
    content: "\eb79";
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-family: "remixicon" !important;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-dark-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-skin img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-box img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-rtl .active-bg img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-dark-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-skin img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-box img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-dark .active-bg img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-dark-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-skin img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-box img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-skin .active-bg img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-dark-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-skin img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-box img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-box .active-bg img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-dark-mode img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-skin img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-box img,
.rx-tools-sidebar .rx-inner-tools-sidebar .rx-tools-detail .rx-tools-block .rx-tools-bg .active-bg img {
    border-color: #eb9000;
}

.active-color {
    position: relative;
}
.active-color:after {
    font-family: "remixicon" !important;
    content: "\eb79";
    height: 35px;
    width: 35px;
    font-size: 18px;
    position: absolute;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.color-primary {
    background: #eb9000;
}

.color-1 {
    background: #8118d5;
}

.color-2 {
    background: #5f6af5;
}

.color-3 {
    background: #f5885f;
}

.color-4 {
    background: #32dbe2;
}

.color-5 {
    background: #3f51b5;
}

.color-6 {
    background: #f44336;
}

.color-7 {
    background: #e91e63;
}

.color-8 {
    background: #607d8b;
}

.color-9 {
    background: #03492f;
}

.open-tools {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* Layouts ( Import Layouts ) */
/*  Hero */
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: #eb9000;
    width: 10px;
    height: 10px;
}

.slick-slider {
    margin-bottom: 0;
}

.rx-slide {
    position: relative;
}
.rx-slide:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.85) 100%);
}
.rx-slide:after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-hero {
    overflow: hidden;
}
.section-hero button.slick-next {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 2;
}
.section-hero button.slick-prev {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 2;
}
.section-hero button.slick-prev,
.section-hero button.slick-next {
    border: 0;
    background: none;
    font-size: 0 !important;
}
.section-hero button.slick-prev .prev-slick-arrow,
.section-hero button.slick-prev .next-slick-arrow,
.section-hero button.slick-next .prev-slick-arrow,
.section-hero button.slick-next .next-slick-arrow {
    display: none !important;
    font-size: 0 !important;
}

.prev-slick-img {
    position: absolute;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 5;
}
.prev-slick-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.next-slick-img {
    position: absolute;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 2px solid #fff;
    border-radius: 50%;
}
.next-slick-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.rx-slider .rx-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}
.rx-slider .slide-1 {
    background-image: url("../img/hero/slider1-new.webp");
}
.rx-slider .slide-2 {
    background-image: url("../img/hero/slider2-new.webp");
}
.rx-slider .slide-3 {
    background-image: url("../img/hero/slider3-new.webp");
}

.rx-slide .banner-arrow-img {
    display: none;
}

/*-----  Slider Style  -----*/
.section-hero .rx-hero-contact {
    padding: 50px 0;
    position: relative;
    z-index: 3;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.section-hero .rx-hero-contact .inner-contact {
    max-width: 600px;
}
.section-hero .rx-hero-contact .inner-contact p {
    margin-bottom: 12px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.section-hero .rx-hero-contact .inner-contact h2 {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}
.section-hero .rx-hero-contact .inner-contact h2 span {
    color: #eb9000;
}
.section-hero .rx-hero-contact .inner-contact .booking-now {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-hero .rx-hero-contact .inner-contact .booking-now:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.section-hero .rx-hero-contact .inner-contact .booking-now .ico {
    position: relative;
    height: 45px;
    width: 45px;
    margin-right: 15px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(235, 144, 0, 0.3);
    transition: all 0.3s ease;
}

.section-hero .rx-hero-contact .inner-contact .booking-now:hover .ico {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(235, 144, 0, 0.5);
}
.section-hero .rx-hero-contact .inner-contact .booking-now .ico i {
    font-size: 22px;
    color: #fff;
}
.section-hero .rx-hero-contact .inner-contact .booking-now .booking-text {
    text-align: left;
}
.section-hero .rx-hero-contact .inner-contact .booking-now .booking-text p {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    opacity: 0.9;
}
.section-hero .rx-hero-contact .inner-contact .booking-now .booking-text span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.section-hero .slider-animation > * {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
    opacity: 0;
    transform: translateY(30px);
}
.section-hero:root {
    --transition: 0.75s cubic-bezier(0.255, 0.67, 0, 1.01);
}
.section-hero .rx-slide {
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
    transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
    transition: transform var(--transition), box-shadow var(--transition);
    transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}
.section-hero .slick-active .slider-animation > * {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.section-hero .slick-active .slider-animation > *:nth-child(1) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.section-hero .slick-active .slider-animation > *:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.section-hero .slick-active .slider-animation > *:nth-child(3) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* Enhanced Hero Background Effects */
.section-hero .rx-slide:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 200px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
}

.section-hero .rx-slide:after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(30%, rgba(0, 0, 0, 0.4)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
}

/* Clean Hero Section - No Black Shadow Overlays */
.section-hero .rx-hero-contact {
    position: relative;
    z-index: 2;
}

/* Hero Badge Styling */
.section-hero .hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.section-hero .hero-badge .badge-text {
    background: linear-gradient(45deg, #eb9000, #ffb347);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(235, 144, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* .section-hero .hero-badge .badge-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
} */

.section-hero .hero-badge:hover .badge-text:before {
    left: 100%;
}

/* Enhanced H1 Styling with Maximum Contrast */
.section-hero .rx-hero-contact .inner-contact h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,1);
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.02em;
    text-align: left;
}

.section-hero .rx-hero-contact .inner-contact h1 span {
    color: #ff9500;
    background: linear-gradient(45deg, #ff9500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.7));
}

/* Hero Subtitle Styling */
.section-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

/* Hero Features Styling */
.section-hero .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
    align-items: center;
}

.section-hero .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section-hero .hero-features .feature-item:hover {
    background: rgba(235, 144, 0, 0.2);
    border-color: rgba(235, 144, 0, 0.5);
    transform: translateY(-2px);
}


/* Perfect Text Alignment and Spacing */
.section-hero .rx-hero-contact .inner-contact {
    padding: 20px 0;
    text-align: left;
    max-width: 700px;
}

/* Enhanced Hero Subtitle with Perfect Contrast */
.section-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 650px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    letter-spacing: 0.02em;
}

/* Enhanced Feature Items with Better Spacing */
.section-hero .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.section-hero .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-hero .hero-features .feature-item:hover {
    background: rgba(255, 149, 0, 0.25);
    border-color: rgba(255, 149, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.2);
}

.section-hero .hero-features .feature-item i {
    font-size: 20px;
    color: #ff9500;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.section-hero .hero-features .feature-item span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

/* Premium Badge Enhanced */
.section-hero .hero-badge .badge-text {
    background: linear-gradient(45deg, #ff9500, #ffb347);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Perfect Booking Button */
.section-hero .rx-hero-contact .inner-contact .booking-now {
    background: linear-gradient(45deg, #ff9500, #ffb347);
    border-radius: 50px;
    padding: 18px 30px;
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.4);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.section-hero .rx-hero-contact .inner-contact .booking-now:hover {
    background: linear-gradient(45deg, #ffb347, #ff9500);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.5);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-hero .rx-hero-contact .inner-contact .booking-now .booking-text p {
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.section-hero .rx-hero-contact .inner-contact .booking-now .booking-text span {
    font-weight: 700;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.section-hero .hero-features .feature-item i {
    font-size: 18px;
    color: #eb9000;
}

.section-hero .hero-features .feature-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Enhanced Booking Button */
.section-hero .rx-hero-contact .inner-contact .booking-now {
    background: linear-gradient(45deg, #eb9000, #ffb347);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 8px 25px rgba(235, 144, 0, 0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-hero .rx-hero-contact .inner-contact .booking-now:hover {
    background: linear-gradient(45deg, #ffb347, #eb9000);
    box-shadow: 0 12px 35px rgba(235, 144, 0, 0.4);
    transform: translateY(-3px);
}


/* Responsive */
@media screen and(max-width: 1199px) {
    .section-hero .rx-hero-contact .inner-contact h2 {
        font-size: 42px;
        line-height: 1.2;
    }
    .rx-slider .rx-slide {
        height: 90vh;
    }
}
@media screen and(max-width: 991px) {
    .rx-slider .rx-slide {
        height: 80vh;
    }
    .section-hero .rx-slide:after {
        height: 50vh;
    }
    .section-hero .rx-hero-contact .inner-contact {
        margin: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center !important;
    }
    .section-hero .rx-hero-contact .inner-contact h2 {
        font-size: 38px;
        line-height: 1.2;
    }
    .section-hero .rx-hero-contact .inner-contact p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
@media screen and(max-width: 767px) {
    .rx-slider .rx-slide {
        height: 70vh;
    }
    .section-hero .rx-hero-contact .inner-contact {
        max-width: 100%;
        padding: 0 20px;
    }
    .section-hero .rx-hero-contact .inner-contact h2 {
        font-size: 34px;
        line-height: 1.2;
    }
    .section-hero .rx-hero-contact .inner-contact p {
        font-size: 15px;
        margin-bottom: 15px;
    }
}
@media screen and(max-width: 575px) {
    .section-hero .rx-hero-contact .inner-contact h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .section-hero .rx-hero-contact .inner-contact p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .section-hero .inner-contact p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .section-hero .inner-contact h2 {
        font-size: 30px;
    }
    .rx-slider .rx-slide {
        height: 65vh;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now {
        padding: 6px 12px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now .ico {
        height: 40px;

/* Perfect Responsive Design for All Devices */
@media screen and(max-width: 1199px) {
    .section-hero .rx-hero-contact .inner-contact h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
    .section-hero .hero-subtitle {
        font-size: 1.2rem;
        max-width: 550px;
    }
    .section-hero .hero-features {
        gap: 18px;
    }
    .section-hero .hero-features .feature-item {
        padding: 12px 18px;
    }
    .section-hero .rx-hero-contact .inner-contact {
        max-width: 650px;
    }
}

@media screen and(max-width: 991px) {
    .section-hero .rx-hero-contact .inner-contact {
        text-align: center;
        max-width: 100%;
        padding: 15px 0;
    }
    .section-hero .rx-hero-contact .inner-contact h1 {
        font-size: 2.7rem;
        text-align: center;
        line-height: 1.2;
    }
    .section-hero .hero-subtitle {
        font-size: 1.15rem;
        text-align: center;
        margin: 0 auto 30px auto;
        max-width: 500px;
    }
    .section-hero .hero-features {
        justify-content: center;
        gap: 15px;
        margin-bottom: 35px;
    }
    .section-hero .hero-badge {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media screen and(max-width: 767px) {
    .section-hero .rx-hero-contact .inner-contact h1 {
        font-size: 2.3rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }
    .section-hero .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
        max-width: 450px;
    }
    .section-hero .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    .section-hero .hero-features .feature-item {
        padding: 10px 16px;
        min-width: 220px;
        justify-content: center;
    }
    .section-hero .hero-badge .badge-text {
        font-size: 13px;
        padding: 8px 18px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now {
        padding: 16px 28px;
    }
}

@media screen and(max-width: 575px) {
    .section-hero .rx-hero-contact .inner-contact h1 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 18px;
    }
    .section-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: 350px;
    }
    .section-hero .hero-features .feature-item {
        padding: 8px 14px;
        min-width: 200px;
    }
    .section-hero .hero-features .feature-item i {
        font-size: 18px;
    }
    .section-hero .hero-features .feature-item span {
        font-size: 14px;
    }
    .section-hero .hero-badge .badge-text {
        font-size: 12px;
        padding: 7px 16px;
    }

/* Final Professional Polish and Smooth Transitions */
.section-hero * {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Animation Keyframes */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 149, 0, 0.6);
    }
}

/* Apply Animations to Elements */
.section-hero .hero-badge {
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.section-hero .rx-hero-contact .inner-contact h1 {
    animation: heroSlideIn 1.2s ease-out 0.5s both;
}

.section-hero .hero-subtitle {
    animation: heroFadeIn 1s ease-out 0.7s both;
}

.section-hero .hero-features {
    animation: heroFadeIn 1s ease-out 0.9s both;
}

.section-hero .booking-now {
    animation: heroFadeIn 1s ease-out 1.1s both;
}

.section-hero .hero-badge .badge-text {
    animation: badgeGlow 3s ease-in-out infinite;
}

/* Perfect Professional Shadows and Depth */
.section-hero .rx-slide {
    position: relative;
    overflow: hidden;
}

.section-hero .rx-slide img {
    transition: transform 8s ease-in-out;
}

.section-hero .rx-slide:hover img {
    transform: scale(1.02);
}

/* Enhanced Focus States for Accessibility */
.section-hero .booking-now:focus {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.section-hero .hero-features .feature-item:focus {
    outline: 2px solid rgba(255, 149, 0, 0.6);
    outline-offset: 2px;
}

/* Perfect Loading State */
.section-hero.loading * {
    opacity: 0;
    transform: translateY(20px);
}

/* Ultra-smooth Hover States */
.section-hero .booking-now:hover {
    animation: none;
}

.section-hero .hero-features .feature-item:hover {
    animation: none;
}

/* Final Typography Polish */
.section-hero .rx-hero-contact .inner-contact h1 {
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-hero .hero-subtitle {
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Perfect Brand Consistency */
.section-hero .hero-features .feature-item i,
.section-hero .hero-badge .badge-text,
.section-hero .booking-now {
    color: #ffffff;
}

.section-hero .hero-features .feature-item i {
    color: #ff9500 !important;
}

/* Ultimate Performance Optimization */
.section-hero .rx-slide::before,
.section-hero .rx-slide::after {
    will-change: opacity;
}

.section-hero .hero-features .feature-item {
    will-change: transform, box-shadow;
}

.section-hero .booking-now {
    will-change: transform, box-shadow;
}

/* Final Mobile Optimization */
@media (max-width: 480px) {
    .section-hero .rx-hero-contact {
        padding: 30px 0;
    }

    .section-hero .rx-hero-contact .inner-contact {
        padding: 10px 15px;
    }
}

    .section-hero .rx-hero-contact .inner-contact .booking-now {
        padding: 14px 24px;
    }
}

@media screen and(max-width: 420px) {
    .section-hero .rx-hero-contact .inner-contact h1 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    .section-hero .hero-subtitle {
        font-size: 0.95rem;
        max-width: 300px;
    }
    .section-hero .hero-features .feature-item {
        min-width: 180px;
        padding: 6px 12px;
    }
    .section-hero .hero-features .feature-item i {
        font-size: 16px;
    }
    .section-hero .hero-features .feature-item span {
        font-size: 13px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now {
        padding: 12px 20px;
    }
}

@media screen and(max-width: 380px) {
    .section-hero .rx-hero-contact .inner-contact h1 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .section-hero .hero-subtitle {
        font-size: 0.9rem;
        max-width: 280px;
        margin-bottom: 15px;
    }
    .section-hero .hero-features .feature-item {
        min-width: 160px;
        padding: 5px 10px;
    }
    .section-hero .hero-badge .badge-text {
        font-size: 11px;
        padding: 6px 14px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now {
        padding: 10px 18px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now .booking-text p {
        font-size: 14px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now .booking-text span {
        font-size: 16px;
    }
}

        width: 40px;
        margin-right: 12px;
    }
}
@media screen and(max-width: 420px) {
    .section-hero .rx-hero-contact .inner-contact h2 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .section-hero .rx-hero-contact .inner-contact p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now .booking-text span {
        font-size: 16px;
    }
    .section-hero .rx-hero-contact .inner-contact .booking-now {
        padding: 5px 10px;
    }
}
@media screen and(max-width: 380px) {
    .section-hero .rx-hero-contact .inner-contact h2 {
        font-weight: 600;
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .section-hero .rx-hero-contact .inner-contact p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}
/* Extra services */
.extra-services-img {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.extra-services-img img {
    width: 100%;
    border-radius: 200px;
}

.extra-services-contact {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}
.extra-services-contact .extra-services-absolute-contact {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: 0;
}
.extra-services-contact .extra-services-absolute-contact p {
    font-family: "Poppins", sans-serif;
    font-size: 120px;
    line-height: 85px;
    color: rgba(0, 0, 0, 0.03);
    font-weight: bold;
}
.extra-services-contact .rx-services-price {
    width: 33.33%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.extra-services-contact .rx-services-price h2 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 12px;
    font-size: 57px;
    color: #eb9000;
    font-weight: 700;
    line-height: 1;
    opacity: 0.2;
}
.extra-services-contact .rx-services-price h2 span {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #131618;
}
.extra-services-contact .rx-services-price p {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.extra-services-contact .rx-services-inner-contact {
    width: 33.33%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.extra-services-contact .rx-services-inner-contact ul {
    margin-bottom: -6px;
}
.extra-services-contact .rx-services-inner-contact ul li {
    margin-bottom: 6px;
    font-size: large;
    line-height: 22px;
    font-weight: 400;
    color: #555555;
}
.extra-services-contact .rx-services-ico {
    width: 33.33%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.extra-services-contact .rx-services-ico .ico {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 40px;
    width: 40px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50%;
}
.extra-services-contact .rx-services-ico .ico:hover {
    background-color: #eb9000;
}
.extra-services-contact .rx-services-ico .ico:hover i {
    color: #fff;
}
.extra-services-contact .rx-services-ico .ico i {
    font-size: 18px;
}
.extra-services-contact:hover {
    border-color: #000;
}
.extra-services-contact:hover .extra-services-absolute-contact {
    opacity: 0;
}
.extra-services-contact:hover .rx-services-ico .ico {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.extra-services-contact:hover .rx-services-price h2 {
    opacity: 1;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .extra-services-contact .rx-services-price {
        width: 30%;
    }
    .extra-services-contact .rx-services-inner-contact {
        width: 40%;
    }
    .extra-services-contact .rx-services-ico {
        width: 30%;
    }
    .extra-services-contact .extra-services-absolute-contact p {
        font-size: 85px;
        line-height: 58px;
    }
}
@media screen and(max-width: 1199px) {
    .extra-services-contact .extra-services-absolute-contact p {
        font-size: 70px;
        line-height: 48px;
    }
    .extra-services-contact .rx-services-price {
        width: 30%;
    }
    .extra-services-contact .rx-services-inner-contact {
        width: 50%;
    }
    .extra-services-contact .rx-services-ico {
        width: 20%;
    }
    .extra-services-contact .rx-services-price h2 {
        font-size: 38px;
    }
    .extra-services-contact .rx-services-price p {
        font-size: 16px;
    }
}
@media screen and(max-width: 991px) {
    .extra-services-contact {
        padding: 20px 0;
    }
    .extra-services-contact .rx-services-price {
        width: 80%;
    }
    .extra-services-contact .rx-services-inner-contact {
        width: 0;
    }
    .extra-services-contact .rx-services-ico {
        width: 20%;
    }
    .extra-services-contact .rx-services-inner-contact {
        display: none;
    }
}
@media screen and(max-width: 767px) {
    .extra-services-contact .extra-services-absolute-contact p {
        font-size: 50px;
        line-height: 33px;
    }
}
/* Testimonials */
.rx-testimonials-slider {
    max-width: 900px;
    margin: auto;
}

.rx-testimonials-img img {
    width: 100%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.rx-testimonials-contact {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.rx-testimonials-contact .rx-inner-banner {
    margin-bottom: 30px;
}
.rx-testimonials-contact .rx-inner-banner h4 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #000;
    font-weight: 700;
}
.rx-testimonials-contact .rx-inner-banner span {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
.rx-testimonials-contact .inner-contact {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px;
}

/* Responsive */
@media screen and(max-width: 991px) {
    .rx-testimonials-contact .inner-contact p {
        font-weight: 400;
        font-size: 14px;
    }
}
@media screen and(max-width: 767px) {
    .rx-testimonials-contact {
        text-align: center;
    }
    .rx-testimonials-contact .rx-inner-banner {
        margin-bottom: 15px;
    }
    .rx-testimonials-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .rx-testimonials-img img {
        width: 100px !important;
    }
}
/* Menu */
.rx-menu-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.rx-menu-tabs ul.nav-tabs {
    margin: -5px;
    border: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-menu-tabs ul.nav-tabs li {
    margin: 5px;
}
.rx-menu-tabs ul.nav-tabs li button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border: 1px solid #000;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    color: #000;
}
.rx-menu-tabs ul.nav-tabs li button:hover {
    border-color: #eb9000;
    color: #eb9000;
}
.rx-menu-tabs ul.nav-tabs li button.active {
    border-color: #eb9000;
    color: #eb9000;
}

.rx-menu-tabs-contact {
    margin-bottom: -24px;
}
.rx-menu-tabs-contact .active-menu {
    border-color: #eb9000 !important;
}
.rx-menu-tabs-contact .active-menu .rx-side-menu-image {
    opacity: 1;
    z-index: 10;
}
.rx-menu-tabs-contact .inner-menu {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.rx-menu-tabs-contact .inner-menu:hover {
    border-color: #eb9000;
}
.rx-menu-tabs-contact .inner-menu:hover .sub-prices h4 {
    opacity: 1;
}
.rx-menu-tabs-contact .inner-menu .sub-contact h5 {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.rx-menu-tabs-contact .inner-menu .sub-contact p {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
}
.rx-menu-tabs-contact .inner-menu .sub-prices h4 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    font-weight: 600;
    color: #957243;
    opacity: 0.5;
}
.rx-menu-tabs-contact .active-menu .sub-prices h4 {
    opacity: 1;
}

.rx-relative {
    position: relative;
}

.rx-side-menu-image {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    width: calc(50% - 12px);
    padding: 0 12px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}
.rx-side-menu-image .inner-img img {
    width: 100%;
}
.rx-side-menu-image .radius-one img {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 30px;
}
.rx-side-menu-image .radius-two img {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    border-bottom-left-radius: 30px;
}
.rx-side-menu-image .radius-three img {
    border-top-left-radius: 200px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
}
.rx-side-menu-image .radius-four img {
    border-top-right-radius: 200px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .rx-menu-tabs-contact .inner-menu {
        padding: 20px 0;
    }
    .rx-menu-tabs-contact .inner-menu .sub-contact h5 {
        font-size: 16px;
    }
    .rx-menu-tabs-contact .inner-menu .sub-contact p {
        font-size: large;
        line-height: 20px;
    }
}
@media screen and(max-width: 1199px) {
    .rx-menu-tabs-contact .inner-menu {
        padding: 15px 0;
    }
}
@media screen and(max-width: 991px) {
    .rx-menu-tabs-contact .inner-menu {
        position: relative;
    }
    .rx-menu-tabs-contact .inner-menu .sub-contact h5 {
        font-size: 20px;
    }
    .sub-prices {
        padding: 0 15px;
    }
    .rx-side-menu-image {
        position: relative;
        width: 160px;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        opacity: 1;
    }
    .rx-side-menu-image .radius-one img {
        width: 50px;
        border-radius: 30px;
    }
}
@media screen and(max-width: 767px) {
    .rx-side-menu-image {
        width: 100px;
    }
}
@media screen and(max-width: 575px) {
    .rx-side-menu-image {
        display: none;
    }
    .rx-menu-tabs-contact .inner-menu {
        padding: 15px 0;
    }
    .rx-menu-tabs-contact .inner-menu .sub-contact h5 {
        font-size: 16px;
    }
}
/* Book */
.rx-book-from {
    margin-bottom: 30px;
}
.rx-book-from .rx-input-box label {
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
.rx-book-from .rx-input-box .rx-from-control {
    border-radius: 30px;
}

.rx-booking-last-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-booking-last-contact p {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}
.rx-booking-last-contact .booking-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Pages ( Import Pages ) */
/* about */
.rx-about-img {
    position: relative;
}
.rx-about-img img {
    width: 100%;
    border-radius: 15px;
}
.rx-about-img .rx-rounded-circle {
    z-index: 1;
    height: 100px;
    width: 100px;
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.rx-about-contact {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-about-contact .inner-contact p {
    margin-bottom: 16px;
    font-size: large;
    font-weight: 400;
    color: #555555;
}
.rx-about-contact .inner-contact .rx-about-inner-box {
    margin-top: 30px;
}
.rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 20px;
}
.rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box h5 {
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    color: #000;
    font-weight: 600;
    line-height: 0.65;
}
.rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box p {
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #555555;
    letter-spacing: 2px;
    line-height: 1.2;
}

@-webkit-keyframes rotateText {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotateText {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
.rx-rounded-circle:hover svg,
.rx-rounded-circle:hover img {
    -webkit-animation: rotateText 10s linear infinite;
    animation: rotateText 10s linear infinite;
}
.rx-rounded-circle a {
    position: relative;
}
.rx-rounded-circle .inner-contact {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-rounded-circle .inner-contact i {
    font-size: 24px;
    color: #fff;
}
.rx-rounded-circle svg,
.rx-rounded-circle img {
    fill: currentColor;
    height: auto;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 100%;
}
.rx-rounded-circle svg text textPath,
.rx-rounded-circle img text textPath {
    font-size: 12px;
    color: #fff;
    letter-spacing: 1.5px;
}
.rx-rounded-circle h5 {
    font-size: 10px;
    color: #fff;
}

.rx-about-page-contact {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-about-page-contact .inner-about-contact p {
    margin-bottom: 16px;
}
.rx-about-page-contact .items-details h5 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.rx-about-page-contact .items-details p {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #555555;
}
.rx-about-page-contact .items-details .rx-dark-img {
    display: none;
}
.rx-about-page-contact .items-details img {
    width: 100px;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .rx-about-img .rx-rounded-circle {
        top: 15px;
        right: 15px;
    }
    .rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box h5 {
        font-size: 32px;
    }
    .rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box p {
        font-size: 15px;
    }
}
@media screen and(max-width: 1199px) {
    .rx-about-contact .inner-contact p {
        font-size: 15px;
    }
    .rx-about-contact .inner-contact .rx-about-inner-box {
        margin-top: 20px;
    }
    .rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box h5 {
        margin-bottom: 8px;
        font-size: 28px;
    }
    .rx-about-contact .inner-contact .rx-about-inner-box .rx-about-box p {
        font-size: 14px;
    }
}
@media screen and(max-width: 575px) {
    .rx-about-inner-box .row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .rx-about-inner-box .mt-24 {
        margin-top: 0;
    }
    .rx-about-img .rx-rounded-circle {
        top: 0;
        right: 0;
    }
}
@media screen and(max-width: 380px) {
    .rx-about-img .rx-rounded-circle {
        height: 80px;
        width: 80px;
    }
}
/* services */
.rx-services {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f5f5f5;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 20px;
    height: 100%;
}
.rx-services:hover {
    border: 1px solid #131618;
}
.rx-services:hover .services-ico svg,
.rx-services:hover .services-ico img {
    -webkit-animation-name: wobble;
    animation-name: wobble;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-transform-origin: 50% 100%;
}
.rx-services .services-ico {
    margin-bottom: 20px;
}
.rx-services .services-ico svg,
.rx-services .services-ico img {
    height: 50px;
    width: 50px;
}

.rx-services .services-ico img {
    filter: hue-rotate(68deg) saturate(100);
}
.rx-services .services-ico svg path,
.rx-services .services-ico img path {
    stroke: #eb9000;
    fill: #eb9000;
}
.rx-services .services-contact h5 {
    margin-bottom: 12px;
    font-size: x-large;
    color: #000;
    line-height: 1.2;
}
.rx-services .services-contact ul li {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #555555;
}

@-webkit-keyframes wobble {
    0% {
        transform: none;
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        transform: none;
    }
}

@keyframes wobble {
    0% {
        transform: none;
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        transform: none;
    }
}
/* Responsive */
@media screen and(max-width: 767px) {
    .rx-services .services-contact h5 {
        font-size: 18px;
    }
    .rx-services .services-contact ul li {
        font-size: large;
    }
}
@media screen and(max-width: 575px) {
    .rx-services {
        padding: 20px;
    }
}
/* Rooms */
.rx-rooms-box {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.rx-rooms-box .rx-rooms-img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3), -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
}
.rx-rooms-box .rx-rooms-img img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}
.rx-rooms-box .rx-rooms-img .inner-contact {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
}
.rx-rooms-box .rx-rooms-img .inner-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.rx-rooms-box .rx-rooms-back-side {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3), -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    border-radius: 20px;
    overflow: hidden;
}
.rx-rooms-box .rx-rooms-back-side:after {
    content: "";
    background-color: rgba(245, 245, 245, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
}
.rx-rooms-box .rx-rooms-back-side img {
    position: absolute;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    margin: 30px;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 20px;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    margin: 30px;
    border: 1px solid #131618;
    border-radius: 20px;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .rx-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .rx-price span {
    padding: 8px 18px;
    background-color: #131618;
    line-height: 20px;
    font-size: 15px;
    color: #fff;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .sub-inner-contact {
    height: calc(100% - 75px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .sub-inner-contact h5 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
    color: #000;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .sub-inner-contact ul li {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .last-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .last-contact .inner-button {
    background-color: #131618;
    color: #fff;
    padding: 6px 14px;
    font-size: 14px;
}
.rx-rooms-box .rx-rooms-back-side .inner-back-side .last-contact .inner-button i {
    font-size: 16px;
}
.rx-rooms-box:hover .rx-rooms-img {
    z-index: 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.rx-rooms-box:hover .rx-rooms-img img {
    padding: 30px;
}
.rx-rooms-box:hover .rx-rooms-img .inner-contact {
    display: none;
}
.rx-rooms-box:hover .rx-rooms-back-side {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

/* Responsive */
@media screen and(max-width: 767px) {
    .rx-rooms-box .rx-rooms-back-side img {
        height: calc(100% - 30px);
        width: calc(100% - 30px);
        margin: 15px;
    }
    .rx-rooms-box .rx-rooms-back-side .inner-back-side {
        height: calc(100% - 30px);
        width: calc(100% - 30px);
        margin: 15px;
    }
    .rx-rooms-box .rx-rooms-back-side .inner-back-side .sub-inner-contact h5 {
        margin-bottom: 8px;
        font-size: 18px;
    }
    .rx-rooms-box .rx-rooms-back-side .inner-back-side .sub-inner-contact ul li {
        font-size: large;
        line-height: 20px;
    }
}
/* Room 2 */
.rx-rooms-box-2 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.rx-rooms-box-2:hover .inner-back-side {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.rx-rooms-box-2:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.rx-rooms-box-2 img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border-radius: 20px;
}
.rx-rooms-box-2 .inner-back-side {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-100% + 68px);
    height: 100%;
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
}
.rx-rooms-box-2 .inner-back-side .sub-title {
    width: 100%;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-rooms-box-2 .inner-back-side .sub-title h5 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.rx-rooms-box-2 .inner-back-side .sub-title .rx-price {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.rx-rooms-box-2 .inner-back-side .inner-info {
    margin-bottom: 30px;
}
.rx-rooms-box-2 .inner-back-side .inner-info ul li {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: #bbb;
}
.rx-rooms-box-2 .inner-back-side .rx-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.rx-rooms-box-2 .inner-back-side .rx-button a {
    padding: 4px 12px;
    font-size: 14px;
}

/* Responsive */
@media screen and(max-width: 1199px) {
    .rx-rooms-box-2 .inner-back-side .sub-title {
        margin-bottom: 15px;
    }
    .rx-rooms-box-2 .inner-back-side .sub-title h5 {
        font-size: 18px;
    }
    .rx-rooms-box-2 .inner-back-side .sub-title .rx-price {
        font-size: 14px;
    }
    .rx-rooms-box-2 .inner-back-side .inner-info {
        margin-bottom: 15px;
    }
    .rx-rooms-box-2 .inner-back-side .inner-info ul li {
        font-size: 14px;
    }
}
/* Rooms 3 */
.rx-rooms-main-box {
    position: relative;
    -webkit-perspective: 1000px;
}
.rx-rooms-main-box .rooms-box-front {
    text-align: center;
    z-index: 1;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3), -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    border-radius: 20px;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    background-color: transparent;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    position: relative;
}
.rx-rooms-main-box .rooms-box-front img {
    width: 100%;
    border-radius: 20px;
}
.rx-rooms-main-box .rooms-box-front .content-wrap {
    width: 100%;
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 50px) scale(0.9);
    transform: translate3d(0, 0, 50px) scale(0.9);
}
.rx-rooms-main-box .rooms-box-front .content-wrap .inner-contact {
    position: absolute;
    bottom: 55px;
    left: 30px;
    right: 30px;
    padding: 15px 0;
    text-align: center;
    background: linear-gradient(90deg, #eb90008e 0%, #eb76008e 50%, #eb4e4b8e 100%);
    border-radius: 30px;
    backdrop-filter: blur(9px);
}
.rx-rooms-main-box .rooms-box-front .content-wrap .inner-contact h4 {
    font-size: large;
    font-weight: 600;
    color: #fff;
}
.rx-rooms-main-box .rooms-box-back {
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3), -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    border-radius: 20px;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background-color: rgba(245, 245, 245, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-rooms-main-box .rooms-box-back img {
    position: absolute;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    margin: 30px;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 20px;
}
.rx-rooms-main-box .rooms-box-back .content-wrap {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 30px;
    -webkit-transform: translate3d(0, 0, 50px) scale(0.9);
    transform: translate3d(0, 0, 50px) scale(0.9);
}
.rx-rooms-main-box .rooms-box-back .content-wrap .box-overlay {
    content: "";
    background-color: rgba(245, 245, 245, 0.9);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    margin: 30px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #131618;
    border-radius: 20px;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .rx-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .rx-price span {
    padding: 8px 18px;
    background-color: #131618;
    line-height: 20px;
    font-size: 15px;
    color: #fff;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact {
    height: calc(100% - 75px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact h5 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
    color: #000;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact ul li {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .last-contact {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .last-contact .inner-button {
    background-color: #131618;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}
.rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .last-contact .inner-button i {
    font-size: 16px;
}
.rx-rooms-main-box:hover .rooms-box-front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.rx-rooms-main-box:hover .rooms-box-back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

/* Responsive */
@media screen and(max-width: 1199px) {
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact h5 {
        font-size: 18px;
    }
}
@media screen and(max-width: 767px) {
    .rx-rooms-main-box .rooms-box-back img {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        margin: 15px;
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap {
        padding: 15px;
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side {
        height: calc(100% - 30px);
        width: calc(100% - 30px);
        margin: 15px;
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .last-contact {
        height: auto;
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact {
        height: calc(100% - 65px);
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact h5 {
        margin-bottom: 5px;
        font-size: 17px;
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .sub-inner-contact ul li {
        font-size: large;
        line-height: 22px;
    }
    .rx-rooms-main-box .rooms-box-back .content-wrap .inner-back-side .rx-price span {
        padding: 5px 15px;
    }
}
/* Room-details */
.rx-room-details-sidebar {
    position: sticky;
    top: 60px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 30px;
}
.rx-room-details-sidebar .sub-title {
    padding: 30px;
    border-bottom: 1px solid #eee;
}
.rx-room-details-sidebar .sub-title h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.rx-room-details-sidebar .inner-room-details {
    padding: 30px;
    margin-bottom: -20px;
}
.rx-room-details-sidebar .inner-room-details .rx-room-details-from {
    margin-bottom: 20px;
}
.rx-room-details-sidebar .inner-room-details .rx-room-details-from label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from {
    margin-bottom: 20px;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .form-check {
    margin-bottom: 10px;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .form-check label {
    margin-top: 5px;
    font-size: large;
    font-weight: 400;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .form-check input {
    height: 10px;
    width: 10px;
    padding: 7px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .form-check input:checked {
    background-color: #eb9000;
    border-color: #eb9000;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .form-check .form-check-label {
    padding-left: 10px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #555555;
    cursor: pointer;
}
.rx-room-details-sidebar .inner-room-details .rx-side-from .rx-side-from-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rx-room-details-main-contact .rx-main-room {
    margin-bottom: 24px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 30px;
}
.rx-room-details-main-contact .rx-main-room .rx-room-details-image img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.rx-room-details-main-contact .rx-main-room .room-slider-nav {
    margin: 24px 12px;
}
.rx-room-details-main-contact .rx-main-room .rx-room-details-inner {
    margin: 0 12px;
}
.rx-room-details-main-contact .rx-main-room .rx-room-details-inner img {
    width: 100%;
    border-radius: 30px;
}
.rx-room-details-main-contact .rx-inner-details {
    padding: 30px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 30px;
}
.rx-room-details-main-contact .rx-inner-details .rx-title {
    margin-bottom: 24px;
}
.rx-room-details-main-contact .rx-inner-details .rx-title h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.rx-room-details-main-contact .rx-inner-details .inner-text {
    margin-bottom: 12px;
}
.rx-room-details-main-contact .rx-inner-details .inner-text p {
    font-size: 14px;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner {
    margin-bottom: -24px;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details {
    margin-bottom: 24px;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details .sub-title {
    margin-bottom: 12px;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details .sub-title h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details .rx-cols-room ul {
    padding-left: 2rem;
    list-style-type: disc;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details .rx-cols-room ul li {
    font-size: 14px;
}
.rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details .rx-inner-review .rx-input-box {
    margin-bottom: 24px;
}

/* Responsive */
@media screen and(max-width: 575px) {
    .rx-room-details-sidebar .sub-title {
        padding: 20px;
    }
    .rx-room-details-sidebar .inner-room-details {
        padding: 20px;
    }
    .rx-room-details-main-contact .rx-main-room .room-slider-nav {
        margin: 12px 0;
    }
    .rx-room-details-main-contact .rx-inner-details {
        padding: 20px;
    }
    .rx-room-details-main-contact .rx-inner-details .rx-details-inner .inner-room-details .rx-inner-review .rx-input-box {
        margin-bottom: 15px;
    }
}
/* Amenities */
.rx-amenities-img img {
    width: 100%;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 0;
}

.rx-amenities-slider .amenities-animation > * {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
.rx-amenities-slider:root {
    --transition: 0.75s cubic-bezier(0.255, 0.67, 0, 1.01);
}
.rx-amenities-slider .rx-slide {
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
    transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
    transition: transform var(--transition), box-shadow var(--transition);
    transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}
.rx-amenities-slider .active .amenities-animation > *:nth-child(1) {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.rx-amenities-slider .active .amenities-animation > *:nth-child(2) {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.rx-amenities-slider .active .amenities-animation > *:nth-child(3) {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.rx-amenities-contact {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-amenities-contact .inner-banner {
    margin-bottom: 16px;
    position: relative;
}
.rx-amenities-contact .inner-banner h4 {
    font-size: 68px;
    font-weight: 700;
    background: linear-gradient(90deg, #eb4d4b 0%, #eb9000 50%, #eb9000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.rx-amenities-contact p {
    margin-bottom: 1rem;
    font-size: large;
    color: #555555;
}
.rx-amenities-contact .amenities-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rx-amenities-slider .owl-dots {
    width: 100px !important;
    background-color: #fff;
    padding: 10px 0 0 10px;
    border-radius: 10px 10px 0 0;
    position: absolute;
    bottom: 0;
    right: 435px;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .rx-amenities-slider .owl-dots {
        right: 375px;
    }
    .rx-amenities-contact .inner-banner h4 {
        font-size: 60px;
    }
}
@media screen and(max-width: 1199px) {
    .rx-amenities-slider .owl-dots {
        right: 315px;
    }
    .rx-amenities-contact .inner-banner h4 {
        font-size: 52px;
    }
}
@media screen and(max-width: 991px) {
    .rx-amenities-img img {
        border-top-left-radius: 500px;
        border-top-right-radius: 500px;
        border-bottom-left-radius: 500px;
        border-bottom-right-radius: 500px;
    }
    .rx-amenities-slider .owl-dots {
        display: none;
    }
    .rx-amenities-contact {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
    .rx-amenities-contact .inner-banner {
        left: 0;
        width: 100%;
    }
    .rx-amenities-contact .inner-banner h4 {
        font-size: 42px;
    }
}
@media screen and(max-width: 575px) {
    .rx-amenities-contact .inner-banner {
        margin-bottom: 8px;
    }
    .rx-amenities-contact .inner-banner h4 {
        font-size: 32px;
    }
}
/* Blog */
.rx-blog-card {
    position: relative;
}
.rx-blog-card .rx-blog-img {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    overflow: hidden;
}
.rx-blog-card .rx-blog-img img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.rx-blog-card .rx-blog-contact {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 30px;
}
.rx-blog-card .rx-blog-contact span {
    margin-bottom: 8px;
    font-size: large;
    font-weight: 400;
    color: #fff;
}
.rx-blog-card .rx-blog-contact h4 {
    font-size: 16px;
}
.rx-blog-card .rx-blog-contact h4 a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
}
.rx-blog-card .rx-blog-contact h4 a:hover {
    color: #eb9000;
}
.rx-blog-card:hover .rx-blog-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Team */
.rx-team-card .rx-team-img {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
.rx-team-card .rx-team-img img {
    width: 100%;
}
.rx-team-card .rx-team-img .rx-team-social-media {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-team-card .rx-team-img .rx-team-social-media .social-media-item {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 30px;
    width: 30px;
    margin: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #bbb;
    border-radius: 5px;
}
.rx-team-card .rx-team-img .rx-team-social-media .social-media-item i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    color: #bbb;
}
.rx-team-card .rx-team-img .rx-team-social-media .social-media-item:hover {
    border-color: #eb9000;
}
.rx-team-card .rx-team-img .rx-team-social-media .social-media-item:hover i {
    color: #eb9000;
}
.rx-team-card .rx-team-img:hover .rx-team-social-media {
    bottom: 0;
}
.rx-team-card .rx-team-contact {
    text-align: center;
}
.rx-team-card .rx-team-contact h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.rx-team-card .rx-team-contact p {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}

/* gallery */
figure {
    margin-bottom: 0;
}

.rx-gallery-card {
    position: relative;
    overflow: hidden;
}
.rx-gallery-card:hover .rx-gallery-img:before,
.rx-gallery-card:hover .rx-gallery-img:after {
    opacity: 1;
}
.rx-gallery-card .rx-gallery-img img {
    width: 100%;
    border-radius: 200px;
}
.rx-gallery-card .rx-gallery-img:before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "\f0d1";
    font-family: "remixicon";
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
}
.rx-gallery-card .rx-gallery-img:after {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    border-radius: 200px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
}

/* gallery */
.rx-gallery-card-two {
    position: relative;
    overflow: hidden;
}
.rx-gallery-card-two:hover .rx-gallery-img:before,
.rx-gallery-card-two:hover .rx-gallery-img:after {
    opacity: 1;
}
.rx-gallery-card-two .rx-gallery-img img {
    width: 100%;
    border-radius: 30px;
}
.rx-gallery-card-two .rx-gallery-img:before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "\f0d1";
    font-family: "remixicon";
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
}
.rx-gallery-card-two .rx-gallery-img:after {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    border-radius: 30px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Contact */
.rx-contact-form {
    background-color: #f5f5f5;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 30px;
}
.rx-contact-form .rx-input-box label {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
.rx-contact-form .rx-input-box textarea {
    height: 150px;
}
.rx-contact-form .rx-contact-touch-ifrem {
    height: 290px;
}
.rx-contact-form .rx-contact-touch-ifrem iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive */
@media screen and(max-width: 991px) {
    .rx-contact-form .rx-contact-touch-ifrem iframe {
        height: 400px;
    }
}
@media screen and(max-width: 575px) {
    .rx-contact-form {
        padding: 20px;
    }
}
/* Faq */
.rx-faq .accordion .accordion-item {
    border: none;
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #f5f5f5;
}
.rx-faq .accordion .accordion-item:not(:nth-child(1)) {
    margin-top: 12px;
}
.rx-faq .accordion .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-radius: 10px;
}
.rx-faq .accordion .accordion-item .accordion-button {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 10px;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.rx-faq .accordion .accordion-item .accordion-button::after {
    background: none;
    font-family: "remixicon";
    content: "\ea13";
    font-size: 20px;
    line-height: 18px;
}
.rx-faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background: none;
    font-family: "remixicon";
    content: "\f1af";
    font-size: 20px;
    color: #eb9000;
    line-height: 18px;
}
.rx-faq .accordion .accordion-item .accordion-collapse {
    border-radius: 10px;
}
.rx-faq .accordion .accordion-item .accordion-collapse .accordion-body {
    border-top: 1px solid #eee;
    position: relative;
    padding: 15px;
}
.rx-faq .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-weight: 300;
    font-size: 14px;
}

/* Blog-details */
.rx-blog-details {
    margin-bottom: -30px;
}
.rx-blog-details .rx-blog-details-cart {
    margin-bottom: 30px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-img {
    margin-bottom: 12px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-img img {
    width: 100%;
    border-radius: 30px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact span {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 400;
    color: #555555;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact h4 {
    margin-bottom: 12px;
    font-size: 20px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact h4 a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact p {
    margin-bottom: 20px;
    font-size: 14px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact img {
    width: 100%;
    border-radius: 30px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact .pagination ul {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #eee;
    background-color: #f5f5f5;
    border-radius: 30px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact .pagination ul li {
    padding: 15px;
    line-height: 16px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact .pagination ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    line-height: 18px;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact .pagination ul li a:hover {
    color: #eb9000;
}
.rx-blog-details .rx-blog-details-cart .blog-details-contact .details-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rx-blog-details-sidebar {
    position: sticky;
    top: 60px;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #eee;
}
.rx-blog-details-sidebar h5.sub-title {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.rx-blog-details-sidebar .search-box {
    margin-bottom: 24px;
}
.rx-blog-details-sidebar .search-box .search-inner-box {
    position: relative;
}
.rx-blog-details-sidebar .search-box .search-inner-box i {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 16px;
    padding: 10px;
}
.rx-blog-details-sidebar .rx-details-categories {
    margin-bottom: 24px;
}
.rx-blog-details-sidebar .rx-details-categories .inner-contact ul {
    padding-left: 2rem;
    list-style-type: disc;
}
.rx-blog-details-sidebar .rx-details-categories .inner-contact ul li {
    line-height: 20px;
}
.rx-blog-details-sidebar .rx-details-categories .inner-contact ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.rx-blog-details-sidebar .rx-details-categories .inner-contact ul li a:hover {
    color: #eb9000;
}
.rx-blog-details-sidebar .rx-recent-post {
    margin-bottom: 24px;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-img {
    margin-right: 12px;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-img img {
    height: 80px;
    width: 80px;
    border-radius: 30px;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact span {
    margin-bottom: 4px;
    font-size: large;
    line-height: 16px;
    font-weight: 400;
    color: #555555;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact h4 {
    font-size: 16px;
    line-height: 18px;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact h4 a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    line-height: 12px;
    color: #555555;
}
.rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact h4 a:hover {
    color: #eb9000;
}
.rx-blog-details-sidebar .rx-popular-tags .popular-inner-tags ul {
    margin: -5px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.rx-blog-details-sidebar .rx-popular-tags .popular-inner-tags ul li {
    float: left;
}
.rx-blog-details-sidebar .rx-popular-tags .popular-inner-tags ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 38px;
    padding: 0 20px;
    margin: 5px;
    background: #fff;
    font-size: 14px;
    color: #777;
    border: 1px solid #eee;
    border-radius: 10px;
    line-height: 38px;
    display: inline-block;
    text-decoration: none;
}
.rx-blog-details-sidebar .rx-popular-tags .popular-inner-tags ul li a:hover {
    background-color: #eb9000;
    color: #fff;
}

/* Responsive */
@media screen and(max-width: 1399px) {
    .rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact h4 a {
        font-size: 14px;
    }
}
@media screen and(max-width: 767px) {
    .rx-blog-details .rx-blog-details-cart .blog-details-contact h4 a {
        font-size: 18px;
    }
}
@media screen and(max-width: 575px) {
    .rx-blog-details-sidebar {
        padding: 20px;
    }
}
@media screen and(max-width: 380px) {
    .rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-img {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-img img {
        border-radius: 30px;
    }
    .rx-blog-details-sidebar .rx-recent-post .recent-inner-post .recent-post-cart .post-contact {
        height: auto;
    }
}
/* Spa */
.rx-spa-card {
    background-color: #f5f5f5;
    border-radius: 30px;
}
.rx-spa-card:hover .spa-img img {
    -webkit-transform: scale(1.2) rotate(4deg);
    transform: scale(1.2) rotate(4deg);
}
.rx-spa-card .spa-img {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
}
.rx-spa-card .spa-img img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.rx-spa-card .spa-contact {
    padding: 20px;
}
.rx-spa-card .spa-contact span {
    font-size: large;
    font-weight: 500;
    color: #555555;
}
.rx-spa-card .spa-contact h4 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.rx-spa-card .spa-contact p {
    font-size: large;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
}

.rx-spa-services {
    border-radius: 30px;
    overflow: hidden;
}
.rx-spa-services .in-p-0 {
    padding: 0;
}
.rx-spa-services .spa-services-img img {
    width: 100%;
}
.rx-spa-services .spa-services-contact {
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f5f5f5;
}
.rx-spa-services .spa-services-contact h4 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
.rx-spa-services .spa-services-contact p {
    margin-bottom: 8px;
    font-weight: 300;
    font-size: 14px;
}
.rx-spa-services .spa-services-contact span {
    font-size: 15px;
    font-weight: 500;
    color: #555555;
}

/* Responsive */
@media screen and(max-width: 1199px) {
    .spa-d-none {
        display: none;
    }
    .rx-spa-services .spa-services-contact h4 {
        font-size: 18px;
    }
}
@media screen and(max-width: 991px) {
    .order-991-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-991-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .spa-d-none {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .rx-spa-services .spa-services-contact {
        padding: 24px;
        text-align: left;
    }
    .rx-spa-services .border-tl-radius img {
        border-top-right-radius: 30px;
    }
    .rx-spa-services .border-br-radius img {
        border-radius: 0;
    }
    .rx-spa-services .in-p-0 {
        padding: 0 12px;
    }
}
/* checkout */
.rx-checkout {
    margin-bottom: -24px;
}
.rx-checkout .rx-checkout-wrap {
    margin-bottom: 24px;
    padding: 30px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 30px;
}
.rx-checkout .rx-checkout-wrap .inner-title {
    margin-bottom: 24px;
}
.rx-checkout .rx-checkout-wrap .inner-title h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.rx-checkout .rx-checkout-wrap .rx-check-block h5.rx-check-subtitle {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.rx-checkout .rx-checkout-wrap .rx-check-block .rx-new-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -2px -10px;
    padding-bottom: 12px;
}
.rx-checkout .rx-checkout-wrap .rx-check-block .rx-new-option div {
    margin: 2px 10px;
}
.rx-checkout .rx-checkout-wrap .rx-check-block .rx-new-option div label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.rx-checkout .rx-checkout-wrap .rx-check-block .rx-new-desc {
    margin-bottom: 12px;
}
.rx-checkout .rx-checkout-wrap .rx-check-block .rx-new-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-wrap {
    margin-bottom: 12px;
}
.rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-wrap label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
.rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-button {
    margin-top: 24px;
}
.rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-button button {
    margin-right: 24px;
}
.rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-button .rx-check-login-fp {
    color: #000;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-decoration: underline;
    font-size: 15px;
    line-height: 24px;
}
.rx-checkout .rx-checkout-wrap .rx-billing-details h5.rx-check-subtitle {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.rx-checkout .rx-checkout-wrap .rx-billing-details .rx-new-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 24px;
    margin: -2px -10px;
}
.rx-checkout .rx-checkout-wrap .rx-billing-details .rx-new-option .option-radio {
    margin: 2px 10px;
}
.rx-checkout .rx-checkout-wrap .rx-billing-details .rx-new-option .option-radio label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.rx-checkout .rx-checkout-wrap .rx-billing-details .rx-input-box label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

/* Responsive */
@media screen and(max-width: 575px) {
    .rx-checkout .rx-checkout-wrap {
        padding: 20px;
    }
    .rx-checkout .rx-checkout-wrap .rx-billing-details .rx-new-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and(max-width: 420px) {
    .rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .rx-checkout .rx-checkout-wrap .rx-check-login-form .rx-check-login-button button {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .rx-checkout .rx-checkout-wrap .rx-check-block .rx-new-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
/* Login */
.rx-login-form .rx-inner-form {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rx-login-img img {
    width: 100%;
}

.rx-input-box {
    position: relative;
}
.rx-input-box label {
    font-size: 12px;
}
.rx-input-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    cursor: pointer;
}

.rx-inline-block {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.rx-inline-block a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.7;
}
.rx-inline-block a:hover {
    opacity: 1;
}

.rx-inner-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.rx-inner-button a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0.7;
}
.rx-inner-button a i {
    font-size: 20px;
}
.rx-inner-button a:hover {
    opacity: 1;
}

/* ===== MODERN CONTACT PAGE STYLES ===== */

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/banner/2.webp") center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.9) 0%, rgba(230, 126, 34, 0.9) 100%);
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #ff6b35;
}

/* Contact Info Section */
.contact-info-section {
    background: #f8f9fa;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-link {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 600;
    font-size: large;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #e67e22;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover .card-hover-effect {
    left: 100%;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
}

.modern-contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
    z-index: 2;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #ff8c42;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

textarea.form-control {
    padding-left: 3rem;
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Contact Sidebar */
.contact-sidebar {
    height: 100%;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.hour-item span:last-child {
    color: #6c757d;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    position: relative;
    background: #f8f9fa;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.9) 0%, rgba(230, 126, 34, 0.9) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #ff8c42;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    color: #e67e22;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Responsive Design */
@media(max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modern-contact-form {
        padding: 2rem;
    }

    .contact-sidebar {
        margin-top: 2rem;
    }
}

@media(max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .modern-contact-form {
        padding: 1.5rem;
    }

    .map-overlay {
        position: relative;
        height: auto;
        border-radius: 20px 20px 0 0;
    }

    .map-iframe {
        position: relative;
        border-radius: 0 0 20px 20px;
    }
}

@media(max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

/* Enhanced Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(235, 144, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(235, 144, 0, 0.8), 0 0 30px rgba(235, 144, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(235, 144, 0, 0.5);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Interactive Elements */
.section-hero .rx-hero-contact .inner-contact .booking-now {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-hero .rx-hero-contact .inner-contact .booking-now:hover {
    animation: pulse 0.6s ease-in-out;
}

.section-hero .rx-hero-contact .inner-contact .booking-now .ico {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-hero .rx-hero-contact .inner-contact .booking-now:hover .ico {
    animation: glow 1.5s infinite;
}

/* Enhanced hover effects for text */
.section-hero .rx-hero-contact .inner-contact h2 span {
    position: relative;
    transition: all 0.3s ease;
}

.section-hero .rx-hero-contact .inner-contact h2 span:hover {
    color: #ffcc80;
    text-shadow: 0 0 20px rgba(255, 204, 128, 0.8);
}

/* Loading Animation for Form */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hover Effects Enhancement */
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.contact-card:hover::before {
    opacity: 0.05;
}

/* Form Input Focus Enhancement */
.form-control:focus + i {
    color: #667eea;
}

/* Button Loading State */
.submit-btn.loading {
    background: #6c757d;
    pointer-events: none;
}

.submit-btn.loading span {
    opacity: 0;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Floating Animation for Cards */
@keyframes float-card {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.contact-card {
    animation: float-card 3s ease-in-out infinite;
}

.contact-card:nth-child(2) {
    animation-delay: 0.5s;
}

.contact-card:nth-child(3) {
    animation-delay: 1s;
}

/* Orange Theme Enhancements */
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.contact-card:hover::before {
    opacity: 0.05;
}

.form-control:focus + i {
    color: #ff8c42;
}

.input-wrapper.focused .form-control {
    border-color: #ff8c42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.input-wrapper.focused i {
    color: #ff8c42;
}

.contact-card.focused {
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.3);
    transform: translateY(-5px);
}

.contact-card:focus-within {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

.social-link:focus {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

/* Enhanced Orange Animations */
@keyframes orangePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 66, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0);
    }
}

.card-icon:hover {
    animation: orangePulse 1.5s infinite;
}

/* Orange Gradient Text Effect */
.hero-title {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Orange Border Accents */
.modern-contact-form {
    background: linear-gradient(white, white) padding-box;
}

/* Mobile Menu Body Lock */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Overlay Fix */
.rx-mobile-menu-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.rx-mobile-menu-overlay.show {
    opacity: 1;
}

/* Mobile Menu Responsive Fixes */
@media screen and(max-width: 767px) {
    .rx-mobile-menu {
        width: 280px;
    }

    .rx-inner-menu-desk .navbar-toggler {
        display: flex !important;
    }
}

@media screen and(max-width: 575px) {
    .rx-mobile-menu {
        width: 260px;
        padding: 15px 15px 20px;
    }

    .rx-inner-menu-desk .navbar-toggler {
        height: 35px;
        width: 35px;
    }

    .rx-inner-menu-desk .navbar-toggler i {
        font-size: 18px;
    }
}

/* Ensure mobile menu is properly hidden by default */
.rx-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.rx-mobile-menu.rx-menu-open {
    display: block;
    transform: translateX(0);
}

/* Fix mobile menu overlay */
.rx-mobile-menu-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.rx-mobile-menu-overlay.show {
    opacity: 1;
}

/* Ensure hamburger menu is visible on mobile */
@media screen and(max-width: 991px) {
    .rx-inner-menu-desk .navbar-toggler {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .rx-inner-menu-desk .rx-main-menu {
        display: none !important;
    }
}

/* Mobile menu body lock */
body.menu-open {
    overflow: hidden;
}

/* Ensure hamburger menu is visible on mobile */
@media screen and(max-width: 991px) {
    .rx-inner-menu-desk .navbar-toggler {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Orange Loading Animation */
.submit-btn.loading i {
    animation: spin 1s linear infinite;
    color: #ff8c42;
}

/* Orange Success Message */
.form-message.success {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    color: white;
    border: none;
}

/* Orange Error Message */
.form-message.error {
    background: linear-gradient(135deg, #ff6b35 0%, #d35400 100%);
    color: white;
    border: none;
}

/* Orange Floating Shapes */
.shape {
    background: rgba(255, 140, 66, 0.2);
    border: 2px solid rgba(255, 140, 66, 0.3);
}

/* Orange Focus States */
.form-control:focus {
    border-color: #ff8c42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
}

/* Orange Button States */
.submit-btn:active {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

/* Orange Social Media Hover */
.social-link:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

/* ===== MODERN FOOTER DESIGN ===== */

/* Modern Footer Styles */
footer {
background: linear-gradient(135deg, rgba(14,1,25,1) 0%, rgba(30,30,30,0.35) 60%, rgba(0,0,0,0.2) 100%), url('../img/footer-bg2.webp') center/cover;

    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(235, 144, 0, 0.2);
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, transparent 0%, #eb9000 50%, transparent 100%); */
    opacity: 0.6;
}

.rx-main-footer {
    padding: 70px 0 50px;
    position: relative;
    z-index: 2;
}

.rx-main-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(235, 144, 0, 0.3) 50%, transparent 100%);
    opacity: 0.4;
}

/* Clean Footer Sections */
.rx-footer-items {
    position: relative;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.rx-footer-items:hover {
    transform: translateY(-5px);
}

.rx-items-heading {
    margin-bottom: 25px;
    position: relative;
}

.rx-items-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #eb9000 0%, #ff9224 100%);
    border-radius: 1px;
}

.rx-items-heading h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    position: relative;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.rx-items-heading:hover h4 {
    color: #eb9000;
}

/* Clean Company Info Section */
.rx-social-media {
    padding: 0 15px;
}

.rx-social-media .rx-logo {
    margin-bottom: 15px;
    position: relative;
}

.rx-social-media .rx-logo img {
    width: 200px;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.rx-social-media .rx-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.rx-social-media .inner-contact {
    margin-bottom: 30px;
}

.rx-social-media .inner-contact p {
    font-family: "Poppins", sans-serif;
    font-size: medium;
    /* line-height: 1.8; */
    font-weight: 400;
    color: #e0e0e0;
    margin: 0;
    text-align: left;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.rx-social-media .inner-contact:hover p {
    color: #ffffff;
}

/* Clean Footer Links */
.rx-items-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rx-items-contact ul li {
    position: relative;
    padding: 8px 0 8px 20px;
    margin-bottom: 8px;
}

.rx-items-contact ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #eb9000 0%, #ff9224 100%);
    border-radius: 50%;
}

.rx-items-contact ul li a {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    position: relative;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.rx-items-contact ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eb9000 0%, #ff9224 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.rx-items-contact ul li:hover a {
    color: #eb9000;
    transform: translateX(8px);
    background: rgba(235, 144, 0, 0.05);
    padding-left: 20px;
}

.rx-items-contact ul li:hover a::before {
    width: 8px;
}

/* Clean Contact Info Section */
.rx-footer-other-info {
    padding: 0 15px;
}

.rx-footer-other-info .inner-info {
    margin-bottom: 10px;
    padding: 0.2rem 0;
    position: relative;
}

.rx-footer-other-info .inner-info .inner-info-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #eb9000 0%, #ff9224 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.rx-footer-other-info .inner-info .inner-info-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.rx-footer-other-info .inner-info h5 {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rx-footer-other-info .inner-info:hover h5 {
    color: #eb9000;
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(235, 144, 0, 0.3);
}

.rx-footer-other-info .inner-info p,
.rx-footer-other-info .inner-info a {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #d0d0d0;
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border-radius: 5px;
}

.rx-footer-other-info .inner-info:hover p,
.rx-footer-other-info .inner-info:hover a {
    color: #ffffff;
}

.rx-footer-other-info .inner-info a:hover {
    color: #eb9000;
    text-decoration: none;
    transform: translateX(5px);
}

/* Clean Footer Bottom */
.rx-footer-copy {
    background: linear-gradient(135deg, rgba(121, 69, 0, 0.15) 0%, rgba(235, 144, 0, 0.08) 100%);
    width: 95%;
    max-width: 90%;
    margin: 0 auto 2rem;
    border-radius: 20px;
    /* padding: 2rem 3rem; */
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(235, 144, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.rx-footer-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.rx-footer-inner-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.3rem 0;
    width: 100%;
}

.rx-footer-inner-contact .rx-footer-left-side-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
}

.rx-footer-inner-contact .rx-footer-last-logo {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.rx-footer-left-side-contact p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.3px;
    line-height: 1.6;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.rx-footer-left-side-contact p:hover {
    color: #ffffff;
}

.rx-footer-left-side-contact p:first-child {
    /* border-right: 2px solid rgba(235, 144, 0, 0.3); */
    padding-right: 2rem;
}

.rx-footer-left-side-contact p a {
    color: #eb9000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.rx-footer-left-side-contact p a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eb9000 0%, #ff9224 100%);
    transition: width 0.3s ease;
}

.rx-footer-left-side-contact p a:hover {
    color: #ff9224;
    text-decoration: none;
}

.rx-footer-left-side-contact p a:hover::after {
    width: 100%;
}

.rx-footer-last-logo {
    display: flex;
    gap: 15px;
    align-items: center;
}

.rx-inner-footer-logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #eb9000 0%, #ff9224 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(235, 144, 0, 0.2);
}

.rx-inner-footer-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.rx-inner-footer-logo:hover::before {
    left: 100%;
}

.rx-inner-footer-logo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(235, 144, 0, 0.4);
    background: linear-gradient(135deg, #ff9224 0%, #eb9000 100%);
}

.rx-inner-footer-logo i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.rx-inner-footer-logo:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
}

/* Enhanced Responsive Design */
@media(max-width: 1199px) {
    .rx-main-footer {
        padding: 60px 0 40px;
    }

    .rx-items-heading h4 {
        font-size: 1.15rem;
    }

    .rx-social-media .inner-contact p {
        font-size: 1rem;
        text-align: left;
    }

    /* .rx-footer-copy {
        padding: 1.5rem 2rem;
    } */

    .rx-inner-footer-logo {
        width: 40px;
        height: 40px;
    }

    .rx-inner-footer-logo i {
        font-size: 1.1rem;
    }

    .rx-footer-inner-contact {
        gap: 2rem;
    }

    .rx-footer-inner-contact .rx-footer-left-side-contact {
        gap: 1.5rem;
    }
}

@media(max-width: 991px) {
    .rx-footer-items {
        margin-bottom: 40px;
        text-align: center;
    }

    .rx-items-heading {
        margin-bottom: 20px;
    }

    .rx-items-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .rx-footer-other-info .inner-info {
        text-align: center;
        padding: 25px 15px;
    }

    .rx-footer-other-info .inner-info .inner-info-icon {
        margin: 0 auto 15px;
    }
}

@media(max-width: 767px) {
    .rx-main-footer {
        padding: 50px 0 30px;
    }

    .rx-footer-inner-contact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .rx-footer-inner-contact .rx-footer-center-side-contact {
        margin: 0;
        order: 2;
    }

    .rx-footer-inner-contact .rx-footer-center-side-contact p {
        font-size: 0.95rem;
        white-space: normal;
    }

    .rx-footer-inner-contact .rx-footer-left-side-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .rx-footer-inner-contact .rx-footer-last-logo {
        justify-content: center;
        gap: 1rem;
    }

    .rx-footer-left-side-contact p {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        white-space: normal;
    }

    .rx-footer-left-side-contact p:first-child {
        border-right: none;
        padding-right: 0;
    }

    .rx-items-contact ul li {
        padding-left: 18px;
        text-align: left;
    }

    .rx-items-contact ul li:hover a {
        transform: translateX(8px);
    }

    /* .rx-footer-copy {
        padding: 1.5rem;
        margin-bottom: 1rem;
    } */

    .rx-social-media .rx-logo img {
        width: 180px;
    }
}

@media(max-width: 575px) {
    .rx-social-media .rx-logo img {
        width: 150px;
    }

    .rx-items-heading h4 {
        font-size: 1.2rem;
    }

    .rx-social-media .inner-contact p {
        font-size: 0.9rem;
        text-align: left;
    }

    .rx-footer-left-side-contact p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
    }

    .rx-inner-footer-logo {
        width: 35px;
        height: 35px;
    }

    .rx-inner-footer-logo i {
        font-size: 1rem;
    }
}


/* Orange Map Overlay Enhancement */
.map-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Orange Loading Spinner */
@keyframes orangeSpin {
    0% {
        transform: rotate(0deg);
        border-top-color: #ff8c42;
    }
    50% {
        border-top-color: #e67e22;
    }
    100% {
        transform: rotate(360deg);
        border-top-color: #ff8c42;
    }
}

.form-loading::after {
    border-top-color: #ff8c42;
    animation: orangeSpin 1s linear infinite;
}

/* ===== MODERN BENTO GRID GALLERY STYLES ===== */

/* Gallery Hero Section */
.gallery-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    overflow: hidden;
}

.gallery-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/banner/1.webp") center/cover;
    z-index: 1;
}

.gallery-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.9) 0%, rgba(230, 126, 34, 0.9) 100%);
    z-index: 2;
}

.gallery-hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.gallery-hero-section .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.gallery-hero-section .shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gallery-hero-section .shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.gallery-hero-section .shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.gallery-hero-section .shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.gallery-hero-section .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
}

.gallery-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero-section .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Filter Section */

.filter-header {
    margin-bottom: 3rem;
}

.modern-filter-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    border-color: #ff8c42;
    color: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    border-color: #ff8c42;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.filter-btn i {
    font-size: 1.2rem;
}

/* Bento Grid Gallery */
.bento-gallery-section {
    background: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 200px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-item.large {
    grid-column: span 4;
    grid-row: span 3;
}

.bento-item.medium {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-item.small {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.9) 0%, rgba(230, 126, 34, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #ff8c42;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    color: #e67e22;
}

/* Gallery Stats Section */
.gallery-stats-section {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media(max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(8, 150px);
    }

    .bento-item.large {
        grid-column: span 4;
        grid-row: span 3;
    }

    .bento-item.medium {
        grid-column: span 3;
        grid-row: span 2;
    }

    .bento-item.small {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media(max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(10, 120px);
    }

    .bento-item.large {
        grid-column: span 3;
        grid-row: span 3;
    }

    .bento-item.medium {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item.small {
        grid-column: span 2;
        grid-row: span 2;
    }

    .modern-filter-menu {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media(max-width: 767px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(15, 100px);
        gap: 0.5rem;
    }

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 3;
    }

    .bento-item.medium {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item.small {
        grid-column: span 1;
        grid-row: span 2;
    }

    .gallery-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media(max-width: 575px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(20, 80px);
    }

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 3;
    }

    .bento-item.medium {
        grid-column: span 1;
        grid-row: span 2;
    }

    .bento-item.small {
        grid-column: span 1;
        grid-row: span 2;
    }

    .modern-filter-menu {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-item {
    animation: fadeInUp 0.6s ease-out;
}

.bento-item:nth-child(2) {
    animation-delay: 0.1s;
}
.bento-item:nth-child(3) {
    animation-delay: 0.2s;
}
.bento-item:nth-child(4) {
    animation-delay: 0.3s;
}
.bento-item:nth-child(5) {
    animation-delay: 0.4s;
}
.bento-item:nth-child(6) {
    animation-delay: 0.5s;
}
.bento-item:nth-child(7) {
    animation-delay: 0.6s;
}
.bento-item:nth-child(8) {
    animation-delay: 0.7s;
}
.bento-item:nth-child(9) {
    animation-delay: 0.8s;
}
.bento-item:nth-child(10) {
    animation-delay: 0.9s;
}
.bento-item:nth-child(11) {
    animation-delay: 1s;
}
.bento-item:nth-child(12) {
    animation-delay: 1.1s;
}

/* Filter Animation
.filter-btn {
  animation: fadeInUp 0.6s ease-out;
}

.filter-btn:nth-child(2) {
  animation-delay: 0.1s;
}
.filter-btn:nth-child(3) {
  animation-delay: 0.2s;
}
.filter-btn:nth-child(4) {
  animation-delay: 0.3s;
} */

/* Loading Animation */
.bento-item.loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Enhanced Hover Effects */
.gallery-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

.gallery-card:hover::before {
    left: 100%;
}

/* Accessibility Enhancements */
.filter-btn:focus {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

.view-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Performance Optimizations */
.bento-item {
    will-change: transform;
}

.card-image img {
    will-change: transform;
}

/* Print Styles */
@media print {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .card-overlay {
        opacity: 1;
    }

    .filter-section,
    .gallery-stats-section {
        display: none;
    }
}

/* Marquee Destination Cards Styles */
.marquee-container {
    overflow: hidden;
    position: relative;
    margin: 30px 0;
    width: 100%;
    min-height: 200px;
    background: transparent;
}

.marquee-slider {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    min-width: 200%;
    /* Ensure animation works in all browsers */
    -webkit-animation-duration: 30s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    -moz-animation-duration: 30s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-play-state: running;
}

.marquee-left .marquee-track {
    animation-name: marqueeLeft;
    -webkit-animation-name: marqueeLeft;
    -moz-animation-name: marqueeLeft;
}

.marquee-right .marquee-track {
    animation-name: marqueeRight;
    -webkit-animation-name: marqueeRight;
    -moz-animation-name: marqueeRight;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }
}

@-webkit-keyframes marqueeLeft {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

@-moz-keyframes marqueeLeft {
    0% {
        -moz-transform: translateX(0);
    }
    100% {
        -moz-transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
    }
}

@-webkit-keyframes marqueeRight {
    0% {
        -webkit-transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes marqueeRight {
    0% {
        -moz-transform: translateX(-50%);
    }
    100% {
        -moz-transform: translateX(0);
    }
}

/* Pause animation on hover for better UX */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
}

/* Ensure marquee is visible and working */
.marquee-container {
    border: 1px solid transparent; /* Debug border - remove after testing */
}

.marquee-track {
    /* Ensure track is visible */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force animation to work */
.marquee-left .marquee-track,
.marquee-right .marquee-track {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
}

/* Ensure destination cards are visible */
.destination-card-marquee {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.destination-card-marquee {
    background: #fff;
    border-radius: 10px;
    padding: 3rem 3.2rem;
    margin: 0 15px;
    min-width: fit-content;
    max-height: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.destination-card-marquee:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.destination-card-marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 118, 0, 0.05) 0%, rgba(255, 146, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card-marquee:hover::before {
    opacity: 1;
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb7600 0%, #ff9224 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.card-icon i {
    font-size: 28px;
    color: #fff;
    transition: transform 0.3s ease;
}

.destination-card-marquee:hover .card-icon i {
    transform: scale(1.1);
}

.card-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.card-details h5 {
    color: #2c2c2c;
    font-size: 1.2rem;
    text-wrap: nowrap;
    font-weight: bolder !important;
    margin-bottom: 5px;
    line-height: 1.3;
}

.card-details .location {
    color: #666;
    font-size: 1rem;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-details .location i {
    color: #eb7600;
    font-size: 14px;
}

.discount-badge-marquee {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media(max-width: 1199px) {
    .destination-card-marquee {
        min-width: 280px;
        padding: 18px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
    }

    .card-icon i {
        font-size: 25px;
    }

    .card-details h5 {
        font-size: 15px;
    }
}

@media(max-width: 991px) {
    .destination-card-marquee {
        min-width: 260px;
        padding: 15px;
        margin: 0 10px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 22px;
    }

    .card-details h5 {
        font-size: 14px;
    }

    .card-details .location {
        font-size: 12px;
    }
}

@media(max-width: 767px) {
    .destination-card-marquee {
        min-width: 240px;
        padding: 12px;
        margin: 0 8px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon i {
        font-size: 20px;
    }

    .card-details h5 {
        font-size: 13px;
    }

    .card-details .location {
        font-size: 11px;
    }

    .discount-badge-marquee {
        font-size: 10px;
        padding: 3px 10px;
    }
}

@media(max-width: 575px) {
    .destination-card-marquee {
        min-width: 220px;
        padding: 10px;
        margin: 0 5px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon i {
        font-size: 18px;
    }

    .card-details h5 {
        font-size: 12px;
    }

    .card-details .location {
        font-size: 10px;
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Smooth animation */
.marquee-track {
    will-change: transform;
}

/* Additional hover effects */
.destination-card-marquee:hover .card-icon {
    transform: rotate(5deg);
}

.destination-card-marquee:hover .discount-badge-marquee {
    transform: scale(1.05);
}


.destination-card-marquee:nth-child(1) {
    animation-delay: 0.1s;
}
.destination-card-marquee:nth-child(2) {
    animation-delay: 0.2s;
}
.destination-card-marquee:nth-child(3) {
    animation-delay: 0.3s;
}
.destination-card-marquee:nth-child(4) {
    animation-delay: 0.4s;
}
.destination-card-marquee:nth-child(5) {
    animation-delay: 0.5s;
}
.destination-card-marquee:nth-child(6) {
    animation-delay: 0.6s;
}
.destination-card-marquee:nth-child(7) {
    animation-delay: 0.7s;
}
.destination-card-marquee:nth-child(8) {
    animation-delay: 0.8s;
}


