/* Inter Thin */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Thin.woff2') format('woff2'),
        url('assets/fonts/Inter-Thin.woff') format('woff'),
        url('assets/fonts/Inter_18pt-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* Inter Regular */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Regular.woff2') format('woff2'),
        url('assets/fonts/Inter-Regular.woff') format('woff'),
        url('assets/fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Inter Bold */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Bold.woff2') format('woff2'),
        url('assets/fonts/Inter-Bold.woff') format('woff'),
        url('assets/fonts/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Inter ExtraBold */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-ExtraBold.woff2') format('woff2'),
        url('assets/fonts/Inter-ExtraBold.woff') format('woff'),
        url('assets/fonts/Inter_18pt-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter_28pt-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}



/* Poppins Light */
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: black;
    --white: white;
    --gray: gray;

    --primary-color: red;
    --secondary-color: #FDC700;
    --action-color: #193CB8;

    --bg1: green;
    --bg2: pink;

    --gradient1: background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);

    --heading: 'Inter', sans-serif;
    --sub-heading: 'Poppins', sans-serif;
    --content: 'Lora', serif;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--action-color)
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--sub-heading);
    font-size: 18px;
    /* line-height: 20px; */

    margin-top: 10px;
    font-weight: 400;
}

/* ================== class ================= */


/* background color  */
.bg-black {
    background: var(--black);
}

.bg-white {
    background: white;
}

.bg-primary {
    background: var(--primary-color);
}

.bg-secondary {
    background: var(--secondary-color);
}

.bg-action {
    background: var(--action-color);
}

.bg1 {
    background: var(--bg1);
}

.bg2 {
    background: var(--bg2);
}

.bg-gradient1 {
    background: var(--gradient1);
}

.bg-gradient2 {
    background: var(--gradient2);
}

.white {
    color: white;
}

.black {
    color: var(--black);
}

.primary {
    color: var(--primary-color);
}

.secondary {
    color: var(--secondary-color);
}

.action {
    color: var(--action-color) !important;
}

.padding-right {
    padding-right: 10vw;
}

.padding-left {
    padding-left: 30px;
}

/* text color  */

section {
    padding: 0;
    margin: 0;
}

.container-fluid {
    position: relative;
    padding: 0;
    margin: 0;
}

.section-item {
    position: relative;
    padding: 30px clamp(15px, 6vw, 60px);
}

.container {
    width: 100%;
   max-width: 1450px;
    margin: auto;
}

.align-item {
    display: flex;
    align-items: center;
}


/* -------------- button ------------- */
.card {
    background: transparent;
    backdrop-filter: blur(10px);

}



/* ============================================== */
/* HEADING */
/* ============================================== */

.heading-body {
    display: flex;
    flex-direction: column;
}

.heading-body .small-heading {
    color: var(--secondary);
    font-family: var(--sub-heading);
    font-style: italic;
    font-size: 17px;
    position: relative;
    width: fit-content;
    color: black;
    text-transform: capitalize;
}

.heading-body .small-heading::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    top: 11px;
    right: -28px;
    background: var(--primary-color);
}

.heading-body .small-heading::before {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    top: 16px;
    right: -43px;
    background: var(--primary-color);
}


.heading-body .big-heading {
    font-size: clamp(25px, 2.8vw, 70px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--action-color);
}

.heading-body .big-heading span {
    color: var(--action-color);
    font-weight: bold;
    font-family: var(--heading);
    /* font-size: 18px; */
}

.heading-body .content-heading {
    width: 90%;
}

.center {
    align-items: center;
}

.start {
    align-items: start;
}

.end {
    align-items: end;
}

.heading h1 {
    
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 900;
    font-family: var(--heading);
    color: black;
}

.myheader {
    position: absolute;
    width: 100%;
    height: 200px;
    z-index: 100;
    background: linear-gradient(#193cb8b9, #193cb89d, #193cb800);
}

.marquee-body {
    border-bottom: 1px solid rgba(211, 211, 211, 0.192);
}

.mymarquee {

    /* background: #052ec2; */
    padding: 10px;
    width: 100%;
}

.mymarquee .swiper-slide {
    width: auto;
}

.mymarquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

.mymarquee .marquee-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 30px; */
}

.mymarquee .marquee-item .location-name {
    width: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 20px;


}


.mymarquee .marquee-item .location-name .line {
    color: var(--secondary-color);
    font-size: 20px;

}

.mymarquee .marquee-item .location-name .icon-img {
    width: 15px;
    height: 15px;
    overflow: hidden;
    border-radius: 50%;
    outline: 4px solid rgba(128, 128, 128, 0.664);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mymarquee .marquee-item .location-name .icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.mymarquee .marquee-item .location-name:hover {
    color: var(--secondary-color);
}

/* ------------- slider section ------------------ */

.myslider {
    width: 100%;
    height: 100vh;

}

.myslider .slider-img {
    width: 100%;
    height: 100%;

}

.myslider .slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mymarquee .marquee-item .location-name:hover {
    background-color: rgba(54, 54, 54, 0.562);

    border-radius: 15px;
}

.banner-sec {
    position: relative;
    width: 100%;
}

.banner-btns {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-ban {
    display: block;
}

.slider-phone {
    display: none !important;
}

.banner-btns .but-ticket {
    background-color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    color: white;
    font-weight: bolder;
    transition: all 0.4s;
    text-shadow: 0 0 10px rgb(139, 139, 139);
}

.bookpraty {
    background-color: var(--action-color) !important;

}

.banner-btns .but-ticket:hover {
    transform: scale(1.1);
}

.bookpraty:hover {
    background-color: #F54A00 !important;

}



/* ------------------- Navbar section ----------------- */



/* phone  navbar  */
.phone-navbar {
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0px;
    min-width: 0px;
    width: 30%;
    background-color: white;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0px -10px 10px rgb(134, 134, 134);
    display: none;
    transition: all .3s;
}

.phone-navbar::-webkit-scrollbar {
    background: rgb(224, 223, 223);
    width: 6px;
    border-radius: 30px;

}

.phone-navbar::-webkit-scrollbar-thumb {
    background-color: #0066ff;
    border-radius: 30px;
}

.phone-navbar .pheader {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--action-color);
}

.phone-navbar .pheader .plogo {
    width: 70px;
}

.phone-navbar .pheader .plogo img {
    width: 100%;
}

.phone-navbar .pheader .close-btn {
    width: 35px;
    height: 35px;
    background: rgba(170, 169, 169, 0.548);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.1s;

}

.phone-navbar .pheader .close-btn i {
    transition: all 0.1s;

}


.phone-navbar .pheader .close-btn:hover {
    background-color: white;
    color: var(--action-color);
}

.phone-navbar .pheader .close-btn:hover i {
    transform: rotate(360deg);
}

.pmenu .pitem {
    width: 100%;
    /* height: 100%; */
    background-color: whitesmoke;
    border-bottom: 1px solid lightgray;
    padding: 15px 0px;
    background-color: white
}

.pmenu .pitem a {
    width: 100%;
    height: 100%;
}

.pmenu .pitem:hover {
    background: rgb(189, 214, 252);
}

.pmenu .pitem .pitem-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pmenu .pitem .pitem-btn .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmenu .pitem .pitem-btn .icon:hover {
    color: var(--action-color);
}

.pmenu .pitem a {
    color: black;
    padding: 0px 15px;

    font-weight: 600;
    font-family: var(--heading);
}

.pmenu .pitem .pdropdown {
    background: whitesmoke;
    margin-top: 10px;
    display: none;
}

.pmenu .pitem .pdropdown li {
    padding: 10px 20px;
}

.pmenu .pitem .pdropdown li a {
    color: rgb(94, 93, 93);
    font-weight: 400;
}

.pmenu .pitem .pdropdown li:hover {
    background: rgb(203, 222, 250);
}

.menu-open {
    display: block;
    min-width: 320px;

}



.dropdown-open {
    display: block !important;

}

.phone-btn-body {
    width: 100%;
    height: auto;
    padding: 10px;
}

.phone-btn-body .phone-number {
    width: 100%;
    padding: 10px;
    background-color: #1447E6;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
}

.phone-btn-body .phone-number1 {
    color: var(--action-color);
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.phone-btn-body .phone-number3 {
    background-color: #FDC700;
}

.phone-btn-body .phone-number:hover {
    transform: translateY(-3px);
}


.navbar-sec {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    /* background-color: #193CB8; */
}

.navbar-sec .letf-nav {
    width: 70px;
}

.navbar-sec .letf-nav .logo {
    width: 100%;
}

.navbar-sec .letf-nav .logo img {
    width: 100%;
}

.navbar-sec .center-nav .nav-listbar {
    display: flex;
    align-items: center;
    gap: 40px;
    /* margin: 0 20px; */
}

.navbar-sec .center-nav .nav-listbar li a {
    font-size: 14px;
    font-family: var(--heading);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    padding: 10px 0;
    /* background-color: red; */
}

.navbar-sec .rigth-nav .contact-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;

}

.navbar-sec .rigth-nav .contact-nav li {
    padding: 8px 23px;
    border-radius: 30px;
    /* background-color: red; */
}

.navbar-sec .rigth-nav .contact-nav .nav-btn {
    font-size: 14px;
    font-family: var(--heading);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: 1;


}
.hamburger {
    width: 40px;
    height: 35px;
    display: none;
    border-radius: 0 !important;
    padding: 0 !important;
    flex-direction: column;
    justify-content: space-evenly;

}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 30px;
}


