@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

font-face {
    font-family: 'BaseNeue';
    src: url('../font/BaseNeueTrial-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BaseNeue';
    src: url('../font/BaseNeueTrial-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'BaseNeue';
    src: url('../font/BaseNeueTrial-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

:root {
    --black: #0d0d0d;
    --bg: #191919;
    --bg2: #111111;
    --card: #1e1e1e;
    --border: #2a2a2a;
    --neon: #bdfe00;
    --neon-dim: rgba(189, 254, 0, 0.18);
    --neon-glow: 0 0 18px rgba(189, 254, 0, 0.55), 0 0 40px rgba(189, 254, 0, 0.22);
    --neon-text-glow: 0 0 12px rgba(189, 254, 0, 0.8);
    --white: #ffffff;
    --muted: #a0a0a0;
    --font-head: 'BaseNeue', sans-serif;
    /* --font-head: 'Roboto Condensed', sans-serif; */
    --font-body: 'Roboto', sans-serif;
    --gap: 30px;
    --transition: all 0.4s ease-in-out;

    --red: #bdfe00;
    --red-dark: #fcb132;
    --red-glow: #bdfe0024;
    --bg: #0d0d0d;
    --surface: #161616;
    --surface2: #1e1e1e;
    --border: #2a2a2a;
    --text: #f0f0f0;
    --muted: #888;
    --accent: #ff6b35;
}


*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    outline: none
}

*,
*:focus {
    outline: none;
    -webkit-tap-highlight-color: #fff0
}

html {
    scroll-behavior: smooth
}

body {
    display: block;
    position: relative;
    font: 400 14px/1.1 'BaseNeue', sans-serif;
    background: var(--bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    letter-spacing: .3px;
    /* background-image: url(../images/body-bg.webp);
    background-attachment: fixed; */
}

::-webkit-input-placeholder {
    color: var(--black);
    opacity: 1
}

:-moz-placeholder,
::-moz-placeholder {
    color: var(--black);
    opacity: 1
}

:-ms-input-placeholder {
    color: var(--black);
    opacity: 1
}

a {
    color: #464646;
    text-decoration: none
}

a:hover {
    color: #464646;
    outline: none;
    text-decoration: none
}

img {
    max-width: 100%;
    vertical-align: middle
}

svg {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor
}


.h-100-v {
    min-height: 100vh
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 20px;
    font-style: normal;
    font-size: 40px;
    color: var(--head-dark);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.5;
    position: relative;
}

h1,
.h1 {
    font-size: 30px
}

h2,
.h2 {
    font-size: 28px;
    line-height: 1
}

h3,
.h3 {
    font-size: 24px
}

h4,
.h4 {
    font-size: 18px
}

h5,
.h5 {
    font-size: 16px
}

h6,
.h6 {
    font-size: 15px
}

p {
    margin: 0 0 15px;
    overflow: hidden;
    text-align: left;
    color: #666666;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.58;
    letter-spacing: .3px;
    font-family: "Host Grotesk", sans-serif;
}

b {
    font-weight: 700
}

.view-more {
    margin-top: 5px;
    text-align: left;
}



input,
select,
textarea {
    background: var(--white);
    border: 1px solid rgb(70 70 70/.3);
    width: 100%;
    display: block;
    color: var(--text-dark);
    padding: 11px 16px;
    border-radius: 5px;
    letter-spacing: 0;
    height: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input::-webkit-input-placeholder {
    color: rgb(40 40 40/50%)
}

input::-moz-placeholder {
    color: rgb(40 40 40/50%)
}

input:-ms-input-placeholder {
    color: rgb(40 40 40/50%)
}

input:-moz-placeholder {
    color: rgb(40 40 40/50%)
}

textarea {
    min-height: 120px;
    padding: 14px
}

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

strong,
b {
    font-weight: 700
}

table {
    border-spacing: 0;
    border-collapse: collapse
}

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

a.btn {
    background: var(--bg);
    border-radius: 0;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 25px;
    display: inline-block;
    border: 1px solid var(--neon);
    color: var(--neon);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

a.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #0c0c0c;
    height: 100%;
    width: 100%;
    background: linear-gradient(120deg, #00000000, rgb(0 0 0 / 40%), #00000000);
    transition: 0.6s;
    transition-delay: 0.8s;
}

/* Hover effect */
a.btn:hover::after {
    left: 100%;
}

a.btn svg path {
    fill: var(--neon);
    transition: var(--transition);
}

a.btn:hover {
    background-color: var(--neon);
    border: 1px solid var(--neon);
    color: var(--bg);
    transform: scale(1.1);
    box-shadow: 0px 0px 17px 14px #bdff1152;
}

a.btn:hover svg path {
    fill: var(--bg);
}

@media screen and (min-width:1240px) {
    .container-fluid {
        padding: 0 8%;
    }
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0);
    transition: var(--transition);
    /* backdrop-filter: blur(14px); */
}

.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 5px 20px;
    transition: var(--transition);
    z-index: 99;
    border-radius: 0
}

.white-logo {
    display: block !important
}

.normal-logo {
    display: none !important
}

.scrolled .white-logo {
    display: none !important
}

.scrolled .normal-logo {
    display: block !important;
    width: 100%;
}

.arrow-icon.active path {
    fill: var(--text-dark) !important
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-dark)
}

.navbar .navbar-nav .sm-icons .nav-link svg {
    fill: var(--text-dark)
}

.navbar.scrolled .navbar-nav .sm-icons .nav-link svg {
    fill: var(--text-dark)
}

.navbar .container-fluid {
    padding: 0 40px
}

.navbar.scrolled .container-fluid {
    padding: 6px 40px;
    transition: .4s
}

.navbar .navbar-nav .nav-link {
    font-size: 24px;
    font-weight: 500 !important;
    color: var(--white);
    opacity: 1;
    margin: 0 16px;
    cursor: pointer;
    text-transform: capitalize
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--white);
    font-weight: 800
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--black) !important;
    font-weight: 800
}

.navbar-brand {
    width: 100%;
    max-width: 13%
}

.navbar-brand img {
    width: 100%;
    max-width: 45%
}

.navbar-brand {
    width: 100%;
    max-width: 25%
}

.navbar-brand img {
    width: 100%;
    max-width: 45%
}


.tp-showcase-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 110vh;
    padding: 80px 0;
}

