/* ===== Custom Fonts ===== */
@font-face {
    font-family: 'font-head';
    /* src: url('../fonts/Cormorant-Medium.ttf') format('truetype'); */
    /* src: url('../fonts/AllrounderMonumentTest-Medium.otf') format('truetype'); */
    src: url('../fonts/AllrounderMonumentTest-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'font-para';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #0B0D10;
    --secondary-color: #D7A826;
    --active-color: #FD4E22;

    --white-color: #ffffff;
    --black-color: #0000;
    --text-color: #9C9B9B;

    --bg-color: #0C0C0C;

    --font-head: 'font-head', sans-serif;
    --font-para: 'font-para', sans-serif;

    --section-space: 50px 0;
    --section-space-sm: 30px 0;
    --section-space-lg: 80px 0;

    --border-radius: 10px;
    --btn-radius: 8px;

    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;

    --z-header: 1000;
    --z-modal: 2000;
}

html {
    overflow-x: hidden !important;

}

body {
    font-family: var(--font-para);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--primary-color);
    line-height: 1.2;
}

p {
    font-family: var(--font-para);
    font-size: 16px;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--active-color);
}

ul,
ol {
    /* margin: 0 0 20px 20px; */
    padding: 0;
}

ul li,
ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}



/* ===================================================================
                     Common Css
====================================================================== */

.container-fluid {
    width: 100%;
    max-width: 70%;
}

.main-head span {
    color: var(--secondary-color);
}

.main-head {
    color: var(--white-color);
    font-size: clamp(18px, 2.5vw, 34px);
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 45px;
    text-transform: uppercase;
}

.sub-head {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.custom-btn a {
    position: relative;
    display: inline-block;
    background: #D7A826;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-para) !important;
    letter-spacing: 2px;
    text-decoration: none;
    overflow: hidden;
    transition: .3s;
    border-radius: 2px;

}

.custom-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.custom-btn a:hover::before {
    left: 130%;
}

.custom-btn a:hover {
    background: #c99a1f;
}

.header-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.banner-btn a {
    display: inline-block;
    padding: 10px 50px;
    border: 1px solid var(--secondary-color);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 2px;
    transition: color .3s ease;
}

.banner-btn a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--secondary-color);
    transition: height .4s ease;
    z-index: -1;
}

.banner-btn a:hover {
    color: #fff;
}

.banner-btn a:hover::before {
    height: 100%;
}

#scrollTopBtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background: #111;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all .4s ease;
    overflow: hidden;
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    transition: height .35s ease;
    z-index: 0;
}

#scrollTopBtn i {
    position: relative;
    z-index: 2;
}

#scrollTopBtn:hover::before {
    height: 100%;
}

#scrollTopBtn:hover {
    color: #000;
}

.harizontal-line {
    position: relative;
    height: 1px;
    margin: 10px 0;
}

.harizontal-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(180, 180, 180, 0.2),
            rgba(0, 0, 0, 0));
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-logo {
    width: 120px;
    animation: logoLoader 2s ease-in-out infinite;
}

@keyframes logoLoader {

    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.loader-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin: 2rem;

    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white-color);
    user-select: none;

    scale: 2;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;

    background-color: transparent;

    mask: repeating-linear-gradient(90deg,
            transparent 0,
            transparent 6px,
            black 7px,
            black 8px);
}

.loader::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image:
        radial-gradient(circle, var(--secondary-color) 0%, transparent 55%),
        radial-gradient(circle, var(--secondary-color) 0%, transparent 55%),
        radial-gradient(circle, var(--secondary-color) 0%, transparent 55%);

    mask: radial-gradient(circle, transparent 0%, transparent 10%, black 25%);

    animation:
        transform-animation 2s infinite alternate,
        opacity-animation 4s infinite;

    animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
}

@keyframes transform-animation {
    0% {
        transform: translate(-55%);
    }

    100% {
        transform: translate(55%);
    }
}

@keyframes opacity-animation {

    0%,
    100% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    65% {
        opacity: 0;
    }
}

.loader-letter {
    display: inline-block;
    opacity: 0;
    animation: loader-letter-anim 4s infinite linear;
    z-index: 2;
    color: var(--secondary-color);
}

.loader-letter:nth-child(1) {
    animation-delay: 0.1s;
}

.loader-letter:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-letter:nth-child(3) {
    animation-delay: 0.3s;
}

.loader-letter:nth-child(4) {
    animation-delay: 0.4s;
}

.loader-letter:nth-child(5) {
    animation-delay: 0.5s;
}

.loader-letter:nth-child(6) {
    animation-delay: 0.6s;
}

.loader-letter:nth-child(7) {
    animation-delay: 0.7s;
}

.loader-letter:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes loader-letter-anim {

    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
        text-shadow: 0 0 6px var(--secondary-color);
        transform: scale(1.1) translateY(-2px);
    }

    20% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
    }

}