.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    padding: 8px 27px 8px 23px !important;
    border: 1px solid rgba(255, 255, 255, 0.137);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

}

@keyframes opacityPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.glass::after {
    width: 8px;
    height: 8px;
    background-color: rgb(2, 179, 2);
    position: absolute;
    content: '';
    top: 40%;
    right: 10px;
    border-radius: 50%;
    animation: opacityPulse 1s ease-in-out infinite;
}

.glass:hover a {
    color: #FDC700 !important;

}

.book-btn {
    background: linear-gradient(90deg,
            #ff8a00 0%,
            #ff2f92 50%,
            #3145f8 100%);
    transition: all 0.6s;
    text-transform: uppercase;
}

.book-btn:hover a {
    color: var(--action-color);
}
.book-btn a{
    font-size:14px;
    font-weight: 800;
}

.book-btn:hover {
    transform: scale(1.1);
}

.subdrop {
    position: absolute;
    top: 104px !important;
    background-color: white;
    border-radius: 10px;
    /* padding: 11px 5px; */
    overflow: hidden;
    display: none;
}

.subdrop li {

    padding: 11px 25px;
}

.subdrop li a {
    color: rgb(0, 0, 0) !important;
    font-weight: 500 !important;
    font-size: 12px !important;
}

.subdrop li:hover {
    background: #cce4ff;
}

.subdrop li:hover a {
    color: rgb(0, 73, 168) !important;
}

.sub-btn:hover .subdrop {
    display: block;
}

.nav-listbar .nav-items {
    position: relative;
}

.nav-listbar .nav-items::after {
    position: absolute;
    content: '';
    bottom: 2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #FDC700;
    transition: all 0.3s;
}

.nav-listbar .nav-items:hover {
    color: #FDC700 !important;
}

.nav-listbar .nav-items:hover::after {
    width: 100%;
}

.sub-btn:hover .nav-items::after {
    display: none;
}


/* ------------------ About us --------------- */
.form-group {
    width: 100%;
    font-family: 'Inter', sans-serif;
}

label {
    display: block;
    font-size: 24px;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 700;
    margin-bottom: 8px;
}

.required {
    color: red;
}

.custom-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #000000;
    outline: none;
    cursor: pointer;
    background-color: #fff;
}

.custom-select:focus {
    border-color: #1e63d6;
}


.custom-select option {
    padding: 10px;
    font-size: 16px;
}


.custom-select option:checked {
    background-color: #1e63d6;
    color: #fff;
}

.location-card {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
}

.location-card img {
    width: 100%;
}

.about-card {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

.about-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .heading {
    /*font-size: 30px;*/
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--heading);
    color: black;
}

.about-content p {
    color: black;
    font-size: 500;
    line-height: 25px;
    font-size: 16px;
}

.about-content strong {
    color: var(--action-color);
}

/* ============ party section ===================== */

.img-box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s;

}

.img-box:hover img {
    transform: scale(1.1);
}

.mypraty {
    padding: 50px 4vw;
    background-color: var(--action-color);
}

.heading {
    font-size: 40px;
        font-size: clamp(24px, 5vw, 40px);

    line-height: 1.3;
    font-weight: 700;
    font-family: var(--heading);
    color: black;
}

.praty-content p {
    line-height: 28px;
    font-size: 17px;
}

.book-btns {
    background: linear-gradient(90deg,
            #ff8a00 0%,
            #ff2f92 50%,
            #673dff 100%);
    color: rgb(0, 0, 0);
    width: fit-content;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
}

.background-sky {
    background: linear-gradient(transparent, #C0E9FE);
}

.test-card {
    width: 100%;
    height: auto;
    /* padding: 10px; */
    position: relative;
}

.test-card .test-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FCE3E4;
    padding: 40px 30px;
    border-radius: 30px;
}

.test-card .test-top .bottom-comma,
.test-card .test-top .top-comma {
    position: absolute;
    color: red;
    font-size: 25px;

}

.test-card .test-top .top-comma {
    top: -9px;
    left: 25px;
}

.test-card .test-top .bottom-comma {
    bottom: 50px;
    right: 30px;
}

.test-card .test-top .content {
    height: 150px;
    margin-top: 10px;
    font-size: 14px;
    color: rgb(36, 35, 35);
    font-weight: 500;
}

.test-card .test-bottom {
    position: relative;
    margin-top: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;

}

.test-card .test-bottom .bottom-img {
    width: 100%;
}

.test-card .test-bottom .bottom-img img {
    width: 100%;
}

.test-bottom .title-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    padding: 30px;
    display: flex;
    align-items: center;
    /* justify-content: start; */
    gap: 15px;
    background: #00000050;
}