.tp-showcase-slider-bg {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .tp-showcase-slider-bg::after {
    opacity: 0.7;
    background: #1d1d1d;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
} */

.z-index-2 {
    position: relative;
    z-index: 2;
}

.tp-showcase-slider-subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.tp-showcase-slider-title {
    font-size: 6.9vw;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.tp-showcase-slider-content p {
    color: var(--white);
    margin-bottom: 40px;
}

.tp-showcase-slider-title a span {
    color: var(--white);
}

.tp-showcase-slider-button-wrap .swiper-button-prev,
.tp-showcase-slider-button-wrap .swiper-button-next {
    position: absolute;
    display: flex;
    align-items: center;
    top: auto;
    color: #fff;
    z-index: 9;
    cursor: pointer;
    width: auto;
    bottom: 30px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.tp-showcase-slider-main .swiper-pagination {
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
}

.tp-showcase-slider-main .swiper-pagination-bullet {
    background: transparent;
    margin: 0 10px !important;
}


.tp-showcase-slider-button-wrap .swiper-button-prev {
    left: 5%;
}

.tp-showcase-slider-button-wrap .swiper-button-next {
    right: 5%;
}

.tp-showcase-slider-button-wrap .swiper-button-prev i {
    transition: 0.3s;
    margin-right: 7px;
}

.tp-showcase-slider-button-wrap .swiper-button-prev i,
.tp-showcase-slider-button-wrap .swiper-button-next i {
    transform: translateY(1px);
}

.tp-showcase-slider-button-wrap .swiper-button-next i {
    transition: 0.3s;
    margin-left: 7px;
}

.tp-showcase-slider-button-wrap .swiper-button-prev i,
.tp-showcase-slider-button-wrap .swiper-button-next i {
    transform: translateY(1px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-showcase-slider-title {
        font-size: 120px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-showcase-slider-title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .tp-showcase-slider-title {
        font-size: 50px;
    }

    .tp-showcase-slider-main .swiper-pagination {
        display: none;
    }

    .navbar-brand {
        max-width: 40%;
    }

    .navbar-brand img {
        width: 100%;
        max-width: 100%;
    }
}



.bg-img1 {
    /* background-image: url(../images/row-bgimage-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    overflow: visible;
}

.about-section .about-background-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    opacity: 1;
    width: 30%;
    height: auto;
    background-position: 0px 0px;
    position: absolute;
    background-image: url(../images/circle-img01.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: -1;
    /* animation: triangle_r 10s infinite cubic-bezier(.14, .36, .59, .9); */
}


.prt-icon {
    margin-bottom: 25px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    box-sizing: content-box;
    position: relative;
}

.prt-icon_element-color-darkcolor {
    color: var(--bg);
}

.prt-icon.prt-icon_element-size-lg {
    height: 78px;
    width: 78px;
    line-height: 78px;
}

.prt-icon.prt-icon_element-onlytxt {
    height: auto;
    width: auto;
    line-height: 1;
}

.about-section .prt-icon.prt-icon_element-onlytxt {
    display: contents;
}

.about-section .prt-icon.prt-icon_element-onlytxt img {
    width: 191px;
    height: 188px;
    max-width: 191px;
}

.about-section .about-overlay-box .about-overlay-contain {
    background-color: var(--white);
    padding: 10px 0 0 35px;
}





/* about-section */
.section-title {
    position: relative;
    margin-bottom: 12px;
    margin-top: -7px;
}

.section-title h2 {
    position: relative;
    color: var(--white);
    font-size: 34px;
    line-height: 1.6;
}

.heading-title p {
    position: relative;
    color: var(--white);
    font-size: 22px;
    line-height: 1.6;
}

.section-title .title-desc p {
    padding-bottom: 15px;
    margin: 0;
}

.section-title.title-style-center_text {
    text-align: center;
}

.section-title.title-style-center_text .title-desc p {
    margin-bottom: 15px;
    width: 54%;
    margin: 0 auto;
}

.section-title .title-header {
    padding-bottom: 0px;
}

.section-title .title-header p {
    color: var(--white);
}

.about-section {
    position: relative;
}

.about-section .about-contain {
    position: relative;
    z-index: 2;
}

.about-section .section-title h2 {
    margin-bottom: 20px;
    margin-right: -28px;
}

.about-section .section-title .about-section .about-overlay-box {
    display: flex;
    justify-content: right;
}

.about-section .about-overlay-box {
    display: flex;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    text-align: left;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: -140px;
    margin-right: -164px;
    margin-bottom: 100px;
    padding-top: 10px;
    justify-content: end;
    /*    animation: fadeInRight 3s ease-out forwards;*/
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-section .about-overlay-box .about-overlay-contain h3 {
    font-size: 26px;
    line-height: 36px;
    text-transform: capitalize;
}

.about-section .about-overlay-box .about-overlay-contain {
    background-color: var(--white);
    padding: 10px 0 0 35px;
}

.about-section .about-overlay-box .about-inner-contain {
    align-items: center;
    align-content: center;
    display: flex;
    width: 593px;
    padding: 0px 40px 0px 0px;
    background-color: #FFFFFF;
}

.about-section .prt-icon.prt-icon_element-onlytxt {
    display: contents;
}

.about-section .prt-icon.prt-icon_element-onlytxt img {
    width: 191px;
    height: 188px;
    max-width: 191px;
}

.prt-about-block1 {
    text-align: left;
}

.prt-about-block1 h3 {
    font-size: 20px;
    line-height: 30px;
}



.about-section .about-content .section-title {
    /* margin-left: 53px; */
    margin-top: 35px;
}

.about-section .about-icon img.img-fluid {
    width: auto;
    margin-top: 30px;
}

@keyframes triangle_r {
    0% {
        -webkit-transform: rotate(7deg) rotateZ(0deg) translate3d(2%, 5%, 0) rotateZ(0deg);
        -ms-transform: rotate(7deg) rotateZ(0deg) translate3d(2%, 5%, 0) rotateZ(0deg);
        transform: rotate(7deg) rotateZ(0deg) translate3d(2%, 5%, 0) rotateZ(0deg);
    }

    25% {
        -webkit-transform: rotate(3deg) rotateZ(90deg) translate3d(2%, 5%, 0) rotateZ(-90deg);
        -ms-transform: rotate(3deg) rotateZ(90deg) translate3d(2%, 5%, 0) rotateZ(-90deg);
        transform: rotate(3deg) rotateZ(90deg) translate3d(2%, 5%, 0) rotateZ(-90deg);
    }

    50% {
        -webkit-transform: rotate(6deg) rotateZ(180deg) translate3d(2%, 5%, 0) rotateZ(-180deg);
        -ms-transform: rotate(6deg) rotateZ(180deg) translate3d(2%, 5%, 0) rotateZ(-180deg);
        transform: rotate(6deg) rotateZ(180deg) translate3d(2%, 5%, 0) rotateZ(-180deg);
    }

    75% {
        -webkit-transform: rotate(9deg) rotateZ(270deg) translate3d(2%, 5%, 0) rotateZ(-270deg);
        -ms-transform: rotate(9deg) rotateZ(270deg) translate3d(2%, 5%, 0) rotateZ(-270deg);
        transform: rotate(9deg) rotateZ(270deg) translate3d(2%, 5%, 0) rotateZ(-270deg);
    }

    100% {
        -webkit-transform: rotate(7deg) rotateZ(360deg) translate3d(2%, 5%, 0) rotateZ(-360deg);
        -ms-transform: rotate(7deg) rotateZ(360deg) translate3d(2%, 5%, 0) rotateZ(-360deg);
        transform: rotate(7deg) rotateZ(360deg) translate3d(2%, 5%, 0) rotateZ(-360deg);
    }
}

.prt-about-block1 h3 {
    font-size: 20px;
    line-height: 30px;
}

/* about-section-01 */
.about-section-01 .about-section-1 {
    padding-top: 50px;
}

.about-section-01 .about-content .prt-about-desc {
    margin-left: 5px;
}
.prt-about-desc{
    font-size: 18px;
}
.about-section-01 .about-content .btn-wrappers {
    text-align: end;
    float: inline-end;
    margin: -10px 8px 0 0;
}

.about-section-01 .about-overlay-marquee {
    position: absolute;
    z-index: 1;
    margin: 368px 0 0 0;
}

.about-overlay-marquee .marquee-content .marquee-text {
    font-size: 116px;
    line-height: 120px;
    color: var(--neon);
    text-transform: capitalize;
}

.about-section-01 .prt_single_image-wrapper>img {
    position: relative;
    z-index: 2;
}

.about-section-01 .about-overlay-marquee .marquee .marquee-content {
    background-color: transparent !important;
}

/* single-section */
.sevice-section .prt-boxes-row-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid var(--white);
}

.about-section .prt_single_image-wrapper.prt_single_image-about .prt-about-bg.elementor-widget-container {
    margin-top: -130px;
    z-index: 0;
    position: relative;
    width: 100% !important;
    margin-left: 10%;
}

.prt_single_image-wrapper.prt_single_image-about .tm-reveal-direction-lr.rl .elementor-widget-container {
    /* margin-right: -229px; */
    padding-top: 0px;
    z-index: 1;
    padding-bottom: 80px
}

.heading-title img {
    width: 100px;
}

.heading-title h3 {
    font-size: 70px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 8px;
}

.heading-title h3 span {
    color: var(--neon);
    text-shadow: 0 0 2px #040404, 0 0 36px #bdff11, 0 0 29px #beff00, 0 0 67px #0c0c0c;
    animation: flicker 2s infinite;
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0;
    }
}

#p-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--white);
    text-align: left;
}

.group {
    display: inline-block;
    margin: 0 5px;
    font-size: 42px;
}

.group span {
    color: var(--neon);
    text-shadow: 0 0 2px #040404, 0 0 36px #bdff11, 0 0 29px #beff00, 0 0 67px #0c0c0c;
    animation: flicker 2s infinite;
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0;
    }
}

/* Flip Animation */
.flip {
    display: inline-block;
    animation: flipAnim 0.6s ease;
}

@keyframes flipAnim {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.main-marq {
    position: relative;
    padding: 0;
    background-color: var(--neon);
    transform: rotate(3deg);
    margin-top: 48px;
    margin-bottom: 43px;
}

.main-marq:after {
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    pointer-events: none;
    background: -webkit-linear-gradient(right, #181818, rgba(255, 255, 255, 0) 220px, rgba(255, 255, 255, 0) calc(100% - 220px), #181818);
    background: -o-linear-gradient(right, #181818, rgba(255, 255, 255, 0) 220px, rgba(255, 255, 255, 0) calc(100% - 220px), #181818);
    background: linear-gradient(to left, #181818, rgba(255, 255, 255, 0) 220px, rgba(255, 255, 255, 0) calc(100% - 220px), #181818);
}

.main-marq.md-text .box .item h4 {
    font-size: 40px;
}

.main-marq.lrg .box .item h4 {
    font-size: 5vw;
}

.main-marq.xlrg .box .item {
    padding: 0 30px;
}

.main-marq.xlrg .box .item h4 {
    font-size: 68px;
    color: var(--bg);
}

.main-marq .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-marq .strok .item h4 {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #fff;
}

.main-marq .strok .item h4 a {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #fff;
}

.main-marq .non-strok .item h4 {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
}

.main-marq .non-strok .item h4 a {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
}

.main-marq .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-marq .box .item {
    padding: 0 30px;
}

.main-marq .box .item h4 {
    white-space: nowrap;
    margin: 0;
}

.main-marq .box .item h4 .icon {
    margin-bottom: -15px;
}

.main-marq .box .item h2 {
    margin: 0;
}

.main-marq .box .item:nth-of-type(even) h4 {
    color: transparent;
    -webkit-text-stroke: 0.5px var(--bg);
}

.main-marq .box .item:nth-of-type(even) h4 a {
    color: transparent;
    -webkit-text-stroke: 0.5px var(--bg);
}

.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
    color: #000000;
    -webkit-text-stroke: 0;
}

.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
    color: #000000;
    -webkit-text-stroke: 0;
}

.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
    color: transparent;
    -webkit-text-stroke: 1px #000000;
}

.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
    color: transparent;
    -webkit-text-stroke: 1px #000000;
}

.slide-har {
    position: relative;
}

.slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 50s linear infinite;
    animation: slide-har 50s linear infinite;
}

.slide-har.st2 .box {
    position: relative;
    -webkit-animation: slide-har-revers 50s linear infinite;
    animation: slide-har-revers 50s linear infinite;
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

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

@keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.about-list ul {
    margin-top: 50px;
}

.about-list ul li {
    display: flex;
    margin-bottom: 15px;
}

.about-list ul li img {
    width: 19px;
    margin-right: 10px;
}

.about-list ul li p {
    margin: 0;
    color: var(--white);
}

svg.injected-svg {
    margin-top: 62px;
    margin-left: 10px;
}

.key-features-items {
    margin-bottom: 26px;
}

.key-features-body {
    padding: 35px;
    background: #ffffff21;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(189 255 17 / 6%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.key-features-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.key-features-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.key-features-body:hover {
    transform: translateY(-6px);
}

.key-features .row .col-lg-4:nth-child(even) .key-features-body {
    flex-direction: column-reverse;
}

.key-feature-img img {
    margin-bottom: 20px;
}

.key-feature-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 15px;
}

.key-feature-head span {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #adadad;
    font-weight: 100;
    letter-spacing: 0.8px;
}

.key-feature-head h4 {
    font-size: 25px;
    margin-bottom: 0px;
    display: block;
    color: var(--white);
}

.key-feature-details p {
    font-size: 17px;
    letter-spacing: 0;
    color: var(--white);
}

.key-feature-head img {
    width: 55px;
}

.key-feature-img img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.why-members,
.city-tabs,
.promise-section,
.advantage-section,
.step-section {
    background-image: url(../images/key-feature-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

iframe#\:1\.container {
    opacity: 0;
}


.hero {
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.btn-red {
    background: #c40000;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgb(74 74 74);
    animation: rotate 20s linear infinite;
}

.circle1 {
    width: 650px;
    height: 650px;
}

.circle2 {
    width: 500px;
    height: 500px;
    animation-duration: 15s;
    top: 11%;
    left: 11%;
}

.circle3 {
    width: 380px;
    height: 380px;
    animation-duration: 10s;
    top: 21%;
    left: 19%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.center-phone {
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(-57%, -50%);
    z-index: 2;
    width: 55%;
}

.rotate-item {
    position: absolute;
    width: 120px;
    /* text-align: center; */
    /* background: antiquewhite; */
    /* padding: 10px; */
    /* border-radius: 157px; */
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rotate-item p {
    margin: 0;
}

.item1 {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
}

.item2 {
    bottom: 90px;
    left: 0;
}

.item3 {
    bottom: -20px;
    right: 20%;
}

.odometer {
    font-size: 22px;
    font-weight: bold;
    color: #c40000;
}

.hero .heading-title h3 {
    font-size: 58px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 40px;
}

.nav-pills {
    margin: 40px 0;
}

.city-tabs .nav-link {
    border-radius: 30px;
    padding: 15px 30px;
    color: var(--neon);
    font-weight: 200;
    background-color: var(--bg);
    font-size: 21px;
    letter-spacing: 0.4px;
    margin: 0 10px;
    border: 1px solid var(--neon);
}

.city-tabs .nav-link.active {
    background: var(--neon);
    color: var(--bg);
    border: 1px solid var(--neon);
}

.city-tabs .border {
    transition: 0.3s;
}

.city-tabs .border:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.city-tabs .city-wrappering {
    padding: 50px;
    border: 1px solid grey;
    border-radius: 20px;
}

.city-tabs .heading-title h3 {
    font-size: 55px;
}

.tab-content .gym-card {
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(189 255 17 / 6%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.tab-content .gym-card:hover {
    transform: translateY(-5px);
}

/* Image */
.gym-img {
    position: relative;
}

.gym-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Badge */
.badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--neon);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* Mute */
.mute-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Content */
.gym-content {
    padding: 20px;
}

.gym-content h5 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    width: 130px;
}

.rating img {
    width: 16px;
}

.rating span {
    color: var(--white);
    display: flex;
    font-size: 10px;
}

/* Address */
.address {
    color: var(--white);
    margin: 0;
    font-size: 16px;
}

/* Distance */
.distance {
    color: var(--white);
    font-size: 14px;
}

/* Button */
.btn-pass {
    margin-top: 15px;
    background: #e11d1d;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-pass:hover {
    background: #c40000;
}

.gym-content .view-more a.btn {
    font-size: 16px;
    padding: 2px 15px;
}

.gym-content .view-more a.btn:hover {
    transform: scale(1.01);
}


.pricing-dark {
    background: radial-gradient(circle at top, #111, #000);
}

/* Title */
.badge-title {
    background: #1f1f1f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.subtitle {
    color: #aaa;
}

.price-box {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(189 255 17 / 6%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Glow effect */
.price-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.price-box p {
    color: var(--white);
    font-size: 17px;
    text-align: left;
    margin: 20px 0 10px;
}

.price-box:hover::before {
    opacity: 1;
}

/* Hover */
.price-box:hover {
    transform: translateY(-10px);
    border-color: #666;
}

/* Active card */
/* .price-box.active {
    border: 1px solid #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
} */

/* Green card */
/* .price-box.green {
    border: 1px solid #00ff88;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
} */

/* Popular tag */
.popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #656565;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    color: #fff;
    font-family: "Host Grotesk", sans-serif;
}

/* Price */
.price-box h6 {
    text-align: left;
    display: inline-block;
    background: var(--neon);
    border: 1px solid var(--neon);
    padding: 3px 10px;
    border-radius: 5px;
    width: fit-content;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--bg);
}

.price-box .under {
    display: inline-block;
    text-align: left;
    color: grey;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 600;
}

.price-box h2 {
    font-size: 40px;
    margin: 15px 0;
    color: var(--neon);
    text-align: left;
}

.price-box h2 span {
    font-size: 14px;
    color: #aaa;
}

/* List */
.price-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.price-box ul li {
    margin: 22px 0;
    color: #ffffff;
    font-size: 18px;
    text-align: left;
}

/* Buttons */
.btn-dark {
    background: #1f1f1f;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.btn-light {
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 10px;
}

.cta-content {
    padding: 60px 0;
}

.cta-content h6 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 100;
    text-align: center;
}

.cta-content h5 {
    font-size: 7vw;
    text-transform: capitalize;
    margin: 0;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    text-align: center;
    width: 100%;
    max-width: 60%;
    margin: auto;
    color: var(--white);
}

.ctn-img img {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.ar-testimonial-item {
    overflow: hidden;
}

.ar-testimonial-content {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: var(--neon);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(189 255 17 / 6%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    padding: 70px 50px 44px;
}

@media only screen and (max-width: 1600px) {
    .ar-testimonial-content {
        margin-right: -60px;
        padding: 70px 50px 44px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-testimonial-content {
        padding: 70px 55px 44px;
    }
}

.ar-testimonial-content .xb-item--content {
    opacity: 0;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--white);
    transform: translateY(40px);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    letter-spacing: 0.8px;
    transition-delay: .1s;
}

.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ul_li {
    justify-content: flex-start;
}

.ar-testimonial-content .xb-item--author {
    gap: 20px;
    margin-top: 60px;
    padding-left: 180px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-testimonial-content .xb-item--author {
        margin-top: 90px;
        padding-left: 310px;
    }
}

.ar-testimonial-wrap {
    position: relative;
    overflow: hidden;
}

.ar-testimonial-content .xb-item--name {
    opacity: 0;
    font-size: 30px;
    margin-bottom: 5px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: var(--white);
    transform: translateY(30px);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-delay: .2s;
}

.ar-testimonial-content .xb-item--desig {
    opacity: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--white);
    transform: translateY(30px);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-delay: .3s;
}

.ar-testimonial-content .xb-item--quote {
    position: absolute;
    bottom: 46px;
    right: 45px;
    transform: rotateY(-180deg);
    width: 50px;
}

.ar-testimonial-img {
    margin-left: 103px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media only screen and (max-width: 1600px) {
    .ar-testimonial-img {
        margin-left: 60px;
        height: 100%;
    }
}

.ar-testimonial-img img {
    transform: scale(1.2);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

@media only screen and (max-width: 1600px) {
    .ar-testimonial-img img {
        height: 100%;
    }
}

.ar-tes-slide-btn>div {
    left: 41px;
    top: auto;
    bottom: 56px;
    height: 66px;
    width: 30px;
}

@media only screen and (max-width: 1600px) {
    .ar-tes-slide-btn>div {
        bottom: 45px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-tes-slide-btn>div {
        left: 55px;
        bottom: 40px;
    }
}

.ar-tes-slide-btn>div img {
    opacity: 0.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.ar-testimonial-shape {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
}

@media only screen and (max-width: 1600px) {
    .ar-testimonial-shape svg {
        max-width: 380px;
        border-radius: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-testimonial-shape svg {
        max-width: 340px;
    }
}

@media only screen and (max-width: 1600px) {
    .ar-testimonial-shape {
        bottom: -7px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-testimonial-shape {
        bottom: -10px;
    }
}

.ar-testimonial-slider .swiper-slide-active .ar-testimonial-content .xb-item--content,
.ar-testimonial-slider .swiper-slide-active .ar-testimonial-content .xb-item--name,
.ar-testimonial-slider .swiper-slide-active .ar-testimonial-content .xb-item--desig {
    opacity: 1;
    transform: translateY(0);
}

.ar-testimonial-slider .swiper-slide-active .ar-testimonial-content .xb-item--content,
.ar-testimonial-slider .swiper-slide-active .ar-testimonial-content .xb-item--name,
.ar-testimonial-slider .swiper-slide-active .ar-testimonial-content .xb-item--desig {
    opacity: 1;
    transform: translateY(0);
}

.ar-tes-slide-btn .swiper-button-next {
    left: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-tes-slide-btn .swiper-button-next {
        left: 170px;
    }
}

.ar-footer-left {
    padding-top: 60px;
}

.xb-logo img {
    width: 100%;
    max-width: 50%;
}

.xb-footer-title-wrap {
    margin-top: 50px;
}

footer {
    padding: 0 0 30px 0;
    border-top: 1px solid grey;
}

.xb-gallary-info h2 {
    font-weight: 400;
    font-size: 60px;
    letter-spacing: -0.04em;
    color: var(--white);
}

.xb-gallary-img {
    padding: 3px;
    overflow: hidden;
    display: inline-flex;
    background: var(--neon);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* .gallary-item-slide:nth-child(odd) .xb-gallary-img {
    transform: rotate(12deg);
} */

.xb-gallary-img a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.xb-gallary-img a::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 1;
    border-radius: inherit;
    transform: scale(0.6);
    border-radius: inherit;
    transition: all .3s ease-out;
    background: rgba(12, 28, 36, 0.5);
}

.xb-gallary-img a img {
    object-fit: cover;
    transform: scale(1);
    overflow: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.xb-gallary-img .xb-social-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    width: 50px;
    height: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    transition: all .3s ease-out;
    background: var(--neon);
    transform: translate(-50%, -50%) scale(0.8);
}

.xb-gallary-img a img {
    object-fit: cover;
    transform: scale(1);
    overflow: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* .gallary-item-slide:nth-child(even) .xb-gallary-img {
    transform: rotate(-12deg);
}

.gallary-item-slide:nth-child(odd) .xb-gallary-img {
    transform: rotate(12deg);
} */

.ar-footer-left .xb-content {
    font-size: 16px;
    max-width: 407px;
    color: var(--white);
    margin-top: 20px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.ar-footer-nav {
    margin: 0 -20px;
    position: relative;
}

.ar-footer-nav::before,
.ar-footer-nav::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, #3d4950 78.94%, #0c1c24 100%);
}

.ar-footer-nav li:not(:last-child) {
    border-bottom: 1px solid #3d4950;
}

.ar-footer-nav li a {
    gap: 20px;
    z-index: 1;
    display: flex;
    padding: 30px 33px;
    align-items: center;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    font-size: 26px;
}

.ar-footer-nav li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    height: 0%;
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background: var(--neon);
}

.ar-footer-nav li a span {
    min-width: 170px;
    letter-spacing: -0.01em;
}

.ar-footer-nav li a img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.ar-footer-nav li a:hover img {
    transform: rotate(40deg);
}

.ar-footer-nav li a:hover {
    color: var(--bg);
}

.ar-footer-nav li a:hover img {
    filter: invert(1);
}

.ar-footer-nav li a:hover::before {
    opacity: 1;
    top: auto;
    bottom: 0;
    height: 100%;
}

.hover-video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.ar-footer-info {
    margin-top: 50px;
    padding-left: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .ar-footer-info {
        padding-left: 70px;
    }
}

.ar-footer-info .title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 66px;
    letter-spacing: -0.03em;
    color: var(--white);
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.ar-footer-info .info:not(:last-child) {
    margin-bottom: 30px;
}

.ar-footer-info .info li {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--white);
}

.ar-footer-info .info li:first-child {
    font-size: 14px;
    color: #c2c0c0;
    margin-bottom: 3px;
}

.ar-footer-info .info li a {
    color: currentColor;
}

.xb-footer_bottom {
    gap: 20px;
    padding: 30px 0 75px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ar-footer_bottom {
    padding: 0;
    border-top: none;
    margin-top: -30px;
}

.xb-footer_bottom p {
    letter-spacing: -0.01em;
    color: var(--white);
}

.ar-footer_bottom p {
    font-size: 16px;
    color: var(--white);
}

.ar-footer-nav::after {
    left: auto;
    right: 0;
}

.xb-gallary-img a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.xb-gallary-img a:hover img {
    transform: scale(1.1);
}

.xb-gallary-img a:hover .xb-social-icon img {
    filter: invert(1);
}

.xb-gallary-img a:hover .xb-social-icon {
    opacity: 1;
    transition-delay: .1s;
    transform: translate(-50%, -50%) scale(1);
}

.xb-gallary-img a:hover img {
    transform: scale(1.1);
}


/* Marker style */
.point {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--neon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    animation: blink 1.5s infinite;
    opacity: 1;
    z-index: -1;
    border: 6px solid #b3f00042;
    padding: 4px;
}

/* Pulse */
.point::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--neon);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite;
}

/* Tooltip */
.point::before {
    content: attr(data-city);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}

.point:hover::before {
    opacity: 1;
}

/* 📍 Real-like Gujarat Positions (adjust if needed) */
.ahmedabad {
    top: 60%;
    left: auto;
    right: 20%;
}

.surat {
    top: 75%;
    left: 35%;
}

.vadodara {
    top: auto;
    left: 70%;
    bottom: 7%;
}

.rajkot {
    top: 76%;
    left: 9%;
}

.gandhinagar {
    top: 28%;
    left: 47%;
}

.bhavnagar {
    top: 65%;
    left: 55%;
}

.jamnagar {
    top: 16%;
    left: 18%;
}

.anand {
    top: 12%;
    left: auto;
    right: 28%;
}

/* Animations */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.key-feature-img {
    position: relative;
    overflow: hidden;
}

.key-feature-img img,
.key-feature-img video {
    width: 100%;
    display: block;
}

/* Video hidden by default */
.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s ease;
}

/* Show video on hover */
.key-features-items:hover .hover-video {
    opacity: 1;
}

/* Hide image on hover */
.key-features-items:hover .feature-img {
    opacity: 0;
}


.breadcrumb {
    margin: 0;
    z-index: 1;
    display: flex;
    min-height: 750px;
    align-items: center;
    padding: 195px 0 0px;
}

.breadcrumb__title {
    font-weight: 700;
    font-size: 80px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
}

.breadcrumb__list_wrap {
    gap: 20px;
    border-radius: 10px;
    padding: 16px 25px 18px;
    backdrop-filter: blur(47.9000015259px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.17);
    width: max-content;
}

.breadcrumb__list {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.breadcrumb .breadcrumb-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.breadcrumb .breadcrumb-item a {
    color: var(--white);
}
.breadcrumb .breadcrumb-item a:hover {
    color: var(--neon);
}

.breadcrumb__text {
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
}

.breadcrumb__content {
    padding: 40px 0;
}

.breadcrumb .breadcrumb_img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    top: 0;
}

.breadcrumb .breadcrumb_img img {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
}
.breadcrumb {
    position: relative;
    overflow: hidden;
}

.breadcrumb .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.62) 45%,
        rgba(0, 0, 0, 0.38) 100%
    );
    box-shadow: 
        0 8px 32px rgb(189 255 17 / 6%),
        inset 0 1px 0 rgb(189 255 17 / 40%),
        inset 0 -1px 0 rgb(189 255 17 / 35%),
        inset 0 0 46px 23px rgb(189 255 17 / 8%);
}

.breadcrumb .container {
    position: relative;
    z-index: 3;
}

.breadcrumb_img {
    position: relative;
    z-index: 0;
}
.sec-title .title {
    font-size: 125px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--white);
}

.sec-title--page .title {
    font-size: 80px;
    line-height: 1.15;
    margin-bottom: 40px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.ap-value-list li {
    gap: 11px;
    display: flex;
    font-weight: 500;
    line-height: 20px;
    align-items: center;
    color: var(--white);
}

.ap-value-list li:not(:last-child) {
    margin-bottom: 23px;
}

.ap-value-list li img {
    background-color: var(--neon);
    border-radius: 50%;
}

.ap-value-item {
    display: inline-block;
}

/* INNER */
.ap-value-item .xb-item--inner {
    min-height: 540px;
    display: inline-flex;
    flex-direction: column;
    background: var(--bg);
    justify-content: space-between;
}

/* NUMBER */
.ap-value-item .xb-item--number {
    font-size: 70px;
    margin-bottom: 15px;
    color: var(--white);
}

/* TITLE */
.ap-value-item .xb-item--title {
    font-size: 25px;
    color: var(--white);
}

/* CONTENT */
.ap-value-item .xb-item--content {
    max-width: 302px;
    color: var(--white);
}

/* BOX */
.ap-value-item .xb-item--box {
    padding: 50px;
    display: flex;
    flex-direction: column;
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(90 120 18 / 72%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
}

/* .ap-value-item .xb-item--box.box-2 {
    background: var(--white);
}

.ap-value-item .xb-item--box.box-3 {
    background: #E6E8DA;
} */

.ap-value-item .xb-item--box.box-3 h2,
.ap-value-item .xb-item--box.box-3 h3,
.ap-value-item .xb-item--box.box-3 p {
    color: var(--white);
}

/* IMAGE */
.ap-value-item .xb-item--img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* SLIDER */
.ap-value-slider {
    margin: 0 -265px;
}

/* WORK SECTION */
.ap-work-top {
    gap: 30px;
}

.ap-work-content {
    max-width: 395px;
    color: var(--white);
}

.ap-work-list {
    padding-top: 40px;
    padding-left: 35px;
    padding-bottom: 40px;
    border-top: 1px solid #DDDBDB;
    border-left: 1px solid #DDDBDB;
}

/* LIST ITEMS */
.ap-work-list li {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-left: 12px;
    line-height: 14px;
    color: var(--white);
    font-family: "Host Grotesk", sans-serif;
}

.ap-work-list li:not(:last-child) {
    margin-bottom: 40px;
}

.ap-work-list li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 3px;
    height: 12px;
    width: 6px;
    border-radius: 0 100px 100px 0;
    background: var(--white);
}

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

/* LG */
@media (max-width: 1199px) {
    .ap-value-item .xb-item--number {
        font-size: 60px;
    }

    .ap-value-item .xb-item--title {
        font-size: 22px;
    }

    .ap-work-list li {
        line-height: 24px;
    }

    .ap-work-list li:not(:last-child) {
        margin-bottom: 30px;
    }
}

/* MD */
@media (max-width: 991px) {
    .ap-value-item .xb-item--inner {
        min-height: 505px;
    }

    .ap-value-item .xb-item--box {
        padding: 40px;
    }

    .ap-work-list {
        padding-left: 35px;
        border: 1px solid #DDDBDB;
    }
}

/* XS */
@media (max-width: 767px) {
    .ap-value-item .xb-item--inner {
        min-height: 400px;
    }

    /* .ap-work-list {
        padding-left: 0;
        border-left: none;
    } */
}

/* SLIDER RESPONSIVE */
@media (min-width: 1500px) and (max-width: 1600px) {
    .ap-value-slider {
        margin: 0 0px;
    }
}

@media (max-width: 1399px) {
    .ap-value-slider {
        margin: 0 0px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .ap-value-slider {
        margin: 0 0px;
    }
}

@media (max-width: 1023px) {
    .ap-value-slider {
        margin: 0 0px;
    }
}

@media (max-width: 991px) {
    .ap-value-slider {
        margin: 0 10px;
    }
}

@media (max-width: 575px) {
    .ap-value-slider {
        margin: 0 0px;
    }
}


.about-section-01 .about-overlay-marquee {
    position: absolute;
    z-index: 1;
    margin: 368px 0 0 0;
}

.about-section-01 .prt_single_image-wrapper>img {
    position: relative;
    z-index: 2;
}

.about-section-01 .about-overlay-marquee .marquee .marquee-content {
    background-color: transparent !important;
}

.marquee {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.marquee-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.marquee-text {
    margin-left: 38px;
    padding-left: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #fff;
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
}

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

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

.marquee-item.style1 .marquee-content {
    animation: scroll 10s linear 0s infinite normal none running;
}

.marquee-item.style2 .marquee .marquee-content {
    animation: scroll 15s linear infinite;
    will-change: transform;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    animation: scroll 100s 3s linear infinite;
}

.marquee-text {
    position: relative;
}

/* .marquee .marquee-content {background-color: var(--bg);} */
.marquee-content .marquee-text h3 {
    margin-top: 15px;
    color: var(--white);
    font-size: 26px;
    line-height: 36px;
    text-transform: capitalize;
}

.showboxcard-section .showboxcard-content .showboxcard-marquee {
    top: 0;
    bottom: 0;
}

.about-overlay-marquee {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
}

.vision-title {
    position: absolute;
    top: 12%;
    right: 6%;
    background: #19191963;
    padding: 40px;
    backdrop-filter: blur(13px);
}

.vision-title h4 {
    font-size: 5vw;
    margin: 0;
    text-transform: capitalize;
    color: #fcb132;
    font-weight: 700;
}

.vision-img {
    padding: 40px 0;
    width: 100%;
    max-width: 70%;
    margin: auto;
    text-align: center;
}

.vision-img span {
    font-size: 17px;
    display: block;
    line-height: 1.4;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
    color: #b7b7b7;
}

.vision-img h4 {
    font-size: 26px;
    margin: 0;
    font-weight: 100;
    letter-spacing: 0.4px;
    color: var(--white);
    padding-bottom: 20px;
}
.vision-img p{
    color: #e7e7e7;
    text-align: center;
}
.working-block-one .inner-block {
    display: flex;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 9;
    gap: 40px;
    background: #20202082;
    backdrop-filter: blur(15px);
    border-radius: 20px 0 0 20px;
}

.working-block-one .inner-block.top-margin-none {
    margin-top: 0;
}

.working-block-one .inner-block .step {
    display: flex;
    background-color: var(--bg);
    font-size: 16px;
    font-weight: 700;
    color: var(--neon);
    width: 52px;
    border-radius: 10px;
    writing-mode: sideways-lr;
    transition: all 0.4s ease-in-out;
    height: 127px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon);
}

.working-block-one .inner-block.active .step {
    background-color: var(--neon);
    color: var(--bg);
}

.working-block-one .inner-block .content-box {
    position: relative;
    padding-bottom: 20px;
    width: 100%;
}

.working-block-one .inner-block .content-box .text {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    max-width: 450px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.working-block-one .inner-block .content-box .line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.working-block-one {
    margin-bottom: 28px;
}

.working-block-one .inner-block .content-box .line::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 9px;
    height: 9px;
    transform: translateY(-50%);
    content: "";
    background-color: #D9D9D9;
    border-radius: 50%;
}

.working-block-one .inner-block.active .content-box .line::before {
    background-color: var(--neon);
}

.content-box h4 {
    font-size: 28px;
    margin: 0;
    color: var(--white);
}

.step-items .heading-title h3 {
    line-height: 1.2;
}

img.work-process-shape {
    position: absolute;
    top: -15%;
    left: -46%;
    z-index: -1;
    width: 38%;
}

/* Heading */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
}

.section-title p {
    color: #6c757d;
}

/* Card Style */
.comparison-card {
    padding: 25px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(90 120 18 / 72%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

/* Highlight AGM */
.highlight {
    border: 2px solid #28a745;
    background: #000000;
}

/* Title */
.card-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--white);
}

/* List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff;
    font-size: 17px;
    padding: 16px 0;
    color: var(--white);
    font-family: "Host Grotesk", sans-serif;
}

/* Icons */
.icon-yes {
    color: #28a745;
    font-size: 18px;
}

.icon-no {
    color: #dc3545;
    font-size: 18px;
}

.icon-neutral {
    color: #ffc107;
}

/* Badge */
.badge-best {
    background: #28a745;
    font-size: 12px;
    margin-left: 5px;
}



/* ── HEADER ── */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--neon);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--red);
    text-decoration: none;
}

.logo span {
    color: var(--text);
}

.search-wrap {
    position: relative;
    flex: 0 0 280px;
}

.search-wrap input {
    background: var(--surface2);
    border: 1px solid var(--neon);
    border-radius: 8px;
    color: var(--text);
    padding: .55rem 1rem .55rem 2.4rem;
    width: 100%;
    font-size: .9rem;
    transition: border-color .2s;
}

.search-wrap input:focus {
    outline: none;
    border-color: var(--red);
}

.search-wrap .si {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon);
    font-size: .9rem;
}

/* ── BREADCRUMB ── */
.breadcrumb-area {
    padding: .75rem 2rem;
    font-size: .82rem;
    color: var(--neon);
    border-bottom: 1px solid var(--neon);
    background: var(--bg);
}

.breadcrumb-area a {
    color: var(--neon);
    text-decoration: none;
}

.breadcrumb-area a:hover {
    color: var(--red);
}

.breadcrumb-area .sep {
    margin: 0 .4rem;
}

/* ── LAYOUT ── */
.main-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: calc(100vh - 110px);
}

/* ── SIDEBAR ── */
.sidebar {
    background: var(--bg);
    border-right: 1px solid var(--muted);
    padding: 1.5rem 1.25rem;
    position: sticky;
    top: 110px;
    height: calc(100vh - 110px);
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--neon);
    border-radius: 4px;
}