.error-message {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.error {
    color: red;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

/* ===========================navigation bar====================================== */
.home-wrap {
    position: relative;
    overflow: hidden !important;
}

.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0px auto !important;
    z-index: 999;
    padding: 25px 0;
}

.custom-navbar .container-fluid {
    width: 100%;
    max-width: 950px;
}

.custom-navbar .nav-link {
    color: var(--white-color) !important;
    font-size: 15px;
    font-weight: 500;
    margin: 0 18px;
    font-family: var(--font-head) !important;
}

.custom-navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

.custom-navbar .logo img {
    height: 80px;
}

.custom-navbar .navbar-divider {
    height: 2px;
    background: var(--secondary-color);
    width: 100%;
}

.custom-offcanvas {
    width: 340px !important;
}

.custom-offcanvas {
    background-image: url('../images/bg/banner.jpg') !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 0;

}

.offcanvas-body {
    background-color: var(--black-color);
}

.custom-offcanvas .btn-close {
    filter: invert(1);
    opacity: 1;
}

.custom-offcanvas .mobile-logo {
    height: 60px;
}

.custom-offcanvas .mobile-menu .nav-link {
    font-size: 16px;
    padding: 14px 0;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-offcanvas .mobile-menu .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(7, 2, 2, 0.034);
}

.custom-offcanvas .mobile-menu .nav-link:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.custom-offcanvas .mobile-menu .nav-link i {
    color: #9a9a9a;
    transition: 0.3s;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.custom-offcanvas .mobile-menu .nav-link:hover i {
    color: var(--secondary-color);
}

.custom-offcanvas .btn-close:focus {
    box-shadow: none !important;
}

.custom-offcanvas .dropdown-menu {
    background: black !important;
    border: none;
    padding-left: 10px;
    border: 1px solid var(--secondary-color);
}

.custom-offcanvas .dropdown-item {
    color: var(--white-color);
    padding: 8px 10px;
    transition: 0.3s;
}

.custom-offcanvas .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

.custom-offcanvas .mobile-contact h6 {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 30px;
}

.custom-offcanvas .mobile-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.custom-offcanvas .mobile-contact i {
    font-size: 15px;
    color: var(--secondary-color);
}

.custom-offcanvas .mobile-contact a {
    text-decoration: none;
    color: var(--white-color);
    transition: 0.3s;
}

.custom-offcanvas .mobile-contact a:hover {
    color: var(--secondary-color);
}

.custom-offcanvas .mobile-social {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.custom-offcanvas .mobile-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.custom-offcanvas .mobile-social a:hover {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-3px);
}

.custom-navbar .nav-link {
    position: relative;
    color: var(--white-color);
    transition: 0.3s;
}

.custom-navbar .nav-link.active {
    color: #D7A826 !important;
}

.custom-navbar .nav-link.active::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    width: 4px;
    height: 4px;
    background: #D7A826;
    border-radius: 50%;
}

.dropdown-toggle::after {
    top: 10px !important;
}

.nav-left {
    position: relative;
    padding-bottom: 10px;
}

.custom-navbar .nav-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    transform: translateX(-50%);
    width: 620px;
    height: 1px;
    background: #D7A826;
    transition: 0.3s;
}

.nav-right {
    position: relative;
    padding-bottom: 10px;
}

.custom-navbar .nav-right::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 100%;
    transform: translateX(-50%);
    width: 620px;
    height: 1px;
    background: #D7A826;
    transition: 0.3s;
}

.custom-offcanvas .offcanvas-body {
    overflow-y: auto;
}

.custom-offcanvas .offcanvas-body::-webkit-scrollbar {
    width: 2px;
}

.custom-offcanvas .offcanvas-body::-webkit-scrollbar-track {
    background: var(--black-color);
}

.custom-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background: #D7A826;
    border-radius: 10px;
}

.custom-offcanvas .offcanvas-header {
    position: relative;
    border-bottom: none;
    padding-bottom: 15px;
}

.custom-offcanvas .offcanvas-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
}

.custom-offcanvas .offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: #b88a1c;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: .1rem;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.custom-offcanvas .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
    border: 1px solid var(--secondary-color);
}

.custom-offcanvas .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

@media (max-width:991px) {
    .custom-offcanvas .dropdown-submenu .dropdown-menu {
        left: 44px;
        top: 100%;
    }
}

/* =========================footer ===================*/

.inner-footer .container-fluid {
    width: 100%;
    max-width: 70%;
}

.inner-footer {
    background: #020a0f;
    padding: 60px 0;
    color: #fff;
    font-size: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;

}

.footer-tag {
    color: #ccc;
    font-size: 13px;
}

/* menu */
.footer-menu {
    list-style: none;
    padding: 0;
    font-size: 18px;
    font-family: var(--font-para);
}

.footer-menu {
    position: relative;
    padding-left: 15px;
}

.footer-menu::before {
    content: "";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #D7A826;
}

.footer-menu li {
    margin-bottom: 20px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: .3s;
    font-size: 18px;
    font-weight: 500;
}

.footer-menu a:hover {
    color: #D7A826;
}

.footer-contact span {
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 5px;
}

.footer-contact .follow {
    font-weight: 600;
    padding: 10px 0px;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-contact a {
    color: var(--white-color);
}

.footer-contact .footer-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #D7A826;
    color: var(--black-color) !important;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
    transition: color .3s ease;
}

.footer-social a i {
    color: #000 !important;
}

.footer-contact .footer-social a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    transition: height .35s ease;
    z-index: -1;
}

.footer-contact .footer-social a:hover::before {
    height: 100%;
}

.footer-contact .footer-social a:hover {
    color: var(--black-color);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #ccc;
}

/* social */
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: #D7A826;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    border-radius: 4px;
    font-size: 14px;
}

/* newsletter */
.footer-newsletter h6 {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--white-color);
    font-weight: 700;
}

.footer-newsletter span {
    color: #D7A826;
}

/* form */
.footer-newsletter form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.footer-newsletter input {
    background: none;
    border: none;
    outline: none;
    color: var(--white-color);
    flex: 1;
    font-size: 14px;
}

.footer-newsletter button {
    background: none;
    border: none;
    color: #D7A826;
    font-size: 18px;
}