.test-bottom .title-box .icon-img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.test-bottom .title-box .icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-bottom .title-box .title {
    font-size: 14px;
    color: whitesmoke;
}

.test-bottom .title-box .title span {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

.green-card .test-top {
    background-color: #DDFBE9;
}

.green-card .test-top .bottom-comma,
.green-card .test-top .top-comma {
    color: green;

}

.yellow-card .test-top {
    background-color: #FCF9C8;
}

.yellow-card .test-top .bottom-comma,
.yellow-card .test-top .top-comma {
    color: yellow;

}

.blue-card .test-top {
    background-color: #DCEBFE;
}

.blue-card .test-top .bottom-comma,
.blue-card .test-top .top-comma {
    color: blue;

}

.google-review-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #000;
    border: 2px solid rgba(204, 203, 203, 0.548);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 2px solid var(--action-color);
    transform: scale(1.1);
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

/* Google Logo */
.google-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(#4285F4 0deg 90deg,
            #34A853 90deg 180deg,
            #FBBC05 180deg 270deg,
            #EA4335 270deg 360deg);
    color: #fff;
}

/* Text */
.review-text strong {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.stars {
    color: #fbbc04;
    font-size: 14px;
    line-height: 1;
}

/* Arrow */
.arrow {
    font-size: 18px;
    margin-left: 10px;
    opacity: 0.7;
}

.why-body {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.why-card {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    /* align-items: center; */
    gap: 15px;
}

.why-card .left-side {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid white;

}

.why-card .left-side img {
    width: 60%;
}

.why-card .rigth-side .back {
    height: 90px;
    width: 100%;
    position: relative;
    /* background-color: red; */
}

.why-card .rigth-side .des {
    color: white;
}

.why-card .rigth-side .back::after {
    width: 60%;
    height: 2px;
    content: '';
    top: 45%;
    left: -8px;
    position: absolute;
    background-color: white;
}

.right-card {
    justify-content: end;
}

.right-card .rigth-side .back::after {
    left: auto;
    right: -8px;
}

.right-card .rigth-side .des {
    text-align: end;
}

.img-box-why {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-why img {
    width: 90%;
}
.img-box-why-bottom {
    display: none;
}




.cardSwiper {
    width: 100%;
    padding: 60px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.card {
    width: 100%;
    height: 620px;
    border-radius: 30px;
    overflow: hidden;
    border-radius: 30px;
    transition: transform 0.4s ease;
    position: relative;
    outline: 10px solid black;
    outline-offset: -22px;
    background-color: white;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            #FFC107,
            #FF9800,
            #FF5722);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mute-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    border: none;
    background: rgba(0, 0, 0, 0.74);
    color: #000;
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.cardSwiper .swiper-button-next,
.cardSwiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: #111111c5;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}

.cardSwiper .swiper-button-next::after,
.cardSwiper .swiper-button-prev::after {
    color: #fff;
    font-size: 20px;
}

.cardSwiper .swiper-button-next:hover,
.cardSwiper .swiper-button-prev:hover {
    background: #111111f5;

}

.cardSwiper .swiper-button-next::after {
    /* content: "→"; */
    font-size: 12px;
}

.cardSwiper .swiper-button-prev::after {
    /* content: "←"; */
    font-size: 12px;
}



.video-heading {
    position: relative;

}

.video-heading::after {
    position: absolute;
    bottom: -25px;

    left: 50%;
    transform: translateX(-50%);
    height: 6px;
    width: 150px;
    min-width: 100px;
    background: linear-gradient(to right, #F74594, #F1AD00);
    content: '';
    border-radius: 30px;
}

.phone-line {
    position: absolute;
    bottom: 30px;
    width: 60px;
    height: 4px;
    background-color: lightgray;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.top-dots {
    width: 50px;
    height: 20px;

    position: absolute;
    top: 23px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-dots span {
    width: 18px;
    height: 8px;
    background-color: #ffffffb9;
    border-radius: 20px;
}

.top-dots .line2 {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.footer-marquee {
    background-color: var(--action-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.205);
}


.mymarquee {

    /* background: #052ec2; */
    padding: 10px;
    width: 100%;
}

.footer-marquee .swiper-slide {
    width: auto;
}

.footer-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

.footer-marquee .marquee-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 30px; */
}

.footer-marquee .marquee-item .location-name {
    width: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 20px;


}


.footer-marquee .marquee-item .location-name .line {
    color: var(--secondary-color);
    font-size: 20px;

}

.footer-marquee .marquee-item .location-name .icon-img {
    width: 15px;
    height: 15px;
    overflow: hidden;
    border-radius: 50%;
    outline: 4px solid rgba(128, 128, 128, 0.664);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-marquee .marquee-item .location-name .icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.footer-marquee .marquee-item .location-name .dot {
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-top: 3px;
}

.footer-marquee .marquee-item .location-name:hover {
    color: var(--secondary-color);
}

.footer-marquee .location-name:hover {
    background-color: var(--action-color) !important;
}

footer {
    background: var(--action-color);
}


.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.116);
}

.f-content {
    display: flex;
    /* align-items: center; */
    gap: 20px;
}

.f-content .f-logo {
    width: 80px;
}

.f-content .f-logo img {
    width: 100%;
}

.f-content .des {
    width: 90%;
}

.f-content .des .title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    lin: 1px;
}

.f-content .des p {
    font-size: 14px;
    margin-top: 0;
    color: whitesmoke;

}

.footer-btn {
    padding: 12px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 200px;
    margin: auto;
}

.footer-btn a {
    font-size: 14px;
    font-weight: 800;
    font-family: var(--heading);
    text-align: center;
    color: white;
    text-transform: uppercase;
}

.footer-btn:hover a {
    color: white;
}



.f-item-content {
    width: 100%;
}

.f-item-content .f-heading {

    width: 100%;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--heading);
    color: white;


}

.f-item-content .f-heading i {
    color: var(--secondary-color);
    /* margin-right: 10px; */
    font-weight: nonr;
    font-size: 18px;
}

.quick-link {
    padding-top: 15px;
}

.quick-link li a {
    color: rgba(216, 213, 213, 0.767);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s;
}

.quick-link li {
    margin: 14px 0;

}

.quick-link li a i {
    color: var(--action-color);
}

.quick-link li a:hover {
    color: var(--secondary-color);
    margin-left: 10px;
}

.quick-link li a:hover i {
    /* color: var(--secondary-color); */
}

.location-haeding {
    font-size: 16px !important;
}

.location-haeding i {

    font-size: 15px !important;
}

.f-item-body a {
    color: white;
    padding-top: 10px;

}

.f-item {
    width: 100%;
    display: flex;
    gap: 5px;
    margin-bottom: 3px;
    padding: 10px 5px 10px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.096);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.096);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.opneing-soon {
   background-color: var(--secondary-color);
    color: var(--action-color);
    font-size: 10px !important;
    position: absolute;
    width: auto;
    height: auto;
    font-family: var(--heading);
    font-weight: 800;
    right: 5px;
    padding: 5px;
    top: 5px;
    line-height: 1;
    border-radius: 3px;
    text-shadow: 0px 0px 2px var(--action-color);

}

.f-item .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-item .icon img {
    width: 100%;
    height: 100%;
}

.f-item .content {
    width: 80%;
}

.f-item .content .title {
    font-size: 13px;
    font-weight: 800;
}

.f-item .content .line {
    font-size: 11px;
    font-weight: 600;
}

.f-item .content .number a {
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--heading);
    line-height: 1;
}

.usefullink {
    margin-top: 30px;
}

.usefullink a {
    color: rgba(255, 255, 255, 0.932);
    font-size: 14px;
    font-weight: 400;
}

.usefullink a .f-item {
    padding: 13px 20px;
    line-height: 1;
    margin-bottom: 12px;
}

.usefullink a .f-item i {
    color: #fbbd04c9;
    font-size: 12px;
}

.contactinfo .f-item {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    margin-bottom: 8px;
}

.contactinfo .f-item .title {
    color: white;
    font-size: 15px;
    font-weight: 800;
}

.contactinfo .f-item .title i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.contactinfo .f-item a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.774);
}


.s-icon-body {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.s-icon-body .s-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    border-radius: 50%;
    font-size: 15px;
    transition: 0.2s;
}

.s-icon-body .s-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-icon-body .s-icon:hover {
    transform: scale(1.1);
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.youtube {
    background: #ff0000;
}
.f-btn {

    padding: 10px;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(90deg, #3b5cff 0%, #7b2cff 100%);
    color: white;
    font-weight: 600;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.199);
    background: var(--action-color);
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
}

.copyright .container .capy-right {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    font-family: var(--heading);
    color: rgba(255, 255, 255, 0.747);
    display: flex;
    align-items: center;
    justify-content: start;

}

.copyright .container .copya a {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    font-family: var(--heading);
    color: rgba(255, 255, 255, 0.747);
    color: rgba(255, 255, 255, 0.747);


}

.copyright .container .copya a:hover {
    color: var(--secondary-color);
}




/* ============================================== */
/* About Page  */
/* ============================================== */


.allpage-bg {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.allpage-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content p {
    color: rgb(61, 60, 60);
    font-size: 18px;
    line-height: 30px;
}

.location-card-about {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    padding: 15px 30px;
    gap: 15px;
    color: #494848;
}

.location-card-about .iocn {
    width: 60px;
    height: 60px;
    background-color: blue;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 50%;
}

.location-card-about .tilte {
    font-family: var(--heading);
    font-size: 24px;
    font-weight: 700;
    color: black;
}

.location-card-about .address {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    /* font-size: 18px; */

}

.gaming-card {
    width: 100%;
    padding: 20px;
    background-color: white;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 20px;
}

.gaming-card .top-img {
    width: 100%;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;

}

.gaming-card .top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaming-card .detail {
    width: 100%;
    font-size: 14px;
    color: white;

}

.gaming-card .detail .name {
    width: 100%;
    text-transform: uppercase;

    margin-bottom: 10px;
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 800;
}

.gaming-card .detail .features {
    margin: 8px 0;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

    height: 100%;
}

.value-card .top-name {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20PX;
    margin-bottom: 15PX;
}

.value-card .top-name .icon {
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.value-card .top-name .name {
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 800;
    color: #181818;
}

.value-card .des {
    color: #4d4c4c;
}

.team-card {
    width: 100%;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}

.team-card .profile-pic {
    width: 220px;
    height: 220px;
    display: block;
    margin: auto;
    overflow: hidden;

}


.team-card .profile-pic img {
    width: 100%;
    object-fit: cover;
}

.team-card .detail .name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.team-card .detail .name span {
    font-size: 23px;
    font-weight: 600;
    font-family: var(--heading);
    text-align: center;
}

.team-card .detail .name a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #1447E6;
    border-radius: 2px;
    color: white;
}

.team-card .detail .title {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    color: rgb(36, 35, 35);
    font-style: italic;
}

.team-card .detail .des {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: rgb(48, 47, 47);
}


/* =================================================== */
/* LOCATION PAGE  */
/* =================================================== */


.videobanner {
    width: 100%;
    height: auto;
}

.videobanner video {
    width: 100%;
    object-fit: cover;
}


.price-box {
    width: 80%;
    display: block;
    margin: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;

}

.price-box b {
    color: #000;
    font-weight: 600;
}

.price-box .table-headind {
    background: linear-gradient(90deg, #ecc102, #ff9800);
    color: black;
    font-family: var(--heading);
    font-weight: 600;
}

.price-box .center-col {
    border-left: 1px solid black;
    border-right: 1px solid black;

}

.price-box .ticket-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-box .table thead th {
    /* background: linear-gradient(90deg, #ffd000, #ff9800); */
    color: #000;
    border-right: 2px solid #000;
}

.price-box .table thead th:last-child {
    border-right: none;
}

.price-box .table tbody td {
    border-right: 2px solid #000;
    font-weight: 500;
}

.price-box .table tbody td:last-child {
    border-right: none;
}

.price-box .row-yellow {
    background: #fff38f;
}

.price-box .row-light {
    background: #ffd9b0;
}

.price-box .benefit {
    color: #008000;
    font-weight: 700;
}

.note {
    color: #ffeb3b;
    font-size: 20px;
    /* font-weight: 500; */
    letter-spacing: .5px;
}

.contetn-box {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: white;
    font-size: 18px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    margin: 30px 0;
    font-weight: 400;
}


.location-contact {
    background-color: #50A2FF;
    border-radius: 10px;
}



.location-contact .left-box {

    color: #fff;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 20px;
    /* background-color: #000; */
}

.location-contact .left-box .contact-slider {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.custom-nav {
    width: 35px;
    height: 55px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.custom-nav::after {
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
}

.custom-nav:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.1);
    transition: 0.3s ease;
}




.location-contact .form-box {
    background: #fff;
    /* border-radius: 15px; */
    padding: 30px;
    height: 100%;
}

.mycontact {
    width: 100%;
}

.mycontact .contact-banner {
    width: 100%;
    height: 100%;
}

.mycontact .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.location-contact .form-box h3 {
    font-weight: 700;
    margin-bottom: 25px;
}

.location-contact .form-control,
.form-select {
    border-radius: 8px;
    padding: 6px 12px;
    height: 40px;
    font-size: 18px !important;
}

.location-contact .btn-book {
    background: #1e40af;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.location-contact .btn-book:hover {
    background: #1633a3;
}

.location-about {
    width: 80%;
    margin: auto;
    display: block;
}

.location-about p {
    color: white;
    line-height: 30px;
    font-size: 20px;
}

.game-offer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 20px; */
    flex-wrap: wrap;
    margin: 30px 0;
}

.game-offer .game-card {
   width: 18%;
    min-width: 250px;
    height: 330px;
    position: relative;
    /* padding: 10px; */
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid black;
    transition: all 0.4s;
    margin-bottom: 20px;

}

.game-offer .game-card img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 4;
    object-fit: cover;
}

.game-offer .game-card .name {
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    position: relative;
    color: rgb(255, 255, 255);

    text-shadow: 3px 3px 5px black;

}

.game-offer .game-card .datail-box {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.849);
    top: 0;
    left: 0;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    opacity: 0;
    transition: all 0.4s;

}

.game-offer .game-card .datail-box .name {
    color: white;
}

.game-offer .game-card .datail-box .des {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.884);
    text-align: center;
}

.game-offer-new .game-card {
    width: 100%;
    margin-bottom: 30px;
}

.game-offer .game-card:hover {
    transform: scale(1.07);
}

.game-offer .game-card:hover .datail-box {
    opacity: 1;
}

.gamecard-1 {
    border-color: rgb(144, 73, 214) !important;
}

.gamecard-2 {
    border-color: rgb(255, 153, 0) !important;
}

.gamecard-3 {
    border-color: red !important;
}

.gamecard-4 {
    border-color: green !important;
}

.gamecard-5 {
    border-color: orangered !important;
}

.gamecard-1:hover {
    box-shadow: 2px 7px 15px rgba(143, 73, 214, 0.87);
}

.gamecard-2:hover {
    box-shadow: 2px 7px 15px rgba(255, 196, 0, 0.781);
}

.gamecard-3:hover {
    box-shadow: 2px 7px 15px rgba(255, 0, 0, 0.856);
}

.gamecard-4:hover {
    box-shadow: 2px 7px 15px rgba(0, 128, 0, 0.897);
}

.gamecard-5:hover {
    box-shadow: 2px 7px 15px rgba(255, 68, 0, 0.884);
}


.video-crad {
    width: 100%;
    min-width: 250px;
    height: 300px;
    background: red;
    border-radius: 15px;
    overflow: hidden;
}

.video-crad video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-crad1 {
    border: 1px solid red;
}

.video-crad2 {
    border: 1px solid var(--action-color);
}

.video-crad3 {
    border: 1px solid rebeccapurple;
}

.video-crad4 {
    border: 1px solid green;
}

.bg-color {
    position: absolute;
    width: 100%;
    height: 300px;
    background-color: var(--action-color);
    top: 0;
    left: 0;
    z-index: -1;
}

.style-crad {
    width: 100%;
    height: auto;
    background-color: #BEDBFF;
    padding-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.style-crad .style-img {
    width: 100%;
    height: 200px;
}

.style-crad .style-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-crad .title {
    padding: 20px auto;
    margin: 20px auto;
    text-align: center;
    width: 100%;
    font-size: 35px;
    font-weight: 800;
    font-family: var(--heading);
    color: black;
}

.style-crad .style-btn {
    padding: 10px 20px;
    width: 150px;
    background-color: var(--action-color);
    color: white;
    font-size: 20px;
    margin: auto;
    border-radius: 30px;
    text-align: center;
    font-family: var(--heading);
    font-weight: 600;
}

.gallery-img {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mygallery {
    width: 100%;
}

.mygallery .swiper-wrapper {
    transition-timing-function: linear !important;
}

.mygallery2 .swiper-wrapper {
    transition-timing-function: linear !important;
}

.party-section {
    padding: 60px 0px;
    /* background: #f5f7ff; */
}

.party-card {

    background: #fff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.party-form {
    flex: 1;
}

.party-form h2 {
    color: #1439c5;
    font-size: 28px;
    font-family: var(--heading);
    font-weight: 800;
    margin-bottom: 10px;
}

.party-form p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.party-form .call {
    display: block;
    color: #1439c5;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 25px;
    text-decoration: none;
}

.party-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.party-form input,
.party-form select {
    height: 50px;
    padding: 0 15px;
    border: 1.5px solid #1439c5;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.party-form input::placeholder {
    text-transform: uppercase;
}

.party-form button {
    height: 52px;
    background: #1439c5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.party-form button:hover {
    background: #0f2fa5;
}

/* MAP */
.party-map {
    flex: 1;
    /* border-radius: 20px; */
    overflow: hidden;
}

.party-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .party-card {
        flex-direction: column;
    }
}


/* ------------- activities-card ------------------- */

.activities-card {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
    transition: all ease-in 0.2s;
    margin-bottom: 30px;
}

.activities-card .activities-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.activities-card .activities-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-card .name {
    text-align: center;
    padding: 10px;
    font-family: var(--heading);
    font-weight: 600;
    color: black;
}

.activities-card:hover {
    transform: translateY(-5px);
}




.booking-title {
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #1b2b44;
}

.form-control,
.form-select {
    border: 2px solid #1b2b44;
    height: 45px;
    border-radius: 6px;
    border: 1px solid var(--action-color);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #0d3b8e;
}

.btn-submit {
    background-color: #0d3b8e;
    color: #fff;
    height: 55px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #0b2f73;
}

.birthday-card {
    width: 100%;
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}

.birthday-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.birthday-card .content {
    position: absolute;
    width: 100%;
    padding: 20px;
    bottom: 0;
    left: 0;
    background-color: #2154bbb9;
    color: white;
}

.birthday-card .content .title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading);
    margin-bottom: 5px;
}