.sidebar-title {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: .25rem;
}

.sidebar-sub {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.filter-section {
    margin-bottom: 1.75rem;
}

.filter-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.filter-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--muted);
}

/* Location chips */
.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.loc-chip {
    background: var(--surface2);
    border-radius: 100px;
    padding: .35rem .9rem;
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
    color: var(--text);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.loc-chip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    z-index: 0;
    border-radius: inherit;
}

.loc-chip span {
    position: relative;
    z-index: 1;
}

.loc-chip:hover {
    border-color: var(--red);
}

.loc-chip.active {
    border-color: var(--red);
    color: #000000;
}

.loc-chip.active::after {
    transform: scaleX(1);
}

/* Price toggle buttons */
.price-grid {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.price-btn {
    background: var(--surface2);
    border: 1px solid var(--muted);
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .85rem;
    cursor: pointer;
    transition: all .22s;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.price-btn .check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--muted);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}

.price-btn .check svg {
    display: none;
}

.price-btn:hover {
    border-color: var(--red);
}

.price-btn.active {
    border-color: var(--red);
    background: var(--red-glow);
}

.price-btn.active .check {
    background: var(--red);
    border-color: var(--red);
}

.price-btn.active .check svg {
    display: block;
}

.price-label {
    font-weight: 500;
}