.footer-time {
    margin-top: 15px;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom {
    background: #030a12;
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-bottom img {
    width: 100%;
    transition: 0.3s ease;
}

/* hover effect */
.footer-bottom a:hover img {
    transform: translateY(-2px);
    opacity: 0.9;
}


/*============================== banner section */
.inner-banner {
    width: 100%;
    height: 800px;
    background-image: url('../images/bg/banner.jpg');
    background-color: var(--black-color) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.inner-banner .banner-item {
    height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}


.inner-banner .main-head {
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 90px;
    margin-bottom: 20px;
}


.banner-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.banner-carousel .owl-dot span {
    display: none;
}

.banner-carousel .owl-dot {
    color: #999;
    margin-right: 15px;
    position: relative;
}


.banner-carousel .owl-dot.active {
    color: var(--secondary-color);
    margin-right: 95px;
}


.banner-carousel .owl-dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 28px;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.banner-carousel .owl-dot:last-child.active::after {
    display: none;
}

.banner-left {
    position: absolute;
    left: 35%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100%;
    max-width: 800px;
}

.banner-right img {
    width: 500px !important;
    height: auto !important;
}

.banner-right {
    position: absolute;
    right: 0%;
    bottom: 0%;
}


/* =====================book appoinment section */
.inner-appointment {
    padding: 0px 0px 30px 0;
    background: var(--bg-color);
}

.inner-appointment .appointment-box {
    position: relative;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden !important;
}

.inner-appointment .nail-art {
    background-image: url('../images/bg/appointment-bg-1.webp');
}

.inner-appointment .facial {
    background-image: url('../images/bg/appointment-bg-2.webp');
}


.appointment-overlay-1 {
    position: absolute;
    left: 0%;
    bottom: 0%;
}

.appointment-overlay-2 .main-head {
    font-size: clamp(20px, 2.3vw, 30px);
    text-transform: uppercase;
}

.appointment-overlay-2 .custom-btn a {
    font-size: clamp(10px, 1.2vw, 14px);
}

.appointment-overlay-2 {
    position: absolute;
    left: 54%;
    bottom: 42%;
}

.inner-appointment .facial .main-head {
    color: var(--primary-color);
}

.appointment-overlay-1 img {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* ======================home cta */
.inner-home-cta {
    position: relative;
    height: 500px;
    background-image: url('../images/bg/home-cta.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

@supports (-webkit-touch-callout: none) {
    .inner-home-cta {
        background-attachment: scroll;
    }
}

.inner-home-cta .main-head {
    font-size: clamp(14px, 2.5vw, 28px);
    line-height: 37px;
    text-transform: uppercase;
}

.inner-home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.inner-home-cta .cta-content {
    position: relative;
    z-index: 2;
}

.inner-home-cta .cta-logo {
    width: 120px;
    margin-bottom: 10px;
}

.inner-home-cta .cta-content p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.inner-home-cta .video-btn {
    position: relative;
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}

.inner-home-cta .cta-content img {
    animation: logoToast 6s ease-in-out infinite;
}

/* keyframes */
@keyframes logoToast {

    0% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-6px) scale(1.02);
    }

    50% {
        transform: translateY(-10px) scale(1.04);
    }

    75% {
        transform: translateY(-6px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }

}

.inner-home-cta .video-btn i {
    font-size: 28px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.inner-home-cta .video-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-25deg);
    transition: .7s;
}

.inner-home-cta .video-btn:hover::before {
    left: 130%;
}

.inner-home-cta .video-btn:hover {
    background: #D7A826;
    border-color: #D7A826;
}

.video-modal .modal-content {
    background: #000;
    border: none;
}

.video-modal .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    filter: invert(1);
}

/*===============================home gallery */
.hair-marquee {
    background: var(--bg-color);
    padding: 30px 0;
    overflow: hidden;
}

.hair-marquee .marquee {
    overflow: hidden;
    position: relative;
}

.hair-marquee .marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.hair-marquee .marquee img {
    height: 320px;
    width: auto;
    object-fit: cover;
}

.hair-marquee .marquee-left .marquee-track {
    animation: scrollLeft 25s linear infinite;
}

.hair-marquee .marquee-right .marquee-track {
    animation: scrollRight 25s linear infinite;
}

.hair-marquee .marquee-left:hover .marquee-track {
    animation-play-state: paused;
}

.hair-marquee .marquee-right:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hair-marquee .custom-btn {
    margin: 35px 0px;
}

/* ==========================home services */
.inner-home-services {
    padding: 40px 0px;
    background-color: var(--bg-color);
    position: relative;
}

.inner-home-services .tab-btn {
    border: 1px solid rgba(255, 255, 255, 0.116);
    color: #fff;
    padding: 10px 35px;
    letter-spacing: 2px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
    background: var(--bg-color) !important;
    font-size: clamp(16px, 2vw, 19px) !important;
}

.inner-home-services .service-tabs {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 30px 0px;
    z-index: 10;
    background: var(--bg-color) !important;
}



.inner-home-services .service-tabs::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    z-index: -1;

    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.08),
            transparent);
}

.inner-home-services .tab-btn.active {
    border-color: #D7A826;
}

.inner-home-services .tab-btn:hover {
    border-color: #D7A826;
}

.inner-home-services .tab-content {
    display: none;
}

.inner-home-services .tab-content.active {
    display: block;
}



.inner-home-services .service-grid {
    margin-top: 70px;
}

.inner-home-services .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.inner-home-services .service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.inner-home-services .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            transparent);
    text-align: center;
    z-index: 100;
}

.inner-home-services .service-overlay h4 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
}

.inner-home-services .service-card img {
    transition: .5s;
}

.inner-home-services h4 {
    color: var(--secondary-color);
}

.inner-home-services .service-card:hover img {
    transform: scale(1.08);
}

.inner-home-services .custom-btn {
    margin: 40px 0px;
}

.home-service-overlay-1 {
    position: absolute;
    top: 10%;
    left: 0%;
}

.home-service-overlay-2 {
    position: absolute;
    bottom: 10%;
    right: 0%;
}

/* =============================faq section */

.inner-home-faq {
    padding: 40px 0;
    background: var(--bg-color);
    position: relative;
}

.inner-home-faq .faq-wrap {
    max-width: 900px;
    margin: auto;
    margin-top: 40px;
}