.birthday-card .content ul li {
    font-size: 13px;
    position: relative;
    line-height: 1;
    padding: 3px;
    padding-left: 15px;
}

.birthday-card .content ul li::before {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    left: 0;
    content: '';
    border-radius: 50%;
}

.loation-list-body {
    background-color: #DBEAFE;
    padding: 30px;
    border-radius: 30px;
}

.locat-list-heading {
    font-weight: 800;
    font-family: var(--heading);
    color: #59168B;
}

.locat-list {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    background: white;
    padding: 10px 10px;
    margin-top: 30px;
    border-radius: 10px;
    color: #59168B !important;
}

.locat-list .icon {
    width: 30px;
}

.locat-list .icon img {
    width: 100%;

}

.plan-body {
    width: 100%;
    padding: 30px;
    background: white;
    margin-top: 30px;
    border-radius: 30px;
}

.plan-body .plan-item {
    background-color: rgb(0, 0, 0);
    width: 100%;
    padding: clamp(15px, 4vw, 30px);
    border-radius: 20px;
    border: 4px solid red;
    margin-bottom: 30px;
}

.plan-name .price {
    font-size: 30px;
    font-weight: 800;
}

.plan-body .plan-item .plan-name {
    font-size: 30px;
    font-weight: 800;
    font-family: var(--heading);
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.3;
}