.price-sub {
    font-size: .75rem;
    color: var(--neon);
    margin-left: .4rem;
}

/* Clear filters */
.clear-btn {
    background: transparent;
    border: 1px solid var(--muted);
    border-radius: 8px;
    color: var(--muted);
    padding: .5rem 1rem;
    font-size: .8rem;
    cursor: pointer;
    width: 100%;
    margin-top: .5rem;
    transition: all .2s;
}

.clear-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ── CONTENT AREA ── */
.content-area {
    padding: 2rem;
    background: var(--bg);
}

.content-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.content-header h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0;
    color: var(--text);
}

.result-count {
    font-size: .85rem;
    color: var(--neon);
}

.result-count strong {
    color: var(--red);
}

/* Active filter tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.25rem;
    min-height: 0;
    transition: all .3s;
}

.filter-tag {
    background: var(--red-glow);
    border: 1px solid var(--red);
    border-radius: 100px;
    padding: .25rem .7rem;
    font-size: .78rem;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: .35rem;
    animation: tagIn .2s ease;
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.filter-tag button {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: .8rem;
}

/* ── GYM CARDS ── */
.gyms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.gyms-grid .gym-card {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    animation: cardIn .35s ease both;
    position: relative;
    backdrop-filter: blur(15px);
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(189 255 17 / 6%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gym-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
    border-color: #333;
}

.gym-card.hidden {
    display: none;
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #111;
    height: 200px;
}

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

.gym-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.badge-wtf {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--red);
    color: #000000;
    font-size: .7rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: .3rem;
    letter-spacing: .5px;
}

