/* font-family: "Cormorant Infant", serif; */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&display=swap');

/* font-family: "Jost", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C7A97F;
    --secondary-color: #2B2B2B;
    --para-color: #00000080;
    --bg-color: #2B2B2B;
    --white-color: #ffffff;
    --black-color: #000000;
    --box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    --cormorant-infant-font: "Cormorant Infant", serif;
    --jost-font: "Jost", sans-serif;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    font-family: var(--jost-font);
    color: #000000b2;
    background-color: var(--white-color);
    overflow-x: hidden;
    color: #f0f8ff;
}

input,
textarea,
select,
button {
    font-family: var(--jost-font);
}

button {
    cursor: pointer;
    border: 0;
}

p {
    font-family: var(--be-vietnam-font) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: var(--para-color);
    margin: 0;
}

@media (max-width: 1200px) {
    p {
        font-size: 16px !important;
        line-height: 25px !important;
    }
}

section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 400;
    line-height: 1.1em;
    color: var(--black-color);
}

dl,
ol,
ul {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1600px;
}

@media (max-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

@media (max-width: 1500px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

@media (max-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 1100px) and (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}


/* Btn Area */
.btn-area .btn {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.btn-area .btn:hover {
    background-color: var(--bg-color);
}

/* End Btn Area */

/* Section Title */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title .secondary-title {
    position: relative;
    font-family: var(--cormorant-infant-font);
    color: var(--black-color);
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    width: fit-content;
    margin: 0 auto 20px auto;
}

.section-title .secondary-title::before,
.section-title .secondary-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
}

.section-title .secondary-title::before {
    top: 0;
}

.section-title .secondary-title::after {
    bottom: 0;
}

.section-title .primary-title {
    font-size: clamp(34px, 5vw, 50px);
    font-family: var(--cormorant-infant-font);
    color: var(--black-color);
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px !important;
    }
}

/* End Section Title */

/* Slide Design */
.swiper-pagination {
    position: relative;
    text-align: center;
    bottom: 0px;
    margin-top: 30px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* End Slide Design */

/* Navbar */

nav {
    position: relative;
    padding: 15px 0;
    background-color: var(--secondary-color);
}

nav .nav-logo img {
    width: 100%;
    max-width: 150px;
}

nav .nav-link li {
    font-size: 18px;
}

nav .nav-link li a {
    text-transform: uppercase;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
}

nav .nav-link li a:hover {
    color: var(--primary-color);
}

nav .nav-link li i {
    color: var(--primary-color);
}

.humburger-nav-part .humburger-menu-icon i {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.menu-area {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 1100px) {
    nav .gap-5 {
        gap: 40px !important;
    }

    nav .gap-4 {
        gap: 20px !important;
    }
}

@media (max-width: 992px) {

    nav .logo-before-resp,
    nav .nav-link .dash-icon {
        display: none;
    }

    nav .respo-main-menu {
        flex-direction: column !important;
    }

    nav .menu-area.justify-content-evenly {
        justify-content: flex-start !important;
    }

    nav .gap-5 {
        width: 100%;
        gap: 0px !important;
    }

    nav .respo-main-menu.gap-5 {
        gap: 20px !important;
    }

    .humburger-nav-part {
        display: flex !important;
    }

    nav .logo-in-menu {
        display: block !important;
    }

    nav .logo-in-menu img {
        filter: brightness(0) invert(1);
    }

    nav .menu-area {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        background-color: var(--primary-color) !important;
        transform: translateX(-100%);
        padding: 30px 20px;
        z-index: 1000;
    }

        nav .menu-area .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: var(--white-color);
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
    }

    nav .menu-area .close-menu i {
        pointer-events: none;
    }

    nav .menu-area.active {
        transform: translateX(0);
    }

    nav .respo-main-menu {
        margin-top: 50px;
    }

    nav .menu-area .nav-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px !important;
        width: 100%;
    }

    nav .nav-link li {
        width: 100%;
        border-bottom: 0.4px solid var(--white-color);
        padding-bottom: 10px;
        text-align: center;
    }

    nav .menu-area .nav-logo {
        margin-bottom: 20px;
    }

}