.inner-home-faq .custom-faq .accordion-item {
    background: #111;
    border: 1px solid rgba(215, 168, 38, 0.4);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.inner-home-faq .custom-faq .accordion-button {
    background: #111;
    color: #fff;
    font-size: clamp(13px, 2vw, 18px);
    line-height: 20px;
    padding: 18px 20px;
    box-shadow: none;
}

.inner-home-faq .faq-number {
    color: #D7A826;
    margin-right: 10px;
}

.inner-home-faq .custom-faq .accordion-body {
    background: #111;
    color: #aaa;
    font-size: clamp(14px, 1vw, 14px);
    line-height: 1.6;
    padding: 15px 20px 20px;
}

.inner-home-faq .accordion-button::after {
    filter: invert(1);
}

.inner-home-faq .accordion-button:not(.collapsed) {
    color: #fff;
    background: #1a1a1a;
}

.inner-home-faq .faq-wrap-inner {
    background: rgba(26, 26, 26, 0.55);
    padding: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.faq-overlay-1 img,
.faq-overlay-2 img {
    width: 300px;
    height: auto;
}

.faq-overlay-1 img {
    animation: floatUpDown 6s ease-in-out infinite;
}

.faq-overlay-2 img {
    animation: floatSide 7s ease-in-out infinite;
}

@keyframes floatUpDown {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes floatSide {

    0% {
        transform: translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateX(10px) rotate(2deg);
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }

}

.faq-overlay-1 {
    position: absolute;
    left: 0%;
    bottom: 0%;
}

.faq-overlay-2 {
    position: absolute;
    right: 0%;
    top: 0%;
}

/* ===========================testimonal section */
.inner-home-testimonial {
    padding: 60px 0px 100px 0px;
    position: relative;
}

.testimonial-sec {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

.testimonial-slider {
    margin-top: 30px;
}

.testimonial-slider .stars {
    font-size: 20px;
    color: var(--secondary-color);
    padding: 10px 0px;
    margin-bottom: 10px;
}

.testimonial-item p {
    font-size: clamp(16px, 2vw, 18px);
}

.testimonial-item img {
    width: 60px !important;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    height: auto !important;
}

.testimonial-user h5 {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--white-color);
}

.testimonial-user h5 span {
    padding-left: 20px;
    color: var(--secondary-color);
}

.testimonial-user {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.testimonial-slider .owl-nav {
    position: absolute !important;
    right: 20px !important;
    bottom: -80px !important;
    display: flex !important;
    gap: 15px !important;
}

.testimonial-slider .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    color: #D7A826 !important;
    font-size: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.3s !important;
}

.testimonial-slider .owl-nav button:hover {
    color: var(--white-color) !important;
}

.testimonial-slider .owl-dots {
    position: absolute !important;
    left: 76% !important;
    transform: translateX(-50%) !important;
    bottom: -60px !important;
    width: 300px !important;
    height: 2px !important;
}

.testimonial-slider .owl-dots::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

.testimonial-slider .owl-dots::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 60px !important;
    height: 2px !important;
    background: #D7A826 !important;
    transition: 0.4s !important;
}

.testimonial-slider .owl-dot {
    display: none !important;
}

.testimonial-overlay-1 img {
    width: 400px;
    height: auto;
}

.testimonial-overlay-1 {
    position: absolute;
    right: 5%;
    bottom: 2%;
}

.testimonial-overlay-2 img {
    width: 300px;
}

.testimonial-overlay-2 {
    position: absolute;
    left: 5%;
    top: 2%;
}

/* ===================birdal section */
.inner-bridal .container-fluid {
    width: 100% !important;
    position: relative;
}

.inner-bridal {
    width: 100%;
    background-image: url('../images/bg/bridal-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bridal-left {
    width: 100%;
    height: 100%;
}

.bridal-slider .bridal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridal-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.bridal-slider .owl-dot span {
    display: none;
}

.bridal-slider .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color) !important;
    opacity: .5;
    transition: all .3s ease;
}

.bridal-slider .owl-dot.active {
    width: 30px;
    border-radius: 20px;
    background: var(--secondary-color);
    opacity: 1;
}

.bridal-right {
    padding: 10px;

}

.bridal-header {
    padding-top: 30px;
    max-width: 500px;
}

.bridal-header .main-head {
    color: var(--primary-color);
}

.bridal-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    list-style: none;
}

.bridal-tabs li {
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid #ddd;
}

.bridal-tabs li.active {
    background: var(--secondary-color);
    color: #fff;
}

.bridal-tab-content {
    display: none;
}

.bridal-tab-content.active {
    display: block;
}

.bridal-card {
    background: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bridal-card img {
    width: 180px !important;
    height: auto;
    border-bottom: 2px solid var(--secondary-color);
}

.bridal-card h4 {
    font-size: clamp(14px, 1.2vw, 18px);
    margin-top: 15px;
    font-weight: 600;
}

.bridal-right .custom-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 40px;
    margin-right: 40px;
}

.side-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.bridal-slider {
    height: 100%;
}

.bridal-slider .owl-stage-outer,
.bridal-slider .owl-stage,
.bridal-slider .owl-item {
    height: 100%;
}

.bridal-item {
    height: 100%;
}

.bridal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-bridal {
    position: relative;
}

.bridal-overlay-1 img {
    animation: floatArrow 4s ease-in-out infinite;
}

@keyframes floatArrow {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}

.bridal-overlay-1 {
    position: absolute;
    top: 5%;
    right: 10%;
}

/* ==============why choose us */
.inner-why .header-sec {
    max-width: 700px;
    margin: 0px auto;

}

.inner-why {
    padding: 60px 0px;
    position: relative;
}

.why-wrap {
    padding: 50px 0px;
}

.inner-why .why-card {
    background: #1b1b1b;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: left;
    transition: all .4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-down {
    margin-top: 40px;
}

.inner-why .why-icon {
    width: 50px;
    height: 50px;
    background: rgba(215, 168, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 6px;
}

.inner-why .why-icon i {
    font-size: 22px;
    color: var(--secondary-color);
}

.inner-why .why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.inner-why .why-card p {
    font-size: 14px;
    color: #aaa;
}

.inner-why .why-card:hover {
    transform: translateY(-10px);
    background: var(--secondary-color);
}

.inner-why .why-card:hover h4,
.inner-why .why-card:hover p,
.inner-why .why-card:hover i {
    color: #fff;
}

.inner-why .why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--secondary-color);
    transition: .4s;
}

.inner-why .why-card:hover::before {
    width: 100%;
}

.why-overlay-1 img {
    width: 300px;
    height: auto;
}

.why-overlay-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: -1;
}

.custom-navbar .dropdown-submenu {
    position: relative;
}

.custom-navbar .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 230px;
    padding: 8px 0;
}

.custom-navbar .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.custom-navbar .dropdown-menu .dropdown-item {
    position: relative;
    color: var(--white-color) !important;
    padding: 10px 18px;
    font-size: 14px;
    transition: all .3s ease;
}