.badge-wtf::before {
    content: '⚡';
    font-size: .65rem;
}

.badge-dist {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .75rem;
    padding: .25rem .65rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.card-body {
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.card-name {
    font-size: 26px;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-addr {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 1.6;
    letter-spacing: 0.8px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.card-meta .rating {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
}

.rating .star {
    color: #fbbc04;
}

.rating-label {
    color: var(--neon);
    font-size: .8rem;
    font-weight: 400;
}

.price-tag {
    font-size: .82rem;
    font-weight: 600;
    background: var(--surface2);
    border: 1px solid var(--muted);
    border-radius: 6px;
    padding: .2rem .6rem;
    color: var(--accent);
}

.card-location-tag {
    font-size: .78rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.card-location-tag .pin {
    color: var(--neon);
}

.card-actions {
    display: flex;
    gap: .75rem;
}

.card-actions .btn {
    font-size: 17px;
    text-transform: capitalize;
}

/* ── EMPTY STATE ── */
.empty-state {
    display: none;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--neon);
}

.empty-state .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: .5rem;
}

.empty-state p {
    font-size: .9rem;
}

/* ── MOBILE FILTER TOGGLE ── */
.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: .75rem 1.4rem;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(224, 32, 32, .4);
}

/* ── SIDEBAR OVERLAY (MOBILE) ── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 150;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -320px;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 160;
        height: 100vh;
        transition: left .3s ease;
        padding-top: 3.5rem;
    }

    .sidebar.open {
        left: 0;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .mobile-filter-btn {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .site-header {
        padding: .75rem 1rem;
    }

    .search-wrap {
        flex: 0 0 180px;
    }

    .content-area {
        padding: 1.25rem;
    }

    .gym-card {
        grid-template-columns: 1fr;
    }

    .card-img-wrap {
        height: 200px;
    }
}

@media (max-width: 500px) {
    .logo {
        font-size: 1.5rem;
    }

    .search-wrap {
        flex: 0 0 140px;
    }

    .card-actions {
        flex-wrap: wrap;
    }

    .btn-details,
    .btn-pass {
        flex: 1;
        text-align: center;
    }
}

/* ── PULSE ANIM (new card) ── */
@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 var(--red-glow);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(224, 32, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(224, 32, 32, 0);
    }
}

/* Sidebar close btn */
.sidebar-close {
    display: none;
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--surface2);
    border: 1px solid var(--neon);
    color: var(--text);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .sidebar-close {
        display: flex;
    }
}