@media (max-width: 576px) {
    nav .menu-area {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    nav .menu-area {
        max-width: 100% !important;
    }

    nav .menu-area.active {
        transform: translateX(0);
    }

}


/* End Navbar */

/* Hero */

.hero {
    width: 100%;
    height: 75vh;
    background-image: url('../images/Hotel-Images/1M6A7803.JPG');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* End Hero */

/* Breadcrumb Area */
.breadcrumb-area {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 500px;
    background-image: url('../images/Hotel-Images/1M6A7804.JPG');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
    overflow: hidden;
}

.breadcrumb-area .image {
    position: absolute;
    bottom: 0;  
    width: 100%;
    left: 0;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #000000B2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}


.breadcrumb-area h1 {
    font-family: var(--cormorant-infant-font);
    font-size: clamp(40px, 5vw, 65px);
    color: var(--white-color);
    text-transform: uppercase;
}


.breadcrumb-area ul {
    width: fit-content;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.breadcrumb-area ul li,
.breadcrumb-area ul li a {
    font-size: 18px;
    color: var(--white-color);
    text-transform: capitalize;
}

@media (max-width: 992px) {
    .breadcrumb-area {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-area {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-area {
        height: 250px;
    }
}

/* End Breadcrumb Area */

/* About Us */
.about-us .images img {
    width: 100%;
}

.about-us .section-title {
    margin-bottom: 50px;
    text-align: left;
}

.about-us .section-title .secondary-title {
    margin: 0 auto 20px 0;
}

/* End About Us */

/* Reasaurant About Us */
.restaurant-about-us li {
    color: var(--primary-color);
    font-size: 20px;
}

.restaurant-about-us li span {
    font-weight: 500;
    color: var(--black-color);
}

/* End Reasaurant About Us */


/* Rooms About Us */
.rooms-about-us .timing-area h2 {
    font-size: 30px;
    font-family: var(--cormorant-infant-font);
    text-transform: capitalize;
    margin-bottom: 15px;
    font-weight: 600;
}

.rooms-about-us .timing-area ul li {
    color: var(--bg-color);
    font-size: 20px;
}

.rooms-about-us .timing-area ul li span {
    font-weight: 600;
    text-transform: capitalize;
}

.rooms-about-us .timing-area ul .seprator i {
    font-size: 30px;
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .rooms-about-us .timing-area ul .seprator {
        display: none;
    }
}

/* End Rooms About Us */

/* Stay And Dine */
.stay-and-dine {
    background-color: var(--bg-color);
}

.stay-and-dine .secondary-title,
.stay-and-dine .primary-title {
    color: var(--white-color);
}

.stay-and-dine .box {
    padding: 50px;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.stay-and-dine .box h4 {
    margin-top: 30px;
    color: var(--white-color);
    text-transform: capitalize;
}

.stay-and-dine .box .image {
    overflow: hidden;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.stay-and-dine .box .image img {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.stay-and-dine .box:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media (max-width: 992px) {
    .stay-and-dine .box {
        padding: 25px;
    }

    .stay-and-dine .box h4 {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .stay-and-dine .box {
        padding: 15px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .stay-and-dine .box .image {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .stay-and-dine .box h4 {
        margin-top: 15px;
    }


}

/* End Stay And Dine */

/* Our Facilities */
.facilities-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.facilities-area .box {
    flex: 0 1 calc(25% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--white-color);
    box-shadow: var(--box-shadow);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.facilities-area .box h5 {
    text-transform: capitalize;
}

.facilities-area .box:nth-child(odd) {
    background: var(--primary-color);
    color: var(--white-color);
}

.facilities-area .box:nth-child(odd) h5 {
    color: var(--white-color);
}

.facilities-area .icon img {
    width: 60px;
    margin-bottom: 15px;
}


@media (max-width: 991px) {
    .facilities-area .box {
        flex: 0 1 calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .facilities-area .box {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .facilities-area .box {
        flex: 0 1 100%;
    }

    .facilities-area .box {
        padding: 30px 15px;
    }
}

/* End Our Facilities */

/* Restaurant Facilities */

.restaurant-facilities {
    background-color: var(--bg-color);
}

.restaurant-facilities .secondary-title,
.restaurant-facilities .primary-title {
    color: var(--white-color);
}

.restaurant-facilities .box {
    border: 1px solid var(--primary-color);
    background-color: var(--bg-color) !important;
}

.restaurant-facilities .box h5 {
    color: var(--white-color) !important;
}

.restaurant-facilities .facilities-area .box {
    flex: 0 1 calc(33.33% - 30px);
}

@media (max-width: 768px) {
    .restaurant-facilities .facilities-area .box {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .restaurant-facilities .facilities-area .box {
        flex: 0 1 100%;
    }
}

/* End Restaurant Facilities */


/* Rooms Facilities */

.rooms-facilities {
    background-color: var(--bg-color);
}

.rooms-facilities .secondary-title,
.rooms-facilities .primary-title {
    color: var(--white-color);
}

.rooms-facilities .box {
    border: 1px solid var(--primary-color);
    background-color: var(--bg-color) !important;
}

.rooms-facilities .box h5 {
    color: var(--white-color) !important;
}

.rooms-facilities .facilities-area .box {
    flex: 0 1 calc(33.33% - 30px);
}

@media (max-width: 768px) {
    .rooms-facilities .facilities-area .box {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .rooms-facilities .facilities-area .box {
        flex: 0 1 100%;
    }
}

/* End Rooms Facilities */


/* Rooms Gallery Area */

.rooms-gallery-area {
    background-color: var(--bg-color);
}

.rooms-gallery-area .section-title .secondary-title,
.rooms-gallery-area .section-title .primary-title {
    color: var(--white-color);
}

.rooms-gallery-area .image {
    height: 300px;
}

/* End Rooms Gallery Area */

/* Image Gallery */
.home-page-gallery .section-title .secondary-title,
.home-page-gallery .section-title .primary-title {
    color: var(--white-color);
}


.home-page-gallery {
    background-color: var(--bg-color);
}

.image-gallery .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.image-gallery .image {
    overflow: hidden;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    cursor: pointer;
}

.image-gallery .image:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.image-gallery .image-big {
    height: 500px;
}

.image-gallery .image-small {
    height: 238px;
}

/* Gallery Lightbox (hidden by default) */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Image */
.gallery-lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(199, 169, 127, 0.397);
    animation: zoomIn 0.3s ease-in-out;
}

.gallery-lightbox .close i {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-lightbox .close i:hover {
    color: var(--white-color);
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .image-gallery .image-big {
        height: 400px;
    }

    .image-gallery .image-small {
        height: 188px;
    }
}

@media (max-width: 760px) {
    .image-gallery .image {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .image-gallery .image-big {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .image-gallery .image-big {
        height: 100%;
    }

    .image-gallery .image-small {
        height: 100%;
    }
}

/* End Image Gallery */

/* Rooms Details */
.rooms-details .image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.rooms-details .content {
    position: relative;
    padding: 30px 50px;
}

.rooms-details .content::before {
    content: "";
    position: absolute;
    width: 130%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    z-index: -1;
}


.rooms-details .content-left-to-right::before {
    left: -60px;
    width: 105%;
}


.rooms-details .content h2 {
    text-transform: capitalize;
    font-size: clamp(32px, 5vw, 40px);
    font-family: var(--cormorant-infant-font);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rooms-details .content p {
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .rooms-details .content::before {
        width: 100%;
        height: 130%;
    }

    .rooms-details .content-left-to-right::before {
        left: 0px;
        width: 100%;
    }

    .rooms-details .image img {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .rooms-details .content {
        position: relative;
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .rooms-details .content {
        position: relative;
        padding: 20px;
    }
}


/* End Rooms Details */


/* Video Area */

.videos-area {
    position: relative;
    width: 100%;
    height: 700px;
    background: url("../images/Hotel-Images/1M6A7803.JPG") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play Button */
.videos-area .play-btn {
    background: #C7A97F;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 5;
}

.videos-area .play-btn:hover {
    transform: scale(1.1);
    background: #a78356;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.video-modal.show {
    display: flex !important;
}

.video-modal video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.video-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: background 0.3s ease;
}

.video-modal .close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .videos-area {
        height: 350px;
    }

    .videos-area .play-btn {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .video-modal .close-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .videos-area {
        height: 250px;
    }

    .videos-area .play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .video-modal .close-btn {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .video-modal video {
        max-height: 70%;
    }
}

/* End Video Area */

/* Client Testimonial */
.client-testimonial .review-card {
    position: relative;
    margin: 30px 0;
    height: 100%;
    text-align: center;
    padding: 50px 20px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.client-testimonial .review-card .icon-right-face {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 50px;
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.client-testimonial .review-card .icon-left-face {
    position: absolute;
    right: 30px;
    bottom: -30px;
    width: 50px;
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.client-testimonial .review-card {

    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.client-testimonial .review-card p {
    margin-bottom: 30px;
}

.client-testimonial .review-card i {
    font-size: 16px;
    color: #fbc02d;
}

@media (max-width: 576px) {

    .client-testimonial .review-card .icon-right-face,
    .client-testimonial .review-card .icon-left-face {
        width: 40px;
    }

    .client-testimonial .review-card .icon-right-face {
        top: -20px;
    }

    .client-testimonial .review-card .icon-left-face {
        bottom: -20px;
    }
}

/* End Client Testimonial */

/* Contact Info Area */
.contact-info-area {
    background-color: var(--primary-color);
}

.contact-info-area .box {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    text-align: center;
}

.contact-info-area .box img {
    width: 50px;
    height: auto;
}

.contact-info-area .box h3 {
    font-family: var(--cormorant-infant-font);
    color: var(--white-color);
    font-weight: 400;
    text-transform: capitalize;
}

.contact-info-area .box h5 a {
    font-weight: 400;
    color: var(--white-color);
}

@media (max-width: 992px) {
    .contact-info-area .box img {
        width: 50px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .contact-info-area .box img {
        width: 40px;
        height: auto;
    }
}


.contact-us-page-contact-info-area {
    background-color: var(--white-color);
}

.contact-us-page-contact-info-area .box h3 {
    font-family: var(--cormorant-infant-font);
    color: var(--black-color);
    font-weight: 400;
    text-transform: capitalize;
}

.contact-us-page-contact-info-area .box h5 a {
    font-weight: 400;
    color: var(--black-color);
}

.contact-us-page-contact-info-area .box img {
    filter: brightness(0) invert(0);
}

/* End Contact Info Area */

/* Contact Us Form */

.contact-us-area {
    background-color: var(--bg-color);
}

.contact-us-area .secondary-title,
.contact-us-area .primary-title {
    color: var(--white-color);
}

.contact-us-area form .input-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-us-area form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.contact-us-area form .input-area input{
    flex: 1;
}

.contact-us-area form input,
.contact-us-area form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--white-color);
    font-family: var(--jost-font);
}

.contact-us-area input:focus,
.contact-us-area textarea:focus {
    background: transparent !important;
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
    color: var(--white-color);
}

.contact-us-area form textarea {
    height: 200px;
}

.contact-us-area form ::placeholder {
    text-transform: capitalize;
    font-weight: 500;
}

.contact-us-area .btn-area .btn {
    border: 1px solid var(--primary-color);
}

.contact-us-area .success,
.contact-us-area .error {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    text-align: left;
    animation: fadeOut 5s forwards;
    -webkit-animation: fadeOut 5s forwards;
}

.contact-us-area .success {
    background-color: #e8f9ee;
    color: #256d34;
    border: 1px solid #35a85d;
}

.contact-us-area .error {
    background-color: #ffecec;
    color: #b10000;
    border: 1px solid #ff4d4d;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@media (max-width: 576px) {
    .contact-us-area form .input-area{
        flex-direction: column;
    }
}

/* End Contact Us Form */

/* Footer */
footer {
    background-color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

footer .footer-logo img {
    width: 100%;
    max-width: 200px;
}

footer .footer-links li a {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black-color);
    font-weight: 500;
}

footer .footer-links .dash-icon {
    color: var(--primary-color);
    font-size: 18px;
}

footer .social-links li i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

footer .social-links li i:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    footer .footer-links .dash-icon {
        display: none;
    }
}

/* End Footer */

/* Whats App Icon */

.w-app-icon i {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    /* WhatsApp green */
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
    /* stays on top */
}

.w-app-icon i:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


/* End Whats App Icon */