.custom-navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(215, 168, 38, 0.08);
    color: var(--secondary-color);
}

.custom-navbar .dropdown-submenu>.dropdown-item::after {
    content: "›";
    position: absolute;
    right: 15px;
    font-size: 16px;
    transition: .3s;
}

.custom-navbar .dropdown-submenu:hover>.dropdown-item::after {
    right: 10px;
    color: var(--secondary-color);
}

.custom-navbar .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--secondary-color);
    transition: .3s;
}

.custom-navbar .dropdown-menu .dropdown-item:hover::before {
    width: 3px;
}

.custom-navbar .custim-dropdown .dropdown-menu {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 0;
}

/* =======================================================================
                         services page
=========================================================================== */
.inner-sub-banner {
    padding: 200px 0 70px;
    background: url('../images/bg/sub-banner.png') center/cover no-repeat;
    color: var(--white-color);
    position: relative !important;
}

.sub-banner-overlay-2 img {
    width: 120px;
    height: auto;
    opacity: 0.3;
}

.sub-banner-overlay-2 {
    position: absolute;
    left: 3%;
    bottom: 0%;
}

.sub-banner-overlay-1 img {
    width: 30%;
    height: auto;
}

.sub-banner-overlay-1 img {
    position: absolute;
    bottom: 0%;
    right: 5%;
}

.sub-banner-center .main-head {
    font-size: clamp(22px, 3.4vw, 38px);
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 30px;
}

.salon-breadcrumb-wrapper {
    margin-top: 15px;
}

.salon-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.salon-breadcrumb li {
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
    display: flex;
    align-items: center;
}

.salon-breadcrumb li a {
    text-decoration: none;
    color: var(--white-color);
    transition: 0.3s;
}

.salon-breadcrumb li a:hover {
    color: var(--secondary-color);
}

.salon-breadcrumb li:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: var(--secondary-color);
    font-size: 18px;
}

.salon-breadcrumb .active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* -============================all service cacdc */
.inner-head-service {
    padding: 60px 0px;
    position: relative;
}

.inner-head-service .header-sec p {
    text-align: end;
}

.service-secondary-1 {
    position: absolute;
    left: 3%;
    top: 5%;
    z-index: -1;
}

.inner-head-service .header-sec .main-head {
    width: 700px;
    text-align: right;
}

.inner-head-service .header-sec {
    display: flex !important;
    justify-content: end !important;
    align-items: end !important;
}

.inner-head-service .header-sec {
    position: relative;
    padding-right: 20px;
}

.inner-head-service .header-sec::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #D7A826, #D7A826);
    border-radius: 3px;
}

/* ====================================== */
.service-secondary-wrap {
    margin-top: 40px;
}

.service-secondary-wrap .service-secondary-card {
    position: relative;
    padding: 35px 26px;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid #eee;
    height: 100%;

}

.service-secondary-wrap .service-secondary-card {
    position: relative;
    padding: 35px;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid #eee;
}

.service-secondary-wrap .service-secondary-card:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-secondary-wrap .service-secondary-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: .4s;
    z-index: -1;
}

.service-secondary-wrap .service-secondary-card:hover::after {
    border-color: var(--secondary-color);
}

.service-secondary-wrap .card-content h4 {
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 10px;
    transition: .3s;
    color: var(--primary-color);
}

.service-secondary-wrap .card-content p {
    font-size: 14px;
    color: #777;
    max-width: 260px;
    transition: .3s;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-secondary-wrap .service-secondary-card:hover .card-content p {
    color: #ddd;
}

.service-secondary-wrap .card-arrow {
    display: inline-flex;
    margin-top: 15px;
    font-size: 20px;
    color: var(--secondary-color);
    transition: .3s;
}

.service-secondary-wrap .service-secondary-card:hover .card-arrow {
    transform: translateX(3px);
}

.service-secondary-wrap .card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary-color);
    background: rgba(215, 168, 38, 0.12);
    border-radius: 12px;
    transition: .35s;
}

.service-secondary-wrap .service-secondary-card:hover h4 {
    color: var(--secondary-color);
}

.service-secondary-wrap .service-secondary-card:hover .card-icon {
    background: var(--secondary-color);
    color: #021210;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(215, 168, 38, 0.35);
}

.service-secondary-wrap .card-shape {
    position: absolute;
    bottom: -15px;
    right: -15px;
    opacity: .15;
    transition: .4s;
}

.service-secondary-wrap .card-shape img {
    width: 120px;
}

.service-secondary-wrap .service-secondary-card:hover .card-shape {
    transform: scale(1.1);
    opacity: .25;
}

/* =================================service cta section */
.inner-service-cta {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.inner-service-cta .cta-content {
    max-width: 800px;
}

.inner-service-cta .main-head {
    margin-bottom: 20px;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-service-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.cta-content span {
    color: var(--secondary-color);
}

/* .cta-content {
    position: relative;
    max-width: 520px;
    color: #fff;
} */

.cta-content p {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #ddd;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    gap: 20px;
}


/* ================service detail wrap */
.inner-service-wrap {
    padding: 60px 0px;
    position: relative;
}

.inner-service-wrap .main-head {
    font-size: clamp(18px, 2.5vw, 28px);
}

.service-wrap-overlay-left {
    position: absolute;
    left: 0%;
    top: 60%;
    z-index: -1;
}

.service-wrap-overlay-right img {
    width: 300px;
    opacity: 0.5;
    animation: floatShape 6s ease-in-out infinite;
}

.service-wrap-overlay-left img {
    width: 80%;
    opacity: 0.5;
    animation: floatShape 6s ease-in-out infinite;
    z-index: -1;

}

/* Animation */
@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.service-wrap-overlay-right {
    position: absolute;
    right: 0%;
    top: 60%;
}

.inner-service-wrap .service-feature-list {
    padding: 0;
    margin-top: 25px;
}

.inner-service-wrap .service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    list-style: none;
}

.inner-service-wrap .service-feature-list i {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 4px;
}

.inner-service-wrap .service-feature-list strong {
    display: block;
    font-weight: 600;
}

.inner-service-wrap .service-feature-list span {
    font-size: 14px;
    color: #777;
}

.inner-service-wrap .service-wrap-right {
    position: relative;
    text-align: center;
}

/* =====================================================================================
                       service detail page 
======================================================================================= */
.inner-service-detail {
    padding: 60px 0px;
}

.inner-service-detail .sidebar-widget {
    background: #fff;
    padding: 25px 18px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.inner-service-detail .detail-sidebar .main-head {
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
    color: var(--primary-color);
}

.inner-service-detail .sidebar-service-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.inner-service-detail .sidebar-service-list li i {
    color: var(--secondary-color);
}

.inner-service-detail .sidebar-service-list li {
    margin-bottom: 10px;
}

.inner-service-detail .sidebar-service-list li:not(:last-child) {
    position: relative;
    margin-bottom: 12px;
}

.inner-service-detail .sidebar-service-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(180, 180, 180, 0.25),
            transparent);
}