/* ── NAV ── */
.agm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.agm-nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-color: var(--neon);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-decoration: none;
}

.nav-logo span {
    color: var(--white);
}

.btn-nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.4rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── HERO SECTION ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

/* Animated diagonal grid background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 74, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 74, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: skewY(-4deg) scale(1.2);
    transform-origin: top left;
}

/* Radial glow */
.hero-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(ellipse at center, rgba(201, 169, 74, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(ellipse at center, rgba(201, 169, 74, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.page-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--neon);
    padding: 0.35rem 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.page-label::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-headline {
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
}

.hero-headline .accent {
    color: var(--gold);
}

.hero-subtext {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--neon);
    max-width: 520px;
    line-height: 1.75;
    margin-top: 1.8rem;
}

.btn-primary-agm {
    background: var(--bg);
    color: var(--neon);
    border: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--neon);
}

.btn-primary-agm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.45s ease;
}

.btn-primary-agm:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 74, 0.35);
    background-color: var(--neon);
}

.btn-primary-agm:hover::after {
    transform: translateX(110%) skewX(-15deg);
}

.hero-stat-strip {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--neon);
}

.stat-item .stat-num {
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon);
    margin-top: 0.3rem;
}





/* Hero visual panel */
.hero-visual {
    position: relative;
    height: 580px;
}

.hero-card-main {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 88%;
    height: 420px;
    background: var(--red-glow);
    border: 1px solid var(--neon);
    overflow: hidden;
}

.hero-card-main::before {
    content: '💪';
    font-size: 18rem;
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    opacity: 0.07;
    line-height: 1;
}

.hero-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-metric-row {
    display: flex;
    gap: 1.5rem;
}

.hero-metric {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.2rem 1rem;
}

.hero-metric .m-val {
    font-size: 2rem;
    color: var(--text);
}

.hero-metric .m-key {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon);
    margin-top: 0.2rem;
}

.hero-bar-label {
    font-size: 0.72rem;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: "Host Grotesk", sans-serif;
}

.hero-bar-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 0.9rem;
}

.hero-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: growBar 2s ease forwards;
}

@keyframes growBar {
    from {
        width: 0;
    }
}

.hero-float-badge {
    position: absolute;
    left: -1.5rem;
    top: 30%;
    background: var(--accent);
    color: var(--black);
    padding: 1rem 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-section .heading-title h3 {
    line-height: 1.4;
}

/* ── SECTION STYLES ── */
.section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--neon);
    max-width: 60px;
}

.section-headline {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.03em;
}

.section-headline .accent {
    color: var(--gold);
}

/* ── SECTION 2: ADVANTAGE ── */
.advantage-section {
    padding: 7rem 0;
    position: relative;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--red-glow);
    border: 1px solid var(--red-glow);
    margin-top: 4rem;
}

.advantage-card {
    background: var(--bg);
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.advantage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover {
    background: var(--card-bg);
}

.advantage-card:hover::before {
    opacity: 1;
}

.adv-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
    line-height: 1;
}

.adv-title {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.adv-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.adv-corner {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--neon);
    border-bottom: 2px solid var(--neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover .adv-corner {
    opacity: 1;
}

/* ── SECTION 3: WHO WE WORK WITH ── */
.who-section {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: 'AGM';
    position: absolute;
    right: -2rem;
    bottom: -4rem;
    font-size: 22rem;
    color: rgba(201, 169, 74, 0.154);
    pointer-events: none;
    line-height: 1;
}

.who-card {
    background: var(--black);
    border: 1px solid var(--red-glow);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    backdrop-filter: blur(15px);
    background: rgb(189 255 17 / 0%);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: 20px;
    /* border: 1px solid rgb(255 255 255 / 0%); */
    box-shadow: 0 8px 32px rgb(189 255 17 / 6%), inset 0 1px 0 rgb(189 255 17 / 40%), inset 0 -1px 0 rgb(189 255 17 / 35%), inset 0 0 46px 23px rgb(189 255 17 / 8%);
    position: relative;
    overflow: hidden;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold);
}

.who-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.who-card-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.who-card-title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 1rem;
}

.who-card-desc {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.75;
    margin: 0;
}

.who-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.who-card:hover .who-card-accent {
    height: 100%;
}

/* ── SECTION 4: PROMISE ── */
.promise-section {
    padding: 7rem 0;
    position: relative;
}

.promise-divider {
    width: 1px;
    background: var(--neon);
    align-self: stretch;
    margin: 0 2rem;
}

.promise-statement {
    padding: 3rem 0;
}

.promise-number {
    font-size: 5rem;
    color: var(--red-glow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.promise-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
}

.promise-text strong {
    font-weight: 700;
    color: var(--gold);
}

.promise-sep {
    height: 1px;
    background: var(--neon);
    margin: 0 0 0 -2rem;
}

/* ── CTA SECTION ── */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(201, 169, 74, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.cta-headline {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.cta-subtext {
    font-size: 1.3rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 3rem;
    line-height: 1.75;
    text-align: center;
}

.cta-pills {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--neon);
    text-transform: uppercase;
    font-weight: 600;
}

.cta-pill::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

/* ── FOOTER ── */
.agm-footer {
    border-top: 1px solid var(--neon);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--neon);
    letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        height: 340px;
        margin-top: 3rem;
    }

    .hero-card-main {
        width: 100%;
    }

    .hero-float-badge {
        left: 0;
        top: -23%;
    }

    .promise-divider {
        display: none;
    }

    .hero-stat-strip {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }

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

    .agm-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-metric-row {
        gap: 0.75rem;
    }
}

.contact-form-section {
    padding: 100px 0 73px 0;
}

.contact-form-section .prt-featured-block {
    background-image: url(../images/col-single-img.png);
    background-repeat: no-repeat;
}

.contact-form-section .prt-featured-block {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 0px 0px 0px;
}

.prt-featured-block .featured-icon-box-style1 {
    margin-bottom: 20px;
}

.prt-featured-block .featured-icon-box-style1 {
    padding-left: 60px;
}

.featured-icon-box-style1 .featured-icon .prt-icon.prt-icon_element-onlytxt {
    padding-right: 70px;
}

.featured-icon-box-style1 .featured-icon .prt-icon.prt-icon_element-onlytxt .featured-icon-type-image {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    line-height: 56px;
    border: 1px solid var(--muted);
    border-radius: 50%;
    text-align: center;
}

.contact-form-section .featured-desc a {
    border: none;
}

.contact-form-section .featured-desc a {
    border: none;
}

