/********** Template CSS **********/

/* first page read more */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.back-to-top:hover {
    background-color: white;
    color: black;
}

.back-to-top-1 {
    position: fixed !important;
    display: none;
    width: 100%;
    color: white;
    background-color: black;
    right: 45px;
    bottom: 150px;
    z-index: 99;
}

.back-to-top-1:hover {
    background-color: white;
    color: black;
}

/* back to top */
.scroll-to-top {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(0, 0, 0);
    /* Or any color */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

.scroll-to-top:hover {
    border: 1px solid black;
}


/* border annimation */
.box {
    --border-angle: 0deg;
    border-radius: 12px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px hsl(0 0% 0% / 25%);
    animation: border-angle-rotate 2s infinite linear;
    border: 0.5rem solid transparent;
    position: relative;

    &.b {
        background: linear-gradient(white, white) padding-box,
            conic-gradient(from var(--border-angle),
                var(--bg) 50%,
                white) border-box;
    }

    &:before,
    &:after {
        content: "";
        display: block;
        position: absolute;
        inset: 4px;
        border-radius: 100%;
        animation: border-angle-rotate 4s infinite linear;
        z-index: -1;
    }

    &:before {
        inset: 0;
        background: repeating-conic-gradient(from var(--border-angle),
                var(--bg),
                var(--bg) 30deg,
                oklch(100% 50% 190deg) calc(360deg / 6)) border-box;
    }

    &:after {
        background: repeating-conic-gradient(from calc(var(--border-angle) * -1),
                oklch(100% 40% 50deg),
                black 60deg) border-box;
    }
}


@keyframes border-angle-rotate {
    from {
        --border-angle: 0deg;
    }

    to {
        --border-angle: 360deg;
    }
}

/*  */










/*** Fonts ***/
.font-work-sans {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 7px;
    outline: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: var(--bs-primary) */
    color: rgb(255, 255, 255);
    background-color: #cdb388;
    /* border-bottom: 1px solid rgb(255, 255, 255); */
    /* padding: 7px; */
    border-radius: 5px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover {
    /* color: var(--bs-white); */
    color: #080808 !important;
    /* background: var(--bs-primary); */
    background: rgb(255, 255, 255);


}

.navbar .dropdown-menu .dropdown-item.active {
    color: white;

    border-bottom: 1px solid white;
    background: var(--bs-primary);

}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-top: 10px;
        width: 50%;
        text-align: center;
        padding: 10px 0;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .home {
        /* margin-top: 10px; */
        width: 100px;
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        /* padding: 10px 0; */
    }

}

.navbar .nav-item .dropdown-menu {
    background-color: black;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
    /* color: rgba(133, 77, 14, 0.445); */
}

.navbar .btn-primary-1 {
    border: 2px solid black;
    background: var(--bs-light);
    /* color: rgba(133, 77, 14, 0.445); */
}

.navbar .btn-primary-1:hover {
    background: var(--bs-primary);
    color: white;
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}

/* navbar toggle start */



/* navbar toggle end */

/*** Hero Header ***/
.hero-header {
    background: url(../img/page-header.jpg) top left no-repeat;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-header-1 {
    /* background: url(../img/back1.png) top left no-repeat; */
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Improved hero layout and carousel design */
.hero-header .row {
    align-items: center;
}

.hero-header .hero-header-text {
    padding: 48px 24px;
}

.hero-header .welcome {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
}

.hero-header .hero-title {
    font-size: 3rem;
    margin-top: 0.6rem;
}

.hero-header .hero-sub {
    color: #444;
    margin-top: 0.8rem;
}

.header-carousel {
    position: relative;
    /* Use aspect-ratio so slides are perfect squares that scale with column width */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    background: #111;
}

.header-carousel .item {
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
}

.header-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide caption overlay */

/* Training split layout - professional polish */
.training-split .training-photo {
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.training-split .training-photo .overlay {
    padding: 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 100%);
    width: 100%;
}

.training-split .training-photo .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 12px;
}

.training-split .training-photo .title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.training-split .training-photo .sub {
    opacity: 0.95;
    font-size: 14px;
}

.training-split .bg-white {
    background: #fff;
}

.training-split .btn-dark {
    background: #111;
    border-color: #111;
}

/* small utility for spinner toggling */
.ts-spinner {
    width: 1.4rem;
    height: 1.4rem;
    display: none;
}

.ts-spinner.show {
    display: inline-block;
}

/* Toast placement for training messages */
.training-toast-container {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 1100;
}

/* Header carousel & scrollbar rules that were previously inline */
.header-carousel {
    position: relative;
    min-height: 320px;
}

.header-carousel .item {
    height: 100%;
}

.header-carousel .item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {

    .header-carousel,
    .header-carousel .item img {
        height: 200px;
    }

    .policy-main .policy-para-main .policy-para-sub {
        font-size: 14px;
        /* padding: 5px; */
        /* line-height: 26px; */
    }

    .policy-main .policy-heading {
        font-size: 19px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #cdb388;
}

::-webkit-scrollbar-thumb:hover {
    background: #fffdfd;
    border: 2px solid black;
}

.header-carousel .slide-caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 6;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-header .col-lg-6 {
    padding-left: 18px;
    padding-right: 18px;
}

.hero-header .col-lg-6.order-lg-2 {
    padding-left: 8px;
}

.hero-header .col-lg-6.order-lg-1 {
    padding-right: 8px;
}

/* Center pagination dots and style */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.header-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    border-radius: 50%;
}

.header-carousel .owl-dot.active span {
    background: #fff;
    transform: scale(1.15);
}

/* Nav arrow tweaks (if enabled) */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.header-carousel .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-header .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .header-carousel {
        border-radius: 8px;
    }

    .hero-header {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hero-header .hero-header-text {
        padding: 18px 12px;
    }

    .hero-header .hero-title {
        font-size: 1.6rem;
    }

    .social-wrap {
        margin-top: 10px;
        margin-bottom: -20px;

    }
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/page-header.jpg) no-repeat;
    height: 500px;
    width: 100%;
    background-size: cover;
}

.firstBack {
    /* background: url(../img/back1.png) no-repeat center center; */
    background-size: cover;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    opacity: 0.9;
    /* width: 100%; */
}

/* btn book annimation start*/

/* 4 */
.btn-4 {
    position: relative;
    color: #000;
    z-index: 2;
    line-height: 40px;
    padding: 8px 15px;
    background-color: transparent;
}

.btn-4:hover {
    border: none;
}

.btn-4:before,
.btn-4:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    border: 2px solid;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-4:before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #000;
    border-left-color: #000;
}