.inner-service-detail .sidebar-service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: .3s;
}

.inner-service-detail .sidebar-service-list a:hover {
    background: #f5f5f5;
    color: var(--secondary-color);
}

.service-detail .main-head {
    color: var(--white-color);
}

.detail-img-wrap {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.detail-img-wrap::-webkit-scrollbar {
    height: 2px;
}

.detail-img-wrap::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.detail-img-wrap img {
    flex: 0 0 auto;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
}

.detail-img-wrap img:hover {
    transform: scale(1.05);
}

.detail-sidebar {
    position: relative;
}

.sidebar-fixed {
    position: fixed;
    top: 50px;
}

.sidebar-stop {
    position: absolute;
    bottom: 0;
    top: auto;

}

.destail-sec {
    padding: 15px 0px;
}

.service-detail .main-head span {
    color: var(--secondary-color);
}

.service-detail .main-head {
    font-size: clamp(20px, 2.5vw, 28px);
    max-width: 600px;
}

.service-detail .detail-head {
    position: relative;
    padding-left: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-detail .detail-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--secondary-color);
    border-radius: 3px;
}

.destail-sec .detail-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.destail-sec ul li span {
    color: var(--secondary-color);
}

.destail-sec .detail-list li {
    /* display: flex; */
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
    transition: 0.3s;
}

.destail-sec .detail-list li i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.why-choose-list li {
    display: flex;
    align-items: center !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
    background: #f9f9f9;
    padding: 12px 14px;
    border-radius: 8px;
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-list li i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 2px;
}

.why-choose-list li:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.service-detail-faq .inner-home-faq .custom-faq .accordion-button {
    font-size: clamp(13px, 1.4vw, 17px);
}

.service-detail-faq .inner-home-faq .faq-wrap {
    max-width: 97%;

}

/* before after */

.before-after-wrapper {
    max-width: 500px;
    margin: auto;
    position: relative;
}

.before-after-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.before-after-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: 5;
}

.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.label-before {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}

.label-after {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}

/* ================================================================= ===================
                       contact us page
======================================================================================  */
.contact-content-wrap {
    padding: 60px 0;
}

.contact-card {
    position: relative;
    background: #fff;
    padding: 30px 30px 30px;
    text-align: center;
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    transition: 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon img {
    width: 35px;
    height: 35px;
}

.contact-icon {
    position: absolute;
    top: 72%;
    left: 85%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c89b5e;
}

.contact-card:hover a {
    color: var(--secondary-color);
}

.contact-card a {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.6;
}

.contact-form {
    padding: 60px 0;
}

.contact-form p {
    max-width: 650px;
    margin: 15px auto 40px;
    color: #666;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group select {
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    padding: 0 45px 0 15px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.contact-form .form-group textarea {
    width: 100%;
    height: 140px;
    border: 1px solid #e5e5e5;
    padding: 15px 45px 15px 15px;
    resize: none;
}

.contact-form .form-group i {
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    color: #999;
}

.contact-form .textarea-group i {
    top: 20px;
    transform: none;
}

.contact-form .submit-btn {
    background: #111;
    color: #fff;
    padding: 14px 35px;
    border: none;
    margin-top: 10px;
    transition: 0.3s;
}

.contact-form .submit-btn:hover {
    background: #D7A826;
    color: #fff;
}

/* Hide default select arrow */
.contact-form .form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Hide default date icon */
.contact-form .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Hide default time icon */
.contact-form .form-group input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.inner-contact {
    position: relative;
}

.contact-overlay img {
    opacity: 0.2;
    animation: floatMove 8s ease-in-out infinite;
}

@keyframes floatMove {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }

}

.contact-overlay {
    position: absolute;
    right: 0%;
    bottom: 0%;
    z-index: -1;
}

.contact-overlay-1 {
    position: absolute;
    left: 7%;
    top: 24%;
    z-index: -1;
}

/* ============================================================
                   about us page
================================================================== */
.inner-blog {
    padding: 50px 0px;
}

.inner-about-us {
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
}

.about-sec-overlay-1 {
    position: absolute;
    left: -2%;
    bottom: -4%;
    z-index: -1;
    opacity: 0.3;
}

.about-sep {
    display: flex;
    gap: 30px;
    margin: 25px 0px;
    padding: 20px 10px;
    position: relative;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.about-sep::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 70%;
    background: var(--secondary-color);
}

.about-item {
    width: 50%;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}



.about-sep .about-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.about-sep .about-item i {
    font-size: clamp(18px, 2vw, 28px);
    color: var(--secondary-color);
}

.about-sep .about-item h5 {
    margin: 0;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 600;
    color: var(--secondary-color);
}

.about-sep .about-item p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
}

.about-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    padding-top: 30px;
    max-width: 1400px;
    margin: 30px auto;
}

.counter-item {
    position: relative;
    padding-right: 20px;
}

.counter-item:not(:last-child) ::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--secondary-color);
}


.about-counter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: var(--secondary-color);
}

.counter-item h3 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    color: var(--secondary-color);
}

.counter-item p {
    font-size: clamp(14px, 1vw, 16px);
    margin-top: 5px;
    color: #777;
}