.plan-body .plan-item .plan-sevice {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 2vw;
    line-height: 1.3;

}

.plan-body .plan-item .plan-sevice span {
    padding-right: 15px;
    border-right: 3px solid white;
    font-weight: 800;
    font-family: var(--heading);

}

.plan-body .plan-item .plan-sevice span:last-child {
    border-right: none;
}

.limited {
    font-size: 17px;
    font-weight: 600;
}

/* FAQs */

.menu-section {
    max-width: 900px;
    margin: auto;
}

.menu-title {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.accordion {
    border-radius: 0 !important;
}

.accordion-item {
    margin-bottom: 20px;
    border: none;
    background: linear-gradient(90deg, #3b97ff, #2a97e0);
    border-radius: 5px;
    overflow: hidden;

}

.accordion-header {
    width: 100%;
    padding: 18px 25px;
    border: none;
    outline: none;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    background: linear-gradient(90deg, #3a74e6, #2a5de0);
    background-color: red;

}

.accordion-header:hover {
    opacity: 0.9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 15px 15px;
    transition: max-height 0.4s ease;
    /* padding: 0 25px; */
    color: white;
}

.accordion-content p {
    padding: 15px 0;
}

.icon {
    transition: 0.3s;
}

.accordion-item.active .accordion-content {
    border-top: 1px solid white;
    max-height: 500px;
    height: auto;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

.accordion-content .item-body {
    padding: 20px;
}

.accordion-content .item-body .item {
    width: 100%;
    padding: 15px 10px;
    background-color: white;
    color: var(--action-color);
    margin-bottom: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    line-height: 1;
    transition: all 0.2s;
}

.accordion-content .item-body .item:hover {
    transform: scale(1.03);
}

.gallerybirth-img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px
}

.gallerybirth-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mygallerybirth .swiper-wrapper {
    transition-timing-function: linear !important;
}

.mygallerybirth1 .swiper-wrapper {
    transition-timing-function: linear !important;
}


.event-booking-section {
    width: 90%;
    margin: auto;
}

.event-booking-section .booking-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: black;
}

.event-booking-section .form-control,
.event-booking-section .form-select {
    height: 50px;
    border-radius: 6px;
    font-size: 16px;
    border-color: lightgray;
}

.event-booking-section .btn-book {
    background: #2f49b6;
    color: #fff;
    height: 50px;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
}

.event-booking-section .btn-book:hover {
    background: #1e3799;
    color: #fff;
}

.event-booking-section label {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 6px;
    color: rgb(75, 74, 74);
}


.termandcont {
    background: linear-gradient(-135deg, #FDE8F2, #FDF1DA);
}

.termandcont-body {
    padding: 30px;
    padding: clamp(15px, 4vw, 30px);
    background-color: white;
}

.termandcont-body .faq-bg {
    background: linear-gradient(to right, #FF890E, #1A5EF9);
    padding: 15px;
}

.termandcont-body .faq-content-bg {
    background: #EFF6FF;
}

.termandcont-body .faq-content-bg p {
    color: black
}

.termandcont-body .accordion-content span {
    color: var(--action-color);
    font-weight: bold;
}


/* KITTE Party */
.kitty-btn {
    background-color: #1C398E;
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.kitty-btn:hover {
    background-color: #142a6a;
    /* darker shade */
    color: #fff;
}

.kitty-item {
    background: white;
    color: black;
    border-bottom: 1px solid var(--action-color);
    border-radius: 0 !important;
    margin: 0;
}

.faq-kitty-bg {
    background: white;
    color: black;
    padding: 20px 0;

}

.faq-kitty-bg .icon {
    color: var(--action-color);
}

.kitty-item .accordion-content {
    color: rgb(121, 119, 119);

    font-size: 10px !important;
}

.kitty-item .accordion-content p {
    color: rgb(54, 54, 54);

    font-size: 16px;
}

.kitty-content {
    background-color: var(--action-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 30px auto;
    border-radius: 10px;
    gap: 20px;
    color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.kitty-content .kitty-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
    width: 90%;
}

.kitty-content .kitty-top .title {
    font-size: 30px;
    font-family: var(--heading);
    font-weight: 800;
    color: white;
}

.kitty-content .kitty-top .line {
    color: whitesmoke;
}

.kitty-content .kitty-bottom .title {
    color: white;
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 600;
}

.kitty-content .kitty-bottom .line {
    font-size: 13px;
    text-align: center;
    color: rgb(224, 223, 223);
}

.kitty-content-new .kitty-bottom .title {
    width: 90%;
    color: black;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    font-weight: 400;
    margin: auto;
}

.kitty-content-new .kitty-bottom strong {
    color: var(--action-color);
    text-align: center;
    margin: auto;
    display: block;
}

.kitty-content-new .kitty-bottom .line {
    font-size: 12px;
    margin-top: 10px;
    color: gray;
}

.content-new .title {
    font-size: 30px;
    font-family: var(--heading);
    font-weight: 800;
    color: black;
    line-height: 1;
}

.content-new p {
    font-size: 16px;
    margin-top: 25px;
}

.simple-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
    padding: 10px;
}

.special-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.special-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-card .title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading);
    color: var(--secondary-color);
}

.special-card .des {
    text-align: center;
    color: white;
    font-size: 13px;
    width: 90%;

}

.kitty-feat {
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 40px 20px;
}

.kitty-feat .icon {
    width: 80px;
    height: 60px;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
}

.kitty-feat .title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading);
    color: var(--action-color);
    line-height: 1;
}

.kitty-feat .des {
    font-size: 14px;
    text-align: center;
}

.queen-card {
    width: 100%;
    height: 100%;
    background-color: var(--action-color);
    padding: 10px 25px;
    border-radius: 20px;

}

.queen-card .img-queen {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.queen-card .img-queen img {
    width: 100%;
}

.queen-card .title {
    margin: 10px auto;
    width: 100%;
    height: auto;
    padding: 7px;
    text-align: center;
    background-color: white;
    color: var(--action-colorF);
    border-radius: 30px;
    font-family: var(--heading);
    font-weight: 600;
}

.queen-card .des {
    font-size: 14px;
    color: white;

}

.card-cor {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-cor p {
    font-size: 14px;
}

.card-cor .title {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

.advantage-card {
    background-color: wheat;
    padding: 40px 4vw;
    border-radius: 30px;
    margin-top: 30px;
}

.advantage-card .title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.advantage-card ul li {
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
    padding-left: 30px;
    position: relative;
}

.advantage-card ul li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    width: 13px;
    height: 13px;
    border-radius: 50%;

}

.advantage-card2 .title {
    color: black;
}

.advantage-card2 ul li {
    color: rgb(22, 22, 22);
}

.advantage-card2 ul li::before {
    background-color: black;
}

.corwhy-card .why-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.corwhy-card .why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.corwhy-card .title {
    margin-top: 20px;
    font-weight: 800;
    font-size: 17px;
    text-align: center;
    color: var(--action-color);
}


.package-container {
    width: 95%;
    margin: 30px auto;
}

.main-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2c44;
}

.table-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
    background: #ff7300;
    color: white;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background: #ff8c00;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.price-table th.sn-col {
    width: 80px;
}

.price-table th.price-col {
    width: 150px;
    text-align: center;
}

.price-table td {
    border-top: 1px solid #ddd;
    /* padding: 15px; */
    vertical-align: middle;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

}

.sn {
    text-align: center;
    font-weight: bold;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 6px;
    border-bottom: 1px solid #ddd;

    padding: 10px;
}

.detail-bold {
    font-weight: 600;
    margin-bottom: 6px;
    border-bottom: 1px solid #ddd;
    padding: 5px 10px;


}

.detail-small {
    font-size: 13px;
    color: #555;
    padding: 5px 10px 10px 10px;

}

.price {
    text-align: center;
    font-weight: 700;
    color: #0066ff;
    font-size: 16px;
}

.school-why-card {
    width: 100%;
    height: auto;
    background-color: #FFFF66;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
}

.school-why-card .school-img {
    width: 100%;
    height: 220px;


}

.school-why-card .school-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-why-card .title {
    padding: 10px 10px 20px 10px;
    text-align: center;
    color: black;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--heading);
}