.btn-4:after {
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #000;
    border-right-color: #000;
}

.btn-4:hover:before,
.btn-4:hover:after {
    border-color: #000;
    height: 100%;
    width: 100%;
}



/* btn book annimation end */


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}

.service .service-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: -10px;
}



/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Gallery ***/

.gallery-section {
    max-width: 1400px;
    margin: 8px auto;
    position: relative;
    overflow: hidden;
    /* height: 400px; */
    /* padding: 0 20px; */
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 50s linear infinite;
}

/* First gallery: Left to Right */
#gallery1 .gallery-track {
    animation-direction: normal;
}

/* Second gallery: Right to Left */
#gallery2 .gallery-track {
    animation-direction: reverse;
}

.gallery-track:hover {
    animation-play-state: paused;
}

/* Pause only on hover */

.gallery-item {
    min-width: 320px;
    padding: 0 12px;

}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.4s;
    /* box-shadow: 0 8px    25px rgba(0, 0, 0, 0.6); */
}

/* Duplicate images for seamless loop */
.gallery-track {
    width: max-content;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal img {
    max-width: 92%;
    max-height: 92vh;
    border-radius: 16px;
    animation: zoom 0.5s;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 60px;
    cursor: pointer;
    opacity: 0.8;
}

.close:hover {
    opacity: 1;
}

@keyframes zoom {
    from {
        transform: scale(0.4)
    }

    to {
        transform: scale(1)
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {
    .gallery-item {
        min-width: 260px;
    }

    .gallery-item img {
        height: 200px;
    }
}



/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/* section */
.section-title h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 6px;
    color: #000;
    letter-spacing: 0.3px;
    padding: 0;
}

.section-title::after {
    content: "";
    height: 3px;
    background: #fbb900;
    width: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

/****************/
/*	 BX-SLIDER 	*/
/****************/
section.client {
    padding: 4em 0em;
    background-color: #eee;

}

section.client .section-title {
    margin-bottom: 6em;
}

.bx-controls {
    position: relative;
}

.bx-wrapper .bx-pager {
    text-align: center;
    padding-top: 30px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    zoom: 1;
    display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}




/* section */

/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    /* background: var(--bs-primary) !important; */
    background-color: black !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    /* color: var(--bs-dark) !important;
     */
    color: white !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/* Google-style review card */
.google-review {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.google-review .stars {
    color: #f5c518;
    /* Google star yellow */
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.google-review .rating-num {
    color: #111;
    font-weight: 700;
    margin-left: 8px;
    font-size: 0.95rem;
}

.google-review .review-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.google-review .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-review .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-review .reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.google-review .reviewer .name {
    font-weight: 700;
    color: #111;
}

.google-review .reviewer .source {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-review .time {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .google-review {
        min-height: 180px;
        padding: 16px;
    }

    .google-review .reviewer img {
        width: 40px;
        height: 40px;
    }
}

/* Polished carousel controls for testimonials */
.testimonial-carousel .owl-stage-outer {
    padding: 8px 0;
}

.testimonial-carousel .google-review {
    margin: 6px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

.testimonial-carousel .owl-nav button {
    background: #111;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
}

.testimonial-carousel .owl-nav button:hover {
    transform: translateY(-3px);
    background: #000;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 12px;
}

.testimonial-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.testimonial-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: block;
    border-radius: 50%;
    transition: all .2s ease;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: #111;
    transform: scale(1.15);
}

/* Slight hover lift for cards */
.google-review {
    transition: transform .25s ease, box-shadow .25s ease;
}

.google-review:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.12);
}

/* Featured reviews carousel arrow positioning */
.featured-reviews-wrap {
    position: relative;
}

.featured-reviews-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.featured-reviews-carousel .owl-nav .owl-prev,
.featured-reviews-carousel .owl-nav .owl-next,
.featured-reviews-carousel .owl-nav .owl-prev-custom,
.featured-reviews-carousel .owl-nav .owl-next-custom {
    pointer-events: all;
    position: absolute;
    background: #111;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    transition: transform .18s ease, background .18s ease;
}

.featured-reviews-carousel .owl-nav .owl-prev {
    left: -22px;
}

.featured-reviews-carousel .owl-nav .owl-next {
    right: -22px;
}

.featured-reviews-carousel .owl-nav .owl-prev:hover,
.featured-reviews-carousel .owl-nav .owl-next:hover {
    transform: translateY(-4px);
    background: #000;
}

@media (max-width: 767px) {
    .featured-reviews-carousel .owl-nav .owl-prev {
        left: 8px;
    }

    .featured-reviews-carousel .owl-nav .owl-next {
        right: 8px;
    }
}



/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

/* Waxing / beauty background section */
.waxing-hero {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)), url('../img/hero-slider-2.jpg');
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 80px;
}

.waxing-hero .container {
    position: relative;
    z-index: 2;
}

.waxing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.waxing-hero h1,
.waxing-hero p,
.waxing-hero .font-dancing-script {
    color: #fff !important;
}

.waxing-hero .para-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.waxing-hero .lead-paragraph {
    color: #f3f3f3;
}

/* Decorative flourish under headings */
.waxing-hero .section-decor {
    height: 4px;
    width: 120px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.4));
    margin: 14px auto 24px;
    border-radius: 4px;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .waxing-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Two-row navbar styles (top bar + centered main nav) */
.two-row-navbar {
    background: #fff;
}

.two-row-navbar .top-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.two-row-navbar .top-bar .logo-wrap img {
    height: 56px;
}

.two-row-navbar .social-wrap {
    display: flex;
    gap: 10px;
}

.social-icon-index {
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 8px;
    transition: all .18s ease;
}

.social-icon i {
    pointer-events: none;
    padding: 12px;
    color: rgb(0, 0, 0);
}

.social-icon-index:hover {
    text-align: center;
    color: #000000;
    background: #fcfcfc;
}

.social-icon i:hover {
    color: #ffffff !important;
}

.social-icon-i {
    width: 40px;
}

.social-icon-c {
    width: 30px;
}

/* about social icon */
.social-icon-about {
    text-decoration: none;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: 8px;
    transition: all .18s ease;
}

.social-icon-about:hover {
    color: #050505 !important;
    /* background:#cdb388; */
    /* transform: translateY(-2px); */
}

.contact-para {
    font-family: 'Times New Roman', Times, serif;
}


.main-nav {
    background: #fff;
}

.main-nav .navbar-nav .nav-link {
    color: #111;
    font-weight: 700;
    padding: 10px 14px;
    margin: 0 6px;
    border-radius: 8px;
    transition: all .18s ease;
}

.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link:focus,
.main-nav .navbar-nav .nav-link.active {
    background: #111;
    color: #fff !important;
    transform: translateY(-3px);
}

.main-nav .dropdown-menu {
    min-width: 200px;
}

.main-nav .dropdown-item:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 767px) {
    .social-icon {
        font-size: 2rem;
        padding: 6px;
    }

    .main-nav .navbar-nav .nav-link {
        padding: 8px 10px;
    }
}