/* ============================== About CTA === */
.inner-about-cta {
    width: 100%;
    background-image: url(../images/bg/vission-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0px;
}

.inner-about-cta p {
    color: var(--text-color);
}

.inner-about-cta .main-head {
    color: var(--primary-color) !important;
}

.inner-about-cta img {
    width: 500px;
    height: auto;
}

.inner-about-cta a {
    color: black !important;
    font-weight: 600;
}

/* ==============================mission and vission=== */
.inner-vission .row.g-4 {
    align-items: stretch;
}

.inner-vission {
    background: var(--primary-color);
    padding: 40px 0;
}

.vision-card {
    position: relative;
    background: #111418;
    padding: 50px 40px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
}

.vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(215, 168, 38, 0.2);
    transition: 0.4s;
}

.vision-card::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(215, 168, 38, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.vision-card:hover {
    transform: translateY(-8px);
}

.vision-card:hover::before {
    border-color: var(--secondary-color);
}

.vision-card:hover::after {
    opacity: 1;
}

.vision-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: clamp(22px, 2vw, 28px);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.vision-card p {
    font-size: clamp(14px, 1vw, 16px);
    color: #cfcfcf;
    line-height: 1.7;
}

.partner-wrap {
    margin-top: 40px;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    width: 110px;
    margin: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}


.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ============================partner */
.inner-partners {
    padding: 30px 0px;
}

/* ========================================================================
                  blog page
=============================================================================== */
.blog-wrap .blog-card {
    background: #111418;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
    height: 100%;
}

.blog-wrap .blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(215, 168, 38, 0.15);
    transition: 0.4s;
}

.blog-wrap .blog-card:hover::before {
    border-color: var(--secondary-color);
}

.blog-wrap .blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(215, 168, 38, 0.15), transparent 70%);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.blog-wrap .blog-card:hover::after {
    opacity: 1;
}

.blog-wrap.blog-wrap .row {
    align-items: stretch;
}

.blog-wrap .blog-wrap .col-lg-4 {
    display: flex;
}

.blog-wrap .blog-img {
    position: relative;
    overflow: hidden;
}

.blog-wrap .blog-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.6s;
}

/* image overlay */
.blog-wrap .blog-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.4s;
}

.blog-wrap .blog-card:hover .blog-img::before {
    opacity: 1;
}

/* image hover */
.blog-wrap .blog-card:hover img {
    transform: scale(1.12) rotate(1deg);
}

.blog-wrap .blog-icon {
    position: absolute;
    top: -25px;
    left: 20px;
    background: var(--secondary-color);
    color: #000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.blog-wrap .blog-card:hover .blog-icon {
    transform: translateY(-6px);
}

.blog-wrap .blog-content {
    position: relative;
    padding: 35px 25px 25px;
}

.blog-wrap .blog-content h4 {
    font-size: clamp(16px, 1.5vw, 20px);
    margin-bottom: 12px;
}

.blog-wrap .blog-content h4 a {
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s;
}

.blog-wrap .blog-content h4 a:hover {
    color: var(--secondary-color);
}

.blog-wrap .blog-content p {
    color: var(--text-color);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-wrap .blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.blog-wrap .blog-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--secondary-color);
    transition: 0.4s;
}

.blog-wrap .blog-btn:hover::after {
    width: 100%;
}

.blog-wrap .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/*  
.mail-card,
.phone-card,
.location-card{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mail-card{
    background-image: url('../images/bg/mail.png');
}

.phone-card{
    background-image: url('../images/bg/phone.png');
}

.location-card{
    background-image: url('../images/bg/location.png');
} */

/* ==========================================================
                 nail art page
=============================================================  */
.inner-nail-art {
    padding: 40px 0px;
}

/* =======================nail services */
.inner-nail-services .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
}

.inner-nail-services .row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.inner-nail-services .col-lg-5,
.inner-nail-services .col-lg-7 {
    display: flex;
}

.nail-service-left,
.nail-service-right {
    flex: 1;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    height: 100%;
}


.nail-service-right {
    background-image: url('../images/services/nailart/nail-left.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.therapy-service-right {
    flex: 1;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    height: 100%;
}

.therapy-service-right {
    background-image: url('../images/services/therapy/therapy-left.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.nail-service-left {
    background-image: url('../images/bg/bridal-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-nail-art p {
    text-align: justify;
}

.nail-art-right img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nail-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    padding: 40px;
}

.nail-service-grid .nail-box {
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    transition: 0.4s;
    position: relative;
}

.nail-service-grid .nail-box img {
    width: 50px;
    margin-bottom: 12px;
    transition: 0.4s;
}

.nail-service-grid .nail-box h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.nail-service-grid .nail-box p {
    font-size: 14px;
    color: var(--text-color);
}

.nail-service-grid .nail-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.nail-service-grid .nail-box:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nail-service-grid .nail-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(215, 168, 38, 0.2);
    border-radius: 8px;
    transition: 0.3s;
    z-index: -1;
}

.nail-service-grid .nail-box:hover::before {
    border-color: var(--secondary-color);
}

.nail-service-left .main-head {
    color: var(--primary-color);
}

.nail-service-header {
    display: none;
}

.nail-service-left .nail-box:hover h5 {
    color: var(--secondary-color);
}


/* ====================================nail works page  */
.inner-nail-work {
    padding: 50px 0px;
}

.nail-work-wrap {
    margin-top: 30px;
}

.nail-work-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 120px);
    gap: 15px;
}

.nail-work-wrap .item {
    overflow: hidden;
    border-radius: 12px;
}

.nail-work-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.nail-work-wrap img:hover {
    transform: scale(1.08);
}