.contact-form-section .ctn a {
    color: var(--white);
    word-break: break-all;
}

.contact-form-section .ctn a:hover {
    color: var(--base-skin);
}

.contact-form-block .wrap-form.query_form-1 span.text-input input,
.contact-form-block .wrap-form.query_form-1 span.text-input select,
.contact-form-block .wrap-form.query_form-1 span.text-input textarea {
    border-radius: 10px;
    border: 1px solid var(--muted);
    background-color: transparent;
    padding: 12px 20px 12px;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--white);
}

.featured-icon-box-style1 .featured-icon .prt-icon.prt-icon_element-onlytxt .featured-icon-type-image img {
    width: 26px;
    height: 26px;
}

.featured-icon-box-style1 .featured-icon .featured-icon-type-image:after {
    content: '';
    position: absolute;
    top: 50%;
    bottom: auto;
    left: auto;
    right: -70px;
    width: 70px;
    height: 1px;
    background-color: var(--muted);
}

.featured-icon-box-style1 .featured-content {
    padding-left: 33px;
    display: table-cell;
    vertical-align: middle;
}

.featured-icon-box-style1 .featured-content .featured-title h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
    position: relative;
    text-transform: capitalize;
    color: var(--neon);
}

.featured-content p {
    color: var(--white);
}

.prt-featured-block .featured-icon-box-style1:last-child {
    padding-bottom: 23px;
}

.google_map-section .col-lg-12,
.service-single-section .col-lg-12 {
    padding: 0 15px;
}

.wrap-form label {
    width: 100%;
    margin: 0;
    text-transform: capitalize;
    color: var(--white);
    font-size: 17px;
    letter-spacing: 0.5px;
}

.wrap-form span.text-input {
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.wrap-form span.text-input>i {
    position: absolute;
    left: 10px;
    top: 21px;
    opacity: .9;
    font-size: 14px;
    z-index: 1;
}

.contact-form-block {
    padding: 40px;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
}

/* contactform */
.wrap-form.contact_form span.text-input i {
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 15px;
    z-index: 1;
    color: var(--base-skin);
}

.wrap-form.contact_form span.text-input input,
.wrap-form.contact_form span.text-input textarea,
.wrap-form.contact_form span.text-input select {
    border-radius: 0;
    color: rgba(0, 0, 0, .60);
    border-color: transparent;
    border-radius: 5px;
    padding: 12px 15px;
    padding-left: 44px;
}

.wrap-form.contact_form span.text-input textarea {
    padding: 10px 15px;
    padding-left: 44px;
}

.prt-bgcolor-grey .wrap-form.contact_form span.text-input input,
.prt-bgcolor-grey .wrap-form.contact_form span.text-input textarea,
.prt-bgcolor-grey .wrap-form.contact_form span.text-input select {
    background-color: #fff;
}

.prt-bgcolor-skincolor .wrap-form.contact_form span.text-input input,
.prt-bgcolor-skincolor .wrap-form.contact_form span.text-input textarea,
.prt-bgcolor-skincolor .wrap-form.contact_form span.text-input select {
    background-color: transparent;
    border: 0;
    color: #fff;
    padding-left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, .12);
}

.prt-bgcolor-skincolor .wrap-form.contact_form span.text-input input::-webkit-input-placeholder,
.prt-bgcolor-skincolor .wrap-form.contact_form span.text-input textarea::-webkit-input-placeholder,
.prt-bgcolor-skincolor .wrap-form.contact_form span.text-input select::-webkit-input-placeholder {}

.wrap-form.query_form span.text-input {
    margin: 0 0 40px;
}

.wrap-form.query_form span.text-input label {
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--base-white);
}

.wrap-form.query_form span.text-input input,
.wrap-form.query_form span.text-input select,
.wrap-form.query_form span.text-input textarea {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255 255 255 / 0.20);
    background-color: transparent;
    color: #fff;
    padding: 13px 20px 13px;
    font-size: 15px;
}

.wrap-form.query_form span.text-input textarea {
    padding: 13px 20px 28px;
}

.query_form span.text-input input::-webkit-input-placeholder,
.query_form span.text-input textarea::placeholder {
    color: var(--base-bodyfont-color) !important;
}

.wrap-form span.text-input input::-webkit-input-placeholder,
.wrap-form span.text-input textarea::-webkit-input-placeholder,
.wrap-form span.text-input select::-webkit-input-placeholder {
    color: rgba(255 255 255 / 0.70);
}

.wrap-form.query_form span.text-input select {
    color: rgba(255 255 255 / 0.70);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wrap-form.query_form span.text-input select option {
    color: #000;
}

.wrap-form span.text-input input[type=time][placeholder]:invalid::-webkit-datetime-edit,
.wrap-form span.text-input input[type=date]:invalid::-webkit-datetime-edit {
    color: rgba(255 255 255 / 0.70);
}

.wrap-form span.text-input input::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
    color: #fff;
}

.wrap-form.query_form span.text-input.select-option:before {
    position: absolute;
    content: '\f107';
    font-family: 'fontello';
    right: 20px;
    top: 29%;
    font-size: 17px;
    pointer-events: none;
}










.sub-send-inquiry-form {
    position: fixed;
    left: -96px;
    top: 32%;
    height: 37%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 4
}

.sub-send-inquiry-form a {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px
}

.sub-send-btn {
    background-color: var(--primary-color);
    border-radius: 0 0 30px 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 35px;
    transform: rotate(-90deg);
    animation: blink 3s linear infinite
}

@keyframes blink {

    0%,
    100% {
        background-color: var(--primary-color)
    }

    50% {
        background-color: var(--secondary-color)
    }
}


.footer-whatsapp-left {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 20px 80px 0px;
    z-index: 999999
}

.footer-whatsapp-left.mail {
    margin: 0 20px 170px 0px
}

.footer-whatsapp-left a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px
}

.footer-call-right {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 20px 145px 0px;
    z-index: 999999
}

.footer-call-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px
}

.vibrate-3 {
    -webkit-animation: vibrate-3 1s linear infinite both;
    animation: vibrate-3 1s linear infinite both
}

@-webkit-keyframes vibrate-3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    10% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    20% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    30% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px)
    }

    40% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px)
    }

    50% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    60% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    70% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px)
    }

    80% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    90% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes vibrate-3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    10% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    20% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    30% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px)
    }

    40% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px)
    }

    50% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    60% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    70% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px)
    }

    80% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    90% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

.mobile-footer-social-icon-main {
    display: none
}

@media screen and (max-width:991px) {
    .footer-whatsapp-call {
        display: none
    }

    .mobile-footer-social-icon-main {
        width: 100%;
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 999
    }

    .mobile-footer-social-icon {
        width: 33%;
        display: inline-block;
        text-align: center
    }

    .book-app {
        width: 100%;
        padding: 1%;
        float: left;
        line-height: 40px;
        text-align: center;
        max-height: 100px
    }

    .book-app a {
        font-size: 15px
    }

    .footer-box-two {
        display: flex !important;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #0f4da2;
        color: #fff;
        text-align: center;
        z-index: 9;
        display: grid;
        grid-template-columns: 1fr 1fr
    }
}



.form-group.has-feedback {
    margin-bottom: 18px;
    position: relative;
}

.modal-logo img {
    width: 100%;
    max-width: 25%;
    margin: auto;
    margin-bottom: 0px
}