/* Paragraph / copy styling - modern, readable */
p {
    font-size: 16px;
    line-height: 1.75;
    color: #222;
    margin-bottom: 1.25rem;
}

.lead-paragraph {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    max-width: 900px;
    margin: 0 auto 1rem;
}

/* Dark card style for highlighted paragraphs */
.para-card {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #000, #111);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1000px;
    margin: 0 auto 1rem;
}

.para-card.small {
    padding: 12px 14px;
    font-weight: 600;
}

.para-center {
    text-align: center;
}

@media (max-width: 767px) {
    p {
        font-size: 15px;
    }

    .lead-paragraph {
        font-size: 1rem;
        padding: 0 10px;
    }

    .para-card {
        padding: 12px;
        border-radius: 10px;
    }
}

/* marque */

.marquee {
    font-size: 2vw;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    height: 2.5vw;
    overflow: hidden;
    /* background-color: #000; */
    position: relative;
    rotate: -10deg;
}

/* nested div inside the container */
.marquee div {
    display: block;
    width: 200%;
    position: absolute;
    overflow: hidden;
    /* padding: 30px; */

    animation: marquee 20s linear infinite;
}

/* span with text */
.marquee span {
    float: left;
    width: 50%;
    /* padding: 30px; */

}

/* keyframe */
@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@media (max-width: 768px) {
    .marquee {
        font-size: 4vw;
        height: 7vw;
    }
}