.item1 {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.item2 {
    grid-column: 1 / span 2;
    grid-row: 3 / span 3;
}

.item3 {
    grid-column: 3 / span 2;
    grid-row: 1 / span 3;
}

.item4 {
    grid-column: 3 / span 2;
    grid-row: 4 / span 2;
}

.item5 {
    grid-column: 5 / span 1;
    grid-row: 1 / span 5;
}

/* ==================main service page =============== */
.inner-main-service {
    padding: 50px 0px;
}

.service-main-wraper {
    margin-top: 25px;
}

.inner-main-service .main-services {
    background: var(--primary-color);
    border-radius: 18px;
    padding: 80px 28px 50px 28px;
    position: relative;
    text-align: center;
    overflow: hidden;
    transition: all .4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.inner-main-service .main-services:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.inner-main-service .service-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.inner-main-service .main-head {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 30px;
}

.inner-main-service .service-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.inner-main-service .service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

.inner-main-service .main-services:hover .main-head {
    color: var(--secondary-color);
}

.inner-main-service .main-services:hover img {
    transform: scale(1.08);
}

.inner-main-service .service-tag {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
}

.inner-main-service .service-text {
    margin-top: 16px;
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.6;
}

.inner-main-service {
    position: relative;
}

.main-service-overlay-1 img {
    width: 300px;
    height: auto;
}

.main-service-overlay-1 {
    position: absolute;
    left: 0%;
    top: 0%;
    opacity: 0.4;
    z-index: -1;
}

.inner-main-service .main-head {
    text-align: center;
}

.main-service-overlay-2 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    z-index: -1;
}

.service-main-wraper .row {
    display: flex;
    flex-wrap: wrap;
}

.service-main-wraper .col-lg-4,
.service-main-wraper .col-md-6 {
    display: flex;
}

.main-services {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}






















.custom-dropdown {
    position: relative;
}

.custom-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-dropdown.open>.dropdown-menu {
    display: block;
}

/* submenu */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* ====================================client testimonial video */
.inner-home-video {
    padding: 50px 0px;
}

.inner-home-video .client-video-wrap {
    gap: 20px;
    margin-top: 30px;
}

.inner-home-video .video-box {
    cursor: pointer;
}

.inner-home-video .video-box video {
    width: 100%;
    height: 550px;
    border-radius: 15px;

    object-fit: cover;
}


.inner-home-video .video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.inner-home-video .video-popup video {
    width: 70%;
    max-height: 80%;
}

.inner-home-video .close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/*=-============================== form modal popup */
.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.form-popup .popup-content {
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    overflow: hidden;
    position: relative;
}

.form-popup .popup-video {
    flex: 1;
}

.form-popup .popup-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-popup .popup-form {
    flex: 1;
    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-popup .popup-form input,
.form-popup .popup-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.popup-form h3,
.popup-form p {
    text-align: center;
}

.form-popup .popup-form button {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-weight: 500;
}

.form-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.form-popup .popup-content {
    animation: popupFade 0.4s ease;
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===========================gallry page */
.main-gallery {
    padding: 50px 0px;

}


.main-gallery .header-sec .main-head {
    width: 700px;
    text-align: right;
}

.main-gallery .header-sec {
    display: flex !important;
    justify-content: end !important;
    align-items: end !important;
}

.main-gallery .header-sec {
    position: relative;
    padding-right: 20px;
}

.main-gallery .header-sec::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #D7A826, #D7A826);
    border-radius: 3px;
}


.gallery-filter {
    text-align: left;
    margin-bottom: 40px;
    margin-top: 30px;
    position: relative;
}

.gallery-filter button {
    background: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
}

.gallery-filter button.active {
    /* background: #c2992ae1; */
    /* background: var(--secondary-color); */
    background: #fff !important;
    color: #000 !important;
}

.gallery-filter button::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 25px;
    z-index: -100;
    width: 0%;
    height: 2px;
    background: #D7A826;
    transition: 0.4s ease;
}

.gallery-filter button.active::after {
    width: 50%;
}



.main-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
    justify-content: center;
}

.gallery-item {
    width: 100%;
}

.gallery-item.big {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}


.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.main-gallery {
    position: relative;
}

.main-gallery-overlay-1 {
    position: absolute;
    top: 0%;
    left: 0%;
}

.main-gallery-overlay-2 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    z-index: -1;
}

.main-gallery .gallery-dropdown {
    display: none;
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 0 auto 15px auto;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.main-gallery .gallery-pagination {
    text-align: right;
    margin-top: 40px;
}

.main-gallery .page-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 6px;
}

.main-gallery .page-btn.active {
    background: #D7A826;
    color: #fff;
    border-color: #D7A826;
}

.detail-sidebar {
    position: sticky !important;
    top: 120px !important;
    align-self: flex-start !important;
}


/* .inner-service-detail  .order-3{
    background-color: white;
    padding: 30px 10px;
} */

.inner-service-benifits .detail-head {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--white-color);
}

.benifits-right img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benifits-right img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benifits-right {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ================treaning style */


.trending-style .main-head {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
}

.trending-style .main-head span {
    color: var(--secondary-color);
}

/* SUBTITLE */
.section-subtitle {
    color: var(--text-color);
    font-size: clamp(14px, 2vw, 16px);
}

.trending-card h4 {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 500;
    color: var(--secondary-color);
}

.trending-card {
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.bottom-text {
    color: var(--text-color);
    font-size: clamp(14px, 2vw, 16px);
}

/* =====================why choose */
.section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
}

.why-choose p {
    color: var(--text-color);
    font-size: clamp(14px, 2vw, 16px);
}

.choose-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;

    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.choose-card i {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 12px;
}

.choose-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.choose-card p {
    font-size: 14px;
    color: #666;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* ===============our story section */
.inner-our-story {
    padding: 50px 0px;
}

.inner-our-story .story-left img {
    width: 90%;
    border-radius: 10px;
    height: auto;
}

.story-right .main-head {
    font-size: clamp(22px, 2.5vw, 28px);
}

/* =================head massage  */
.head-massage {
    padding: 50px 0px;
}

.head-massagae-left img {
    border-radius: 10px;
}

.head-massagae-left {
    display: flex;
    justify-content: center;
}

.head-massagae-right .main-head {
    font-size: clamp(16px, 2vw, 20px);
}

.radio-wraper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 30px;
}

.radio-wraper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.radio-wraper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.radio-wraper:hover img {
    transform: scale(1.05);
}

.radio-wraper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s ease;
}

.radio-wraper:hover::before {
    opacity: 1;
}