* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: white;
}

/* Modal Card Style */
.service-card-modal {
    background: #101010; /* same dark tone as your cards */
    border-radius: 20px;
    padding: 25px;
    border: 2px solid #F9C74F; /* gold border */
    box-shadow: 0 0 20px rgba(249, 199, 79, 0.25);
}

/* White close button for dark modal */
.service-card-modal .btn-close-white {
    filter: invert(1);
}

/* Location Buttons - matching theme */
.location-btn {
    width: auto;
    padding: 12px 15px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    background: linear-gradient(#1a1a1f, #1a1a1f) padding-box, linear-gradient(90deg, #f14fed, #f4ca65) border-box !important;
    border: 2px solid transparent !important;
    color: white !important;
    animation: moveBorder 3s linear infinite !important;
}

/* Hover Glow Effect */
.location-btn:hover {
    background: #F9C74F;
    color: #000;
    /* box-shadow: 0 0 20px rgba(249, 199, 79, 0.8); */
}

.benefits button.league-btn {
    background: linear-gradient(to right, #b93fff, #f5cc64);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 30px;
    font-weight: 500;
    width: 100%;
    margin-top: 20px;
    transition: 0.3s ease;
}

.benefits button.lane-btn {
    background: linear-gradient(to right, #b93fff, #f5cc64);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 30px;
    font-weight: 500;
    width: 100%;
    margin-top: 20px;
    transition: 0.3s ease;
}

.service-card-modal img.location-logo {
    height: 50px;
}


.custom-navbar .navbar-border {
    padding: 2px;
    border-radius: 52px;
    background: linear-gradient(274deg,
            #4444,
            #444,
            #444,
            #444,
            #ffffff54,
            #ffffff91,
            #ffffff8f,
            #ffffffa3,
            #ffffffad);
    margin: 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.custom-navbar {
    position: relative;
    z-index: 2222;
}

.custom-navbar .navbar-inner {
    background: linear-gradient(to right, #302139, #432954, #000000);
    border-radius: 50px;
    padding: 10px 20px;
}

.custom-navbar .navbar-brand {
    transition: transform 0.3s ease;
}

.custom-navbar .navbar-brand:hover {
    transform: scale(1.05);
}

.custom-navbar .nav-link {
    color: #acacac !important;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
    width: 100%;
}

.custom-navbar .nav-link:hover {
    color: #fff !important;
}

.custom-navbar .nav-link.active {
    color: #fff !important;
}

.custom-navbar .nav-link.active::after {
    width: 100%;
}

.custom-navbar .social-icons span {
    width: 30px;
    height: 30px;
    /* border: 1px solid white; */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.custom-navbar .social-icons span:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-navbar .navbar-toggler {
    border-color: white;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.custom-navbar li.nav-item {
    padding: 0 4px;
}

.shadow-section .shadow-img {
    position: absolute;
    z-index: -1;
}

.gradient-text {
    font-weight: bold;
    font-style: italic;
    background: repeating-linear-gradient(90deg,
            #b93fff,
            #f5cc64 20%,
            #b93fff 40%);
    background-size: 200% 100%;
    background-position: 0% center;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    animation: scrollGradient 4s linear infinite;
}

@keyframes scrollGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -100% center;
    }
}

.unleash .rating-text {
    border: 1px solid #ffffff;
    border-radius: 40px;
    margin: 0;
    padding: 13px;
    font-size: 12px;
    width: max-content;
    margin-top: 39px;
    font-weight: 200;
}

.unleash-right {
    text-align: center;
    position: relative;
}

.unleash-right .bars-card {
    position: absolute;
    top: -60px;
    right: 73px;
}

.unleash-right .hotels-card {
    position: absolute;
    top: 117px;
    left: -30px;
}

.unleash-right .bowling-card {
    position: absolute;
    bottom: 101px;
    right: 0;
}

.cont-card {
    backdrop-filter: blur(5px);
    background: #404040a6;
    z-index: 9;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid white;
    max-width: 250px;
}

.unleash-right .carousel-indicators .active {
    opacity: 1 !important;
    height: 13px !important;
    width: 13px !important;
    border-radius: 50% !important;
    background-color: #bc47f7 !important;
}

.unleash-right .carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: white;
    opacity: 1;
}

.unleash-right .carousel-indicators {
    bottom: -45px;
}

section.unleash {
    margin-top: 106px;
}

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

.cont-card p {
    font-size: 13px;
    margin: 0;
}

.stay-play-section {
    /* background: linear-gradient(135deg, #0a0a0f, #1e0e29); */
    color: white;
    padding: 4rem 0;
}

.subheading {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(20deg,
            #b93fff,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    width: max-content;
    /* margin: auto; */
    background: repeating-linear-gradient(90deg, #b93fff, #f5cc64 50%);
    background-size: 200% 100%;
    background-position: 0% center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stay-play-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2.5rem;
}

.stay-play-section .card-list .card {
    background-color: #1a1a1f;
    border-radius: 1rem;
    border: 1px solid #333;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

/* .card.gradient-border {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
                linear-gradient(90deg, #ffffff, #282828) border-box;
    border: 2px solid transparent !important;
    color: white;
  } */
.card.gradient-border {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    border: 0 solid transparent !important;
    background-clip: padding-box !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px) !important;
    color: #fff;
    z-index: 1;
    width: 100%;
}

.card.gradient-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(90deg, #ffffff, #282828);
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}

.benefit-img {
    width: 48px;
    margin: auto;
    margin-bottom: 5px;
}

.stay-play-section .card img {
    width: 135px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 9px;
}

.westgate .subheading {
    width: auto;
}

.stay-play-section .card-body {
    padding: 0;

}
.home-station {
    padding: 0;
    text-align: center;
}

.stay-play-section .visitors {
    font-size: 13px;
}

.stay-play-section .rating {
    background-color: #2c2c2e;
    border-radius: 1rem;
    padding: 0.3rem 1rem;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stay-play-section .map-box {
    background-color: #111;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.stay-play-section .map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-play-section .card-title {
    font-size: 1.2rem;
    font-weight: 600;

}

.home-station .card-title{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-station .card-text{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stay-play-section .card-text {
    font-size: 0.9rem;
    color: #ffffffb2;
}

.testimonial-container {
    /* max-width: 800px; */
    margin: 80px auto;
    border-radius: 20px;
    /* padding: 40px; */
    /* background: rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.testimonial-container .testimonial-quote {
    font-size: 40px;
    color: white;
}

.testimonial-container .testimonial-text {
    font-size: 18px;
    margin-top: 10px;
    color: #ddd;
}

.testimonial-container .testimonial-author {
    margin-top: 35px;

    margin-top: 20px;
    font-weight: 500;
    color: #fff;
}

.testimonial-container .testimonial-role {
    font-size: 14px;
    color: #aaa;
}

.testimonial-container .carousel-indicators {
    position: static;
    margin-top: 30px;
}

.testimonial-container .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    margin: 0 10px;
}

.testimonial-container .carousel-indicators .active {
    /* border-color: #ff90e8; */
    transform: scale(1.1);
}

.contact-form-section {
    /* background: radial-gradient(circle at top, #000000, #1a0033); */
    /* min-height: 100vh; */
    color: white;
    /* font-family: 'Segoe UI', sans-serif; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 60px 15px; */
}

.contact-form-section h6 {
    color: #ff90e8;
    margin-bottom: 5px;
    text-align: center;
}

.benefits {
    padding-top: 100px;
}

.contact-form-section h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    /* max-width: 800px; */
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.contact-form .form-control {
    background-color: transparent;
    border: 1px solid #ffffff33;
    height: 55px;
    color: white;
    backdrop-filter: blur(25px);
}

.contact-form textarea {
    min-height: 100px;
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

.contact-form .form-control:focus {
    background-color: transparent;
    color: white;
    border-color: #ff90e8;
    box-shadow: none;
}

.contact-form .btn-submit {
    background: linear-gradient(to right, #b93fff, #f5cc64);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 30px;
    font-weight: 500;
    width: 100%;
    margin-top: 20px;
    transition: 0.3s ease;
}

.contact-form .btn-submit:hover {
    opacity: 0.9;
}

.custom-footer {
    /* background: radial-gradient(circle at top left, rgba(255, 0, 255, 0.2), #111); */
    color: #ddd;
    padding-top: 80px;
    padding-bottom: 50px;
    /* font-family: 'Segoe UI', sans-serif; */
    border-radius: 20px 20px 0 0;
    /* max-width: 1200px; */
    margin: auto;
}

.custom-footer a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.custom-footer a:hover {
    color: #ff90e8;
}

.custom-footer h5 {
    font-size: 25px;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-footer .footer-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.custom-footer .contact-info i {
    margin-right: 10px;
}

.custom-footer .contact-info p {
    color: #ccc;
    margin: 5px 0;
    font-size: 14px;
}

.custom-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 2.8rem;
    font-size: 13px;
    color: #ccc;
}

.custom-footer .footer-bottom a {
    font-size: 13px;
    margin-left: 15px;
}

.custom-footer .nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.unleash h1 {
    font-size: 54px;
}

.about-us img {
    transition: 0.3s ease;
}

.about-us img:hover {
    transform: scale(1.1);
}

.westgate p {
    color: #ffffffb2;
    font-size: 16px;
    font-weight: 500;
    max-width: 900px;
    margin: auto;
    margin: 15px auto;
}

.west-video {
    margin: 40px 0;
}

.west-video .west-video-content {
    background: #ffffff1a;
    padding: 13px 34px 59px 34px;
}

.unmatched .card img {
    width: 198px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.unmatched .rating {
    position: absolute;
    width: max-content;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
}

.westgate .list-btn {
    /* width: max-content; */
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 7px 12px;
    border-radius: 20px;
    margin: auto;
}

.custom-gallery .main-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 360px;
}

.custom-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* position: absolute; */
    top: 0;
    left: 0;
    /* opacity: 0; */
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.custom-gallery .main-image img.active {
    opacity: 1;
    z-index: 2;
}

.custom-gallery .thumbnails {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.custom-gallery .thumbnails img {
    width: 190px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.custom-gallery .thumbnails img.active {
    border-color: #fff;
}

.custom-gallery .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: rgba(0, 0, 0, 0.6); */
    border: none;
    border-radius: 50%;
    /* color: white; */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 20px;
}

.custom-gallery .carousel-button.prev {
    left: 10px;
}

.custom-gallery .carousel-button.next {
    right: 10px;
}

.bowling-section .shape-one {
    top: -400px !important;
    bottom: inherit !important;
}

.bowling-section img.shadow-img.shape-two {
    top: 350px !important;
    left: inherit !important;
    right: 10px;
}

.west-video-content h2 {
    font-size: 21px;
    font-weight: 500;
}

.west-video-content h2 {
    font-size: 14px;
}

.kaipara {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(20deg,
            #fd0b2e,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64,
            #f5cc64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    width: max-content;
    /* margin: auto; */
    background: repeating-linear-gradient(90deg, #fd0b2e, #f5cc64 50%);
    background-size: 200% 100%;
    background-position: 0% center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.white-hart {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(20deg,
            #f5cc64,
            #fff7dd,
            #fff7dd,
            #fff7dd,
            #fff7dd,
            #fff7dd,
            #fff7dd,
            #fff7dd,
            #fff7dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    width: max-content;
    /* margin: auto; */
    background: repeating-linear-gradient(90deg, #f5cc64, #fff7dd 50%);
    background-size: 200% 100%;
    background-position: 0% center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.testimonial-card {
    background: #0052d08a;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

.testimonial-new .avatar {
    width: 70px;
    height: 70px;
    border: 4px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -50px;
    background: #fff;
}

.testimonial-new .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h5 {
    margin-top: 1rem;
    font-weight: 600;
}

.testimonial-card .stars {
    margin: 0.5rem 0;
}

.testimonial-card .stars i {
    color: #d8d8d8;
}

.testimonial-card .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.testimonial-card .owl-nav button {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    margin: 0 10px;
}

.testimonial-card .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.testimonial-card .owl-dot span {
    background: #fff;
    opacity: 0.5;
}

.testimonial-card .owl-dot.active span {
    opacity: 1;
}

.testimonial-new {
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonial-new .avatar {
    /* position: absolute; */
    /* top: -30px; */
    left: 0;
    right: 0;
    margin: auto;
}

.testimonial-new .testimonial-card p {
    color: #959595;
}

.find-us-section {
    background-color: #000;
    color: white;
    padding: 4rem 0;
}

.find-us-section h2 {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.find-us-section .map-box iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    border: 0;
}

.find-us-section .contact-info {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ffffffcc;
}

.find-us-section .contact-info a {
    color: #ffffffcc;
    text-decoration: none;
}

.find-us-section .social-icons i {
    font-size: 1.2rem;
    margin-right: 10px;
    cursor: pointer;
}

.find-us-section .btn-direction {
    border: 1px solid white;
    color: white;
    background: transparent;
    padding: 0.5rem 1.2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-radius: 9px;
}

.find-us-section .btn-direction i {
    margin-left: 5px;
}

.find-us-section .divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.find-us-section .hours p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 2;
    color: #ffffffcc;
}

.about-us ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.about-us ul li i {
    color: #f150ec;
    margin-right: 6px;
}

.call-btn {
    background: #5500f9;
    font-size: 13px;
    padding: 8px 10px !important;
    top: 200px;
    right: 50px;
    z-index: 99;
    width: max-content;
    margin-left: auto;
    position: fixed;
    /* left: 0; */
    margin: auto;
}

@media (max-width: 767px) {
    .find-us-section .divider {
        display: none;
    }

    .find-us-section .map-box iframe {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .testimonial-card .custom-footer .nav-links {
        justify-content: center;
        margin-top: 20px;
    }

    .testimonial-card .custom-footer .footer-bottom {
        text-align: center;
    }

    .testimonial-card .custom-footer .footer-bottom .text-end {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .contact-form .row>div {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .custom-navbar .social-icons {
        margin-top: 10px;
        justify-content: center;
    }


}

/* Animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

img.shadow-img.three-shadow {
    top: 15%;
    right: 0;
    rotate: 180deg;
}

img.shadow-img.two-shadow {
    top: -4%;
    right: 0;
    rotate: 180deg;
}

img.shadow-img.five-shadow {
    top: 54%;
    right: 0;
    rotate: 180deg;
}

img.shadow-img.one-shadow {
    top: 7%;
}

img.shadow-img.four-shadow {
    top: 38%;
}

img.shadow-img.six-shadow {
    bottom: 0%;
}

.card-new.gradient-border {
    position: relative !important;
    padding: 1rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
        linear-gradient(90deg, #f14fed, #f4ca65) border-box !important;
    border: 2px solid transparent !important;
    color: white !important;
    animation: moveBorder 3s linear infinite !important;
}

.card-new.gradient-border::before {
    display: none !important;
}

@keyframes moveBorder {
    0% {
        background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
            linear-gradient(45deg, #f14fed, #f4ca65) border-box;
    }

    25% {
        background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
            linear-gradient(135deg, #f14fed, #f4ca65) border-box;
    }

    50% {
        background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
            linear-gradient(225deg, #f14fed, #f4ca65) border-box;
    }

    75% {
        background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
            linear-gradient(315deg, #f14fed, #f4ca65) border-box;
    }

    100% {
        background: linear-gradient(#1a1a1f, #1a1a1f) padding-box,
            linear-gradient(45deg, #f14fed, #f4ca65) border-box;
    }
}

img.shadow-img.shape-one {
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    bottom: 6%;
}

img.shadow-img.shape-three {
    bottom: 0;
    z-index: -1;
    animation: floatUpDown 3s ease-in-out infinite;
}

img.shadow-img.shape-two {
    top: 40%;
    animation: floatUpDown 3s ease-in-out infinite;
    left: 244px;
}

.testimonial-new .owl-nav{
    display: none;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
        /* Adjust the value for desired float distance */
    }
}

img.mid-line-one {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -81px;
    z-index: 9;
}

.benefits hr {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

img.mid-line-two {
    position: absolute;
    top: -80px;
    rotate: 180deg;
    left: 0;
    right: 0;
    margin: auto;
}

.benefits .card p {
    color: #ffffffb2;
    margin: 0;
    margin-top: 10px;
}

.testimonial-quote img {
    margin: 40px 0 38px 0;
}

.review-box {
    max-width: 1100px;
    margin: auto;
}


@media(max-width:1399.98px) {

    .unleash-right .bars-card {
        right: 0;
    }

}

@media(max-width:1199.98px) {

    .unleash-right .bowling-card {
        bottom: 47px;
    }

    .unleash h1 {
        font-size: 44px;
    }


}

@media(max-width:991.98px) {

    .unleash .rating-text {
        margin: auto;
    }

 

.stay-play-section  .card-title{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stay-play-section  .card-text{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .unmatched .card img {
    width: 113px;
    height: 104px;
    }

    .unleash h1 {
        font-size: 31px;
    }

    .stay-play-section .section-title {
        font-size: 26px;
    }

    .about-us h2 {
        font-size: 26px;
    }

    .testimonial-container h2 {
        font-size: 26px;
    }

    .custom-gallery .thumbnails img {
        width: 140px;
        height: 100px;
    }

}

@media(max-width:767.98px) {
    img.shadow-img.shape-two {
        left: 0;
    }

    .testimonial-new {
    padding-top:0;
    padding-bottom: 40px;
}

    .find-us-section h2{
        margin-bottom: 0;
    }

    .find-us-section{
        padding: 2rem 0;
    }

    .unleash-right .hotels-card {
        left: 0;
    }

    .stay-play-section .section-title {
        font-size: 23px;
        margin-bottom: 16px;
    }

    .about-us h2 {
        font-size: 23px;
    }

    .testimonial-container h2 {
        font-size: 23px;
    }

    .benefits {
        padding-top: 40px;
    }

    .custom-footer {
        padding-top: 40px;
    }

    .benefits hr {
        display: none;
    }

    img.mid-line-one {
        display: none;
    }

    .testimonial-container {
        margin: 50px auto;
    }

    .testimonial-quote img {
        margin: 18px 0 24px 0;
    }

    .testimonial-container .testimonial-text {
        font-size: 16px;
        margin-top: 0px;
    }

    .testimonial-container .carousel-indicators {
        margin-bottom: 0;
    }

    .custom-gallery .thumbnails img {
        width: 100px;
        height: 80px;
    }



}

@media(max-width:575.98px) {
    .map-box #map {
        height: 234px !important;
    }

    .find-us-section h2 {
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    }

    .stay-play-section {
        padding: 2rem 0;
    }

    .card.gradient-border {
        padding: 1rem;
    }

    .custom-gallery .main-image{
        height: 250px;
    }


}

@media(max-width:480.98px) {
    .unleash h1 {
        font-size: 27px;
    }

    .unleash-right .bowling-card {
        bottom: 0;
    }

    .cont-card p {
        font-size: 11px;
    }

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

    .westgate .list-btn .subheading{
        font-size: 13px;
    }

    .westgate p {
    font-size: 14px;
    }

    .custom-gallery .thumbnails img {
    width: 68px;
    height: 50px;
    }

    .testimonial-container .carousel-indicators [data-bs-target] {
        width: 39px;
        height: 39px;
    }

    .testimonial-quote img {
        margin: 0;
        width: 39px !important;
    }

    .testimonial-container h2 {
        margin-bottom: 0 !important;
    }

    .testimonial-container .carousel-indicators {
        margin-top: 19px;
    }

    .contact-form-section h2 {
        margin-bottom: 22px;
    }
}