.kids-day {
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 30px;
    border-radius: 20px;
    padding: 3px;
    overflow: hidden;
    background-color: var(--action-color);
}

.kids-day .kids-img {
    width: 100%;
    height: 300px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    overflow: hidden;

}

.kids-day .kids-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kids-day .des {
    padding: 10px 10px;
    text-align: center;
    color: white;
    font-size: 17px;
}

.kids-day .title {
    margin-bottom: 20px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}

.safety-heading {
    background-color: #2B7FFF;
    color: white !important;
    padding: 10px 34px;
    line-height: 1;
    border-radius: 30px;
}

.safety-card {
    width: 100%;
    height: auto;
    background-color: white;
    border: 3px solid #FEF9EA;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all 0.3s;
}

.safety-card .safety-img {
    width: 100%;
    height: 150px;
    overflow: hidden;

}

.safety-card .safety-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-card .title {
    font-size: 18px;
    font-weight: 800;
    color: #FF6900;
}

.safety-card .des {
    font-size: 13px;
    padding: 10px;
    text-align: center;
    padding-top: 0;
    color: rgb(58, 58, 58);
}

.safety-card:hover {
    transform: translateY(-7px);
    box-shadow: #FDA8D6 0px 18px 30px 0px;
}

.safety-list {
    position: relative;
    width: 100%;
    padding-left: 20px;
    margin-top: 30px;
}