.modal-call {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.modal-content {
    border-radius: 50px;
    overflow: hidden
}

.modal-call a,
.modal-call .prev-digit {
    color: #1d242b;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    align-items: start;
    margin-bottom: 12px;
}

.modal-body .has-feedback {
    margin-bottom: 12px;
    position: relative;
}

.modal-body .form-control {
    border: 0;
    background-color: #fff0;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 17px;
    color: var(--black) !important;
    box-shadow: none;
    font-weight: 400;
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.modal-header h5 {
    color: var(--white);
    font-size: 24px;
    width: 100%;
    letter-spacing: .4px;
    font-weight: 500;
}

.modal-header .btn-close {
    margin: 0;
    filter: invert(1);
}

.modal-logo {
    padding: 10px 0px 10px;
}

.modal-body {
    padding: 0
}

.modal-footer input {
    font-size: 17px !important;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    padding: 7px 1px 7px 1px !important;
    transition: 0.3s;
}

.modal-footer .btn:hover input {
    color: var(--secondary-color);
}

input[type="submit"] {
    background: var(--accets-color);
    color: #fff;
    border: none;
    padding: 12px 28px !important;
    font-size: 18px !important;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

input[type="submit"]:hover {
    background: var(--secondary-color);
    color: var(--white);
}

input[type="submit"]:disabled {
    background: #ebebeb;
    cursor: not-allowed;
    opacity: 0.6;
    color: #000;
    border: 1px solid #000;
}

label.error {
    position: absolute;
    color: rgb(200, 0, 0);
    font-size: 13px;
}

/* Gallery wrapper */
.card-gallery {
    display: block;
    padding: 15px;
    text-decoration: none;
    box-sizing: border-box;
}

.main-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
}

.main-thumb img,
.small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge on main image */
.badge-wtf {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: #a6ff00;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 999px;
}

/* Three thumbnails */
.small-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.small-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
}

.more-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.more-thumb span {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

/* Your existing card should support this layout */
.gym-card {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Tablet */
@media (max-width: 900px) {
    .card-gallery {
       padding: 1.5rem;
    }
.card-body{
    justify-content: space-between;
}
    .badge-wtf {
        font-size: 11px;
        padding: 5px 9px;
    }

    .more-thumb span {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .gym-card {
        flex-direction: column;
    }

    .card-gallery {
        width: 100%;
        flex-basis: auto;
        padding: 10px;
    }

    .main-thumb {
        aspect-ratio: 16 / 9;
    }

    .small-thumbs {
        gap: 5px;
        margin-top: 5px;
    }

    .small-thumb {
        aspect-ratio: 1.4 / 1;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .card-gallery {
        padding: 8px;
    }

    .badge-wtf {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 5px 8px;
    }

    .more-thumb span {
        font-size: 11px;
    }
}


.gym-breadcrumb .breadcrumb {
    font-size: 0.95rem;
}

.gym-breadcrumb a {
    color: #263244;
    text-decoration: none;
}

.gym-breadcrumb a:hover {
    color: #000;
}

.gym-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.52fr) minmax(0, 0.52fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    min-height: clamp(20rem, 38vw, 31rem);
}

.gallery-main {
    grid-row: span 2;
}

.gallery-main,
.gallery-item,
.gym-mobile-gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.6rem;
    background: #111;
}

.gallery-main img,
.gallery-item img,
.gym-mobile-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gallery-main:hover img,
.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-more::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
}

.gallery-more span {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.55rem 0.8rem;
    border-radius: 0.4rem;
    background: rgba(0, 0, 0, 0.65);
}

/* Mobile Swiper */
.gym-mobile-gallery .swiper {
    position: relative;
    overflow: hidden;
    border-radius: 0.65rem;
}

.gym-mobile-gallery .swiper-slide {
    aspect-ratio: 16 / 10;
}

.gym-mobile-gallery a {
    width: 100%;
    height: 100%;
}

.gym-mobile-gallery .swiper-button-prev,
.gym-mobile-gallery .swiper-button-next {
    width: 2.4rem;
    height: 2.4rem;
    color: #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(4px);
}

.gym-mobile-gallery .swiper-button-prev::after,
.gym-mobile-gallery .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.gym-mobile-gallery .swiper-button-prev {
    left: 0.75rem;
}

.gym-mobile-gallery .swiper-button-next {
    right: 0.75rem;
}

.gym-mobile-gallery .swiper-pagination {
    bottom: 0.6rem;
}

.gym-mobile-gallery .swiper-pagination-bullet {
    width: 0.45rem;
    height: 0.45rem;
    background: rgba(255, 255, 255, 0.85);
    opacity: 1;
}

.gym-mobile-gallery .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 991.98px) {
    .gym-gallery-grid {
        gap: 0.6rem;
        min-height: clamp(18rem, 42vw, 26rem);
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr) minmax(0, 0.52fr);
    }
    .gym-detail-heading{
        align-items: end;
    }
}

@media (max-width: 767.98px) {


    .gym-breadcrumb {
        display: none;
    }

    .gym-mobile-gallery .swiper-slide {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 420px) {
    .gym-mobile-gallery .swiper-slide {
        aspect-ratio: 1.25 / 1;
    }

    .gym-mobile-gallery .swiper-button-prev,
    .gym-mobile-gallery .swiper-button-next {
        width: 2rem;
        height: 2rem;
    }
}

.gym-detail-info-section {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(153, 255, 0, 0.13), transparent 28rem),
        radial-gradient(circle at 12% 80%, rgba(255, 96, 45, 0.09), transparent 24rem),
        #080908;
}

.gym-detail-info-section .hero-grid,
.gym-detail-info-section .hero-glow,
.gym-detail-info-section .hero-glow-2 {
    pointer-events: none;
}

.gym-detail-content {
    padding-right: clamp(0rem, 2vw, 1.5rem);
}

.gym-detail-heading {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    /* border-bottom: 1px solid rgba(153, 255, 0, 0.22); */
}

.gym-detail-heading h1 {
    margin: 0 0 0.55rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0;
}

.gym-detail-heading p {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
}

.gym-navigate-link {
    display: inline-flex;
    align-items: center;
    height: fit-content;
    color: #9dff00;
    border: 1px solid #9dff00;
    padding: 0.75rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: 0.25s ease;
}

.gym-navigate-link:hover {
    color: #080908;
    background: #9dff00;
    box-shadow: 0 0 1.4rem rgba(153, 255, 0, 0.45);
}

.gym-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem 0;
    /* border-bottom: 1px solid rgba(153, 255, 0, 0.16); */
}

.gym-detail-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 0.6rem 0.85rem;
    border-radius: 0.25rem;
    font-size: 0.86rem;
    font-weight: 800;
}

.gym-contact-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.65rem 0;
    /* border-bottom: 1px solid rgba(153, 255, 0, 0.16); */
}

.gym-contact-icon {
    display: grid;
    place-items: center;
    width: 3rem;
    aspect-ratio: 1;
    color: #9dff00;
    border: 1px solid rgba(153, 255, 0, 0.5);
    background: rgba(153, 255, 0, 0.08);
    font-size: 1.25rem;
}

.gym-contact-panel h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}

.gym-contact-panel a {
    color: #ff6333;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
}

.gym-plan-included {
    padding-top: 2.4rem;
}

.compact-heading h3 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.05;
}

.compact-heading h3 span {
    color: #9dff00;
    text-shadow: 0 0 1.3rem rgba(153, 255, 0, 0.55);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.included-card {
    display: grid;
    place-items: center;
    gap: 0.7rem;
    min-height: 8.25rem;
    padding: 1rem;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(153, 255, 0, 0.18);
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.included-card:hover {
    border-color: rgba(153, 255, 0, 0.75);
    background: rgba(153, 255, 0, 0.08);
    transform: translateY(-0.15rem);
}

.included-card i {
    color: #9dff00;
    font-size: 2rem;
    line-height: 1;
}

.included-card span {
    max-width: 8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Sticky Sidebar */
.membership-sidebar {
    position: sticky;
    top: 1.25rem;
}

.membership-card {
    padding: 1rem;
    background:
        linear-gradient(145deg, rgba(153, 255, 0, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(10, 12, 9, 0.92);
    border: 1px solid rgba(153, 255, 0, 0.45);
    box-shadow:
        0 1.5rem 4rem rgba(0, 0, 0, 0.45),
        inset 0 0 2rem rgba(153, 255, 0, 0.04);
    backdrop-filter: blur(18px);
}

.membership-card h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.plan-card {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-card + .plan-card {
    margin-top: 0.9rem;
}

.plan-card.active {
    border-color: rgba(153, 255, 0, 0.38);
    background: rgba(153, 255, 0, 0.07);
}

.plan-card h3 {
    margin: 0 0 0.65rem;
    color: #ff6333;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-price {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 950;
    line-height: 1;
}

.plan-price span {
    margin-left: 0.25rem;
    color: #9dff00;
    font-size: 1rem;
    font-weight: 900;
}

.plan-note {
    margin: 0.7rem 0 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
}

.plan-benefits strong {
    display: block;
    margin-bottom: 0.7rem;
    color: #fff;
    font-size: 0.95rem;
}

.plan-benefits ul {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.plan-benefits li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}

.plan-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.42rem;
    aspect-ratio: 1;
    background: #9dff00;
    box-shadow: 0 0 0.8rem rgba(153, 255, 0, 0.8);
}

.btn-outline-agm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    color: #9dff00;
    border: 1px solid rgba(153, 255, 0, 0.75);
    background: transparent;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: 0.25s ease;
}

.btn-outline-agm:hover {
    color: #080908;
    background: #9dff00;
}
.gym-mobile-gallery .swiper-button-prev,
.gym-mobile-gallery .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
    border: 1px solid rgba(153, 255, 0, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.gym-mobile-gallery .swiper-button-prev::after,
.gym-mobile-gallery .swiper-button-next::after {
    display: block;
    color: #fff;
    font-family: swiper-icons;
    font-size: 1rem;
    font-weight: 900;
}

.gym-mobile-gallery .swiper-button-prev::after {
    content: "prev";
}

.gym-mobile-gallery .swiper-button-next::after {
    content: "next";
}

.gym-mobile-gallery .swiper-button-prev:hover,
.gym-mobile-gallery .swiper-button-next:hover {
    color: #9dff00;
    border-color: #9dff00;
    background: rgba(0, 0, 0, 0.85);
}

.gym-mobile-gallery .swiper-button-prev:hover::after,
.gym-mobile-gallery .swiper-button-next:hover::after {
    color: #9dff00;
}
/* Responsive */

@media (max-width: 1200px){
.gyms-grid .gym-card{
    grid-template-columns: 280px 1fr;
}
.card-body{
    padding: 1.5rem;
}
}
@media (max-width: 991.98px) {
    .gym-detail-content {
        padding-right: 0;
    }

    .membership-sidebar {
        position: static;
    }

    .included-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .gym-detail-heading {
        display: grid;
    }
.gyms-grid .gym-card{
    grid-template-columns: 1fr;
}
    .gym-navigate-link {
        width: fit-content;
    }

    .included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .included-card {
        min-height: 7.5rem;
    }
}
@media (max-width: 576px){
.card-name{
    font-size: 22px;
}
.content-area{
    padding: 0;
}
.rating{
    padding: 0;
}
.gallery-main img, .gallery-item img, .gym-mobile-gallery img{
    object-fit: contain;
}
}
@media (max-width: 420px) {
    /* .gym-detail-tags span {
        width: 100%;
    } */

    .included-grid {
        gap: 0.65rem;
    }

    .membership-card,
    .plan-card {
        padding: 0.85rem;
    }
}

.plan-card .btn-primary-agm{
    text-align: center;
}