/*  */

.bgg {
    position: relative;
    margin: auto;
    height: 135px;
    line-height: 64px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    /* border: 2px solid #cdb388; */
    border-radius: 10px;
    /* background: rgb(252, 252, 252); */
    cursor: pointer;

    &:hover {
        filter: contrast(1.1);
    }

    &:active {
        filter: contrast(0.9);
    }

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid #cdb388;
        transition: all .5s;
        animation: clippath 3s infinite linear;
        border-radius: 10px;
    }

    &::after {
        animation: clippath 3s infinite -1.5s linear;
    }
}

@keyframes clippath {

    0%,
    100% {
        clip-path: inset(0 0 98% 0);
    }

    25% {
        clip-path: inset(0 98% 0 0);
    }

    50% {
        clip-path: inset(98% 0 0 0);
    }

    75% {
        clip-path: inset(0 0 0 98%);
    }
}

.bg::before {
    background: rgba(255, 215, 0, .5);
}

.training-font {
    font-family: 'Times New Roman', Times, serif;
}

/* training */
.traine-main {
    border: 3px solid #cdb388;
    border-radius: 10px;
}





/* about mj section */
.about-mj-heading {
    font-weight: 900;
    font-family: 'Times New Roman', Times, serif;
}

.about-mj-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    line-height: 20px;
}

/* about policy start */

.policy-main {
    border: 3px solid #cdb388;
    border-radius: 10px;
    /* padding: 10px; */
}

.policy-heading {
    padding: 10px;
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.policy-para-main {
    padding-bottom: 1px;
    /* line-height: 22px; */
}

.policy-para-sub {
    padding-bottom: 11px;
    color: black;
    font-size: 20px;
    /* line-height: 30px; */
    /* letter-spacing: 1px; */
    /* font-weight: 900; */
}

/* about policy end */

/* Global responsive image rules and mobile spacing tweaks */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Google-style review cards (polished spacing and responsive layout) */
.reviews-section .reviews-tabs {
    gap: 18px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* floating call btn */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    align-items: center;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    background: #ffffff;
    /* prominent color for call */
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 220ms ease, transform 220ms ease;
    opacity: 1;
}

.floating-btn.scroll-btn {
    background: #cdb388;
}

/* Hidden state uses opacity + pointer-events for smooth transition */
.floating-btn.hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

/* slightly lift on hover */
.floating-btn:focus,
.floating-btn:hover {
    transform: translateY(-3px);
    outline: none;
}

/* responsive tweak */
@media (max-width: 480px) {
    .floating-actions {
        right: 12px;
        bottom: 14px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }
}

/* service book btn */

.tagline {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    width: 50%;
    text-align: center;

}

.tagline-main {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    width: 20%;
    text-align: center;

}

.tagline::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fffefe;
    border-bottom: 1px solid #000;
    margin-top: 8px;
}

.tagline-main::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fffefe;
    border-bottom: 2px solid #000;
    margin-top: 8px;
}

.button-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.book-button {
    background: white;
    border: 4px solid #000;
    border-radius: 10px;
    padding: 12px 10px;
    font-size: 17px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
}

.book-button:hover {
    /* background: #f0f0f0; */
    color: #cdb388;
}

/* Three Slanted Lines (Top Left Spark) */
.spark-lines {
    position: absolute;
    top: -10px;
    left: -15px;
    z-index: 1;
}

.spark-lines span {
    display: block;
    width: 15px;
    height: 3.5px;
    background: #000;
    position: absolute;
    border-radius: 2px;
}

.spark-lines span:nth-child(1) {
    top: -6px;
    left: 12px;
    transform: rotate(90deg);
}

.spark-lines span:nth-child(2) {
    top: -1px;
    left: -3px;
    transform: rotate(39deg);
}

.spark-lines span:nth-child(3) {
    top: 14px;
    left: -7px;
    transform: rotate(-2deg);
}

/* Arrow (Bottom Right) */
.arrow {
    position: absolute;
    bottom: -25px;
    right: -35px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    z-index: 1;
}