.safety-list li {
    position: relative;
    padding: 10px;
    padding-left: 20px;
    color: white;

}

.safety-list li::before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF6467;
    position: absolute;
}

.safety-list::before {
    width: 3px;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    background-color: #FF6467;
    position: absolute;
}

.safety-item {
    padding: 25px;
    background: white;
    margin-top: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    border-left: 4px solid red;
}

.safety-item .icon {
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background-color: rgb(255, 212, 212);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.safety-item .content .title {
    font-size: 16px;
    color: red;
    font-weight: 800;
    font-family: var(--heading);
}

.safety-item .content .des {
    font-size: 13px;
}

.paramount {
    width: 100%;
    padding: 40px 10px;
    border-radius: 10px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    background: linear-gradient(to right, #175CFB, #4F3AF6);
}

.paramount .title {
    font-size: 23px;
    font-weight: 800;
    color: white;
}

.paramount .line {
    color: rgb(243, 243, 243);
}

.paramount .tagline {
    background: white;
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--action-color);
    font-weight: 800;
    font-size: 14px;
}


.generalfaqs {
    background: linear-gradient(to right, #1DE281, #4D89FF, #A22BFB);
}

.general-heading {

    padding: 10px 30px;
    border-radius: 30px;
    display: inline-block;
    background-color: #1C398E;
    margin-bottom: 40px;
    margin-top: 20px;
    font-family: var(--heading);
    font-weight: 800;
    font-size: 23px;
    color: white;
    font-style: italic;
}

.faq-page {
    border-bottom: 3px solid var(--action-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: white;

}

.faq-page .accordion-header {
    font-size: 16px;
    background: rgb(241, 240, 240);
    color: black;
}

.faq-page .accordion-content {
    background-color: white;
    border-top: 1px solid lightgray;
    color: rgb(44, 44, 44);
}

.faq-page .accordion-content p {
    font-size: 15px;

}

.birthdayfaqs {
    background: linear-gradient(to right, #67AAFF, #FB74BD, #FF942A);
}

.contact-faq {
    width: 90%;
    margin: auto;
    padding: 10px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}



.contact-page {
    padding: 80px 20px;
    background: #f8f9fb;
}

.contact-page .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

.contact-page .contact-left,
.contact-page .contact-right {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LEFT SIDE */
.contact-page .big-heading {
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-page .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-page .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex: 0 0 30px;
    /* not shrink */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.contact-page .blue {
    background: #3b82f6;
}

.contact-page .green {
    background: #16a34a;
}

.contact-page .red {
    background: #ef4444;
}

.contact-page .info-text {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.contact-page .info-text a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* SOCIAL ICONS */
.contact-page .social-icons {
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.contact-page .social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.contact-page .social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.contact-page .facebook {
    background: #1877f2;
}

.contact-page .instagram {
    background: #e1306c;
}

.contact-page .youtube {
    background: #ff0000;
}

.contact-page .whatsapp {
    background: #25d366;
}

/* RIGHT SIDE FORM */
.contact-page form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page input,
.contact-page textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contact-page input:focus,
.contact-page textarea:focus {
    border-color: #1f2937;
}

.contact-page textarea {
    height: 140px;
    resize: none;
}

.contact-page button {
    background: #1f2937;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-page button:hover {
    background: #111827;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-page .container {
        flex-direction: column;
    }
}

.openingsoon-body {
    background: linear-gradient(135deg, #173393, #20338C, #A1014D);
    padding: 100px auto;
    height: auto;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.opening-sec {
    margin-top: 160px;
    color: white;
}

.opening-sec .title {
    padding: 13px 20px;
    width: fit-content;
    text-align: center;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.096);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.205);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 18px;
    margin: auto;
}

.opening-sec .opening {
    font-size: 130px;
    font-size: clamp(40px, 10vw, 130px);
    text-align: center;
    font-weight: 700;
    font-family: var(--heading);
    letter-spacing: 0px;
    margin: 0;
    line-height: 1;
    margin-top: 20px;
    /* letter-spacing: 10px; */
    background: linear-gradient(90deg, #ff9a8b, #ff6ec7, #d633ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.soon-text {
    font-size: 120px;
     font-size: clamp(40px, 10vw, 130px);
    font-weight: 700;
    font-family: var(--heading);
    margin: 0;
    line-height: 1;
    text-align: center;
    background: linear-gradient(90deg, #ff7eb3, #ff4da6, #e040fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider-section {

    padding: 30px 20px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.divider .icon {
    width: 60px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff4da6;
    position: relative;
    /* background: linear-gradient(135deg, #ff4da6, #a855f7); */

}

.divider .icon::after {
    width: 100px;
    position: absolute;
    height: 4px;
    content: '';
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, transparent, #ff4da6, #a855f7);
    border-radius: 20px;

}

.divider .icon::before {
    width: 100px;
    position: absolute;
    height: 4px;
    content: '';
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #a855f7, #ff4da6, transparent);
    border-radius: 20px;

}

.new-location-opening {
    padding: 30px 20px;
    margin-bottom: 40px;
    /* background: linear-gradient(135deg, #2d348b, #8b1c5c); */
    display: flex;
    justify-content: center;
}

.new-location-opening-card {
    max-width: 900px;
    width: 100%;
    padding: 50px 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 30px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.new-location-opening-icon {
    width: 110px;
    height: 110px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff4da6, #a855f7);
    color: white;
}

.new-location-opening-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.new-location-opening-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.new-location-opening-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;

    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.new-location-opening-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}



.bithdypackge {
    width: 100%;
    /* margin: 40px auto; */
    border-radius: 20px;
    overflow: hidden;
    background: #c7d3e3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: 100%;
    border: 1px solid white;
}

.bithdypackge .package-header {
    background: #243ea6;
    text-align: center;
    padding: 20px;
}

.bithdypackge .package-header .package-name {
    font-weight: 800;
    font-family: var(--heading);
    color: #fff;
    margin: 0;
    font-size: 25px;
    letter-spacing: 1px;
}

.bithdypackge .package-price {
    background: #ff2e2e;
    text-align: center;
    padding: 20px;
    color: white;
}

.bithdypackge .package-price p {
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.bithdypackge .package-price .packag-rate {
    margin: 5px 0 0;
    font-size: 32px;
    font-weight: 700;
}

.bithdypackge .package-body {
    padding: 20px;
    font-weight: 600;
}

.bithdypackge .row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #5f6f85;
    font-size: 14px;
}

.bithdypackge .row-item strong {
    font-weight: 800;
    font-family: var(--heading);
}

.bithdypackge .includes {
    padding: 15px 0;
    border-bottom: 1px solid #5f6f85;
}

.bithdypackge .includes .title {
    font-weight: 600;
    margin-bottom: 8px;
}

.bithdypackge .includes ul {
    padding-left: 18px;
    margin: 0;
}

.bithdypackge .includes li {
    margin-bottom: 5px;
    font-size: 14px;
}

.bithdypackge .benefits {
    padding-top: 15px;
}

.bithdypackge .benefits .heading {
    color: #1d3fae;
    margin-bottom: 10px;
}

.bithdypackge .benefits ul {
    padding-left: 18px;
    margin: 0;
}

.bithdypackge .benefits li {
    margin-bottom: 6px;
    font-size: 14px;
    list-style: disc;
    font-weight: 400;
}


.decorcard {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    padding: 30px;
    border-radius: 20px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Header */
.decorcard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.decorcard-header .heading {
    margin: 0;
    font-size: 20px;
    color: #2563eb;
    font-weight: 600;
    font-weight: 800;
}

.price-tag {
    background: #fde2e2;
    color: #dc2626;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0px 2px 3px lightgray;
}

/* Theme Box */
.theme-box {
    background: #e3e5e9;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* List */
.decor-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.decor-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
}

.decor-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Button */
.book-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
        background: linear-gradient(90deg, #ff8a00 0%, #ff2f92 50%, #3145f8 100%) !important;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #1e4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.notheme {
    border-color: #FDC700;
    
}

.notheme .heading {
    color: #A65F29;
}

.notheme .price-tag {
    color: green;
    font-weight: 800;
    font-family: var(--heading);
    background-color: #d8fcd8;
}

.notheme .decor-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #FDC700;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.notheme .book-btn {
    background-color: #ac6407;
}

.notheme .book-btn:hover {
    background: #a55e02;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px #a55e0246;
}

.farid-bithcard {
    /* background: red; */
}

.farid-bithcard .card-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.farid-bithcard .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farid-bithcard .title {
    margin: 10px auto;
    padding: 10px 30px;
    background: #9810FA;
    border-radius: 30px;
    font-size: 20px;
    color: white;
    font-family: var(--heading);
    font-weight: 600;

}

.farid-bithcard .des {
    padding: 0 15px;
}

.farid-bithcard .des li {
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
}

.farid-bithcard .des li::after {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: '';
    background-color: #9810FA;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.farid-bithcard .center li::after {
    background-color: red;
}

.fari-faq {
    background: #FF8904;
}

.custom-width {
    width: 65%;
    text-align: center;
    margin: auto;
    margin-top: 15px;
}

.location-card-name {
    position: relative;
    width: 80%;
    margin: auto;
    margin: 20px auto;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    gap: 10px;
    font-size: 18px;
    overflow: hidden;
}

.location-card-name::after {
    width: 100px;
    height: 100px;
    content: '';
    position: absolute;
    background-color: #FFF4CC;
    top: -40px;
    right: -40px;
    border-radius: 50%;
}

.location-card-name::before {
    width: 100px;
    height: 100px;
    content: '';
    position: absolute;
    background-color: #FEE0F0;
    bottom: -40px;
    left: -40px;
    border-radius: 50%;
}

.location-card-name .heading {
    font-size: 25px;
    font-weight: 800;
    color: var(--action-color);
}

.location-card-name span a {
    color: gray !important;
}

.location-card-name .bookbtn {
    background-color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--heading);
    padding: 10px 20px;
    border-radius: 10px;
    color: black;
}

.location-card-name .bookbtn:hover {
    background-color: #d6a803;
}
.new-gri{
    background: linear-gradient(to right,#FF8808,#FF6567 ) ;
}
.new-gri .accordion-header{
    background: linear-gradient(to right,#FF6800,#FB2C36);
}
.nir-birth .accordion-header{
    background: linear-gradient( to right, #FF8808,#9A20F6);
}
.nir-birth {
    background: #EFF6FF;
}
.nir-birth .accordion-content p{
    text-align: center;
    color: rgb(58, 58, 58);
}
.rihi-birth .accordion-header{
    background:  linear-gradient(to right ,#625FFF ,#9811FA);
}
.rihi-birth {
    background: #EEF2FF;
}
.rihi-birth .accordion-content  p{
    color: rgb(48, 47, 47);
}
.rihi-birth .accordion-content  p span{
    color: var(--action-color);
}



.phone-button-icon {
    width: 60px;
    height: 60px;
    background-color: #193CB8;
    position: fixed;
    bottom: 15px;
    left: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: phone ease-in 3s infinite;

}

.phone-button-icon a {
    color: white;
    font-size: 25px;

}

@keyframes phone {

    0%,
    100% {
        background-color: #193CB8;
        opacity: 1;
    }

    50% {
        background-color: #193cb885;
        opacity: 0.3;

    }
}

.whatsapp-button-icon {
    width: 60px;
    height: 60px;
    background-color: #19b826;
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: whatsapp ease-in 3s infinite;
}

.whatsapp-button-icon a {
    color: white;
    font-size: 35px;
    margin-top: 5px;
    margin-left: 4px;

}

@keyframes whatsapp {

    0%,
    100% {
        background-color: #19b826;
        opacity: 1;
    }

    50% {
        background-color: #19b8268f;
        opacity: 0.3s;

    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
}
.video-wrapper::before{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    z-index: 10;

    
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* default me click disable */
}

.video-wrapper:hover iframe {
    pointer-events: auto; /* hover par controls enable */
}


.corp-activite-card {
    width: 100%;
    gap: 20px;
}

.corp-activite-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #FF6900;
    font-size: 25px;
    border-radius: 50%;
}

.corp-activite-card .tilte {
    font-size: 14px;
    font-weight: 600;
    color: white;
}





