@charset "UTF-8";

:root {
    --theme: #00c1c1;
    --white-color: #ffffff;
    --off-white-color: #f2f2f2;
    --black-color: #000000;
    --body-color: #000405;
    --grey-color: #5a5a5a;
    --body-background-color: #f2f2f2;
    --blue-color: #ff2459;
    --transparent-sky-blue: #f69daf5e;
    --body-font: "General Sans", Arial, sans-serif;
    --icon-font: "Font Awesome 5 Free";
}

/* ===========================
   Custom Font: GeneralSans
   =========================== */

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans/WEB/fonts/GeneralSans-Regular.woff2")
            format("woff"),
        url("../fonts/GeneralSans/WEB/fonts/GeneralSans-Regular.woff")
            format("woff"),
        url("../fonts/GeneralSans/OTF/GeneralSans-Regular.otf")
            format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans/WEB/fonts/GeneralSans-Medium.woff2")
            format("woff2"),
        url("../fonts/GeneralSans/WEB/fonts/GeneralSans-Medium.woff")
            format("woff"),
        url("../fonts/GeneralSans/OTF/GeneralSans-Medium.otf")
            format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans/WEB/fonts/GeneralSans-Bold.woff2")
            format("woff2"),
        url("../fonts/GeneralSans/WEB/fonts/GeneralSans-Bold.woff")
            format("woff"),
        url("../fonts/GeneralSans/OTF/GeneralSans-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--body-font);
    background-color: var(--body-background-color);
}

.white-bg {
    background-color: var(--white-color);
}

.blue-btn:active,
.book-now-btn:active,
.quantity-btn:active,
.next-pre-btn:active {
    transform: scale(0.95) !important;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.required {
    color: red;
}

/* Nav Bar */

.navbar {
    background-color: var(--white-color);
}

.navbar .navbar-brand img {
    width: auto;
    height: 46px;
}

.navbar .navbar-nav .nav-link {
    color: var(--black-color);
}

.navbar-container {
    padding-inline: 32px !important;
}

.event-dropdown .dropdown-item:hover {
    background-color: var(--black-color) !important;
}

.profile-dropdown {
    margin-left: 10px;
}

.profile-dropdown img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.profile-dropdown .dropdown-menu[data-bs-popper] {
    right: 0 !important;
    left: auto !important;
}

.header-dropdown {
    border: 1px solid #707070;
    border-radius: 5px;
}

/* Custom dropdown styles */
.header-dropdown .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

/* Location icon */
.header-dropdown .nav-link.dropdown-toggle::before {
    content: "\f3e7";
    font-family: "bootstrap-icons";
    font-size: 20px;
    color: #000000;
}

/* Custom dropdown arrow (replacing default) */
.header-dropdown .nav-link.dropdown-toggle::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    border: none;
    width: auto;
    height: auto;
    margin-left: 4px;
    font-size: 18px;
    color: #000000;
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.header-dropdown .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Dropdown menu styling */
.header-dropdown .dropdown-menu {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 8px;
}

.header-dropdown .dropdown-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.header-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.search-and-icons form input {
}

.search-and-icons form input:focus {
    background: var(--white-color);
    box-shadow: none;
}

.search-and-icons .user-icons div {
    padding-right: 1em;
}

.contact-info p,
.contact-info a {
    font-size: 0.9em;
    padding-right: 1em;
    color: grey;
}

.contact-info a {
    padding-right: 0;
}

.custom-search ul {
    /* background-color: var(--body-color);
  border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; */
}

.custom-search ul li a {
    /* color:var(--white-color) !important; */
}

.search-container {
    position: relative;
    margin-right: 12px;
}

.header-search {
    width: 500px;
    height: 47.7px !important;
    background: var(--white-color) !important;
    color: #adb8cc;
    border: none;
    box-shadow: none !important;
    border-radius: 0px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    padding-left: 35px;
    padding-right: 15px;
    border: 1px solid #707070;
    border-radius: 5px;
    font-size: 13px;
}

.search-container .search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #000000;
}

.search-btn {
    padding-inline: 15px;
    height: 40px;
    border: none;
    background: var(--white-color);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.blue-btn {
    background: var(--blue-color);
    color: var(--white-color) !important;
    border-radius: 5px;
    padding: 10px 16px;
    text-decoration: none;
    height: auto;
    border: 1px solid #707070;
}

.green-btn {
    font-weight: 600;
    background: #e5fff6;
    color: #009d64;
    border-radius: 5px;
    padding: 10px 16px;
    text-decoration: none;
    height: auto;
    font-size: 15px;
    border: 1px solid #e5fff6;
}

.green-btn img {
    width: 30px;
    height: auto;
}

.green-btn-2 {
    font-weight: 600;
    background: #e5fff6;
    color: #009d64;
    border-radius: 10px;
    padding: 10px 16px;
    text-decoration: none;
    height: auto;
    font-size: 25px;
    border: 1px solid #009d64;
    display: flex;
    align-items: center;
    gap: 10px;
}

.green-btn-2 img {
    width: 50px;
    height: auto;
}

.blue-text-btn {
    background: transparent;
    border: none;
    color: var(--blue-color);
    border-radius: 5px;
    padding: 10px 16px;
    font-weight: 600;
}

.login-btn {
    background: var(--white-color);
    border: 1px solid #707070;
    color: var(--black-color);
    border-radius: 5px;
    padding: 10px 16px;
    margin-left: 12px;
}

.sub-navbar {
    background: #f0f0f0;
    height: auto;
    align-content: center;
}

.sub-navbar ul {
    display: flex;
    justify-content: space-around;
    height: 45px;
    align-items: center;
    /* max-width: 1350px; */
    margin: auto;
    list-style-type: none;
    padding-left: 0;
}

.sub-navbar ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: 500;
}

.sub-navbar ul li a.active {
    color: white;
    background: black;
    padding: 5px;
    border-radius: 5px;
}

/* slider */
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent !important;
}

.owl-nav .owl-next {
    margin: 0px !important;
}

/* Style the navigation buttons */
.home-banner-carousel {
    position: relative;
}

.home-banner-carousel .owl-nav {
    position: absolute;
    width: fit-content;
    padding-inline: 10px;
    display: flex;
    bottom: 4.5%;
    right: 0;
    transform: translateY(-10%);
    justify-content: end;
}

.home-banner-carousel .nav-btn {
    font-size: 35px;
    padding: 5px;
    cursor: pointer;
}

.home-banner-carousel .prev-slide {
    color: var(--black-color);
}

.home-banner-carousel .next-slide {
    color: var(--black-color);
}

.home-banner-carousel.owl-carousel .owl-stage-outer {
    margin-bottom: 15px;
}

.banner-info {
    text-align: center;
    padding-block: 30px;
    border: 1px solid #707070;
    color: black;
}

.banner-info a {
    display: block;
    padding: 10px;
    font-size: 18px;
    color: white !important;
    max-width: 180px;
    margin: auto;
    background: black;
    border: 1px solid #707070;
    border-radius: 5px;
    text-decoration: none;
}

.banner-info .title {
    font-size: 68px;
    font-weight: 600;
    line-height: 68px;
}

.banner-info .title {
    min-height: 20px; /* or adjust to fit your design */
    display: flex;
    align-items: center; /* vertically center text */
    justify-content: center;
    text-align: center;
}

.banner-info .sub-title {
    font-size: 24px;
    line-height: 24px;
    margin-block: 20px;
}

/* event card */

.event-count span {
    color: var(--blue-color);
}

.white-btn {
    border: 1px solid #dde0eb;
}

.event-card {
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 25px;
    transition: 0.2s ease-in;
}

.event-card a {
    text-decoration: none;
}

.event-card:hover {
    transform: translateY(-2%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.event-image {
    position: relative;
    display: inline-block;
    width: 100%;
    flex-shrink: 0;
}

.event-image img {
    display: block;
    width: 100%;
    height: 227px;
    max-height: 234px;
    /* max-height: 216px;
  min-height: 216px; */
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid #efefef;
    border-bottom: none;
}

.event-extra-text {
    margin-top: -20px;
    z-index: 1;
    position: absolute;
    width: 100%;
    border-left: 1px solid #efefef;
}

.event-extra-text .event-extra-text-info {
    display: flex;
    width: 94%;
    margin-left: auto;
}

.event-extra-text .rate {
    background: #000000;
    color: white;
    width: 45%;
    text-align: right;
    padding-right: 15px;
    font-size: 15px;
    font-weight: 500;
    padding-block: 5px;
}

.event-extra-text .early-bird {
    background: var(--blue-color);
    color: white;
    width: 55%;
    text-align: center;
    font-size: 15px;
    padding-inline: 10px;
    font-weight: 500;
    padding-block: 5px;
}

.event-extra-text .discount {
    background: #e6ff00;
    color: black;
    width: 55%;
    text-align: center;
    font-size: 15px;
    padding-inline: 10px;
    font-weight: 500;
    padding-block: 5px;
}

.event-extra-text .none {
    background: #eaeaea;
    color: black;
    width: 55%;
    text-align: center;
    font-size: 15px;
    padding-inline: 10px;
    font-weight: 500;
    padding-block: 5px;
}

.event-extra-text .event-date-tag {
    width: fit-content;
    position: absolute;
    position: absolute;
    top: -75%;
    left: 10%;
}

.event-extra-text .event-date-tag .month {
    border: 1px solid var(--blue-color);
    background: #fff2f2;
    display: block;
    color: var(--blue-color);
    font-size: 20px;
    text-align: center;
    border-radius: 15px 15px 0px 0px;
    padding: 5px 10px;
}

.event-extra-text .event-date-tag .date {
    display: block;
    border: 1px solid var(--blue-color);
    border-top: none;
    font-size: 20px;
    background: white;
    color: var(--blue-color);
    text-align: center;
    padding: 5px 10px;
    border-radius: 0px 0px 15px 15px;
}

.date-tag {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(208.99deg, #eb53c7 -10.88%, #2239f2 111.12%);
    padding: 10px;
    color: #fff;
    text-align: center;
    width: 60px;
}

.date-tag::after {
    content: "";
    position: absolute;
    left: 0;
    top: 99%;
    height: 0;
    width: 0;
    border-left: 30px solid #463dea;
    border-right: 31px solid #6041e4;
    border-bottom: 10px solid transparent;
}

.date-text {
    display: inline-block;
    font-size: 18px;
    /* Adjust as needed */
    font-weight: bold;
}

.event-text {
    padding: 38px 24px 20px 24px;
    border-radius: 0px 0px 10px 10px;
    corner-bottom-left-shape: scoop;
    corner-bottom-right-shape: scoop;
    border: 1px solid #efefef;
    border-top: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-text a {
    color: var(--black-color);
    text-decoration: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 40%;
}

.event-text h4 {
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    margin-bottom: 0px;
}

.event-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-block: 14px;
}

.event-tag span {
    background: #e5fff6;
    color: #009d64;
    border: 1px solid #009d64;
    border-radius: 24px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 12px;
}

.event-location,
.event-date-time {
    font-size: 16px;
    /* padding-right: 10px;
    border-right: 1px dotted #737398; */
    color: #575757;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    align-items: baseline;
}

.event-detail-card .event-location {
    margin-top: 5px;
}

.event-location a {
    color: #23b0f7;
    text-decoration: none;
}

#event-bib-info .event-location {
    margin-left: 20px;
    font-weight: 500;
    margin-top: 10px;
}

.go-back {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-block: 30px;
    cursor: pointer;
}

.event-detail-card .event-text-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 10px;
}

.event-detail-card .event-tag {
    margin-block: 25px;
}

.event-type {
    font-size: 16px;
    /* padding-left: 10px; */
}

.run-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-bottom: 4px;
}

.event-time {
    font-size: 14px;
}

.event-time span {
    color: #df3c70;
}

.event-time span a {
    color: #df3c70;
    text-decoration: none;
}

.event-footer {
    background: black;
    padding: 24px 24px 24px 24px;
    color: #ffffff;
    border-radius: 10px;
    corner-top-left-shape: scoop;
    corner-top-right-shape: scoop;
    flex-shrink: 0;
    margin-top: auto;
}

.event-price {
    font-size: 24px;
    font-weight: 700;
}

.event-price i {
    margin-right: -10px;
}

.event-price-prefix {
    color: #737398;
    font-size: 12px;
}

.event-count {
    font-weight: 700;
    margin: 0px;
}

/* filter by city */
.city-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    overflow-x: scroll;
    padding-bottom: 10px;
}

.city-card {
    display: flex;
    padding: 10px 24px;
    border: 1px solid #dde0eb;
    border-radius: 8px;
    min-width: 200px;
}

.city-icon {
    font-size: 26px;
    padding: 5px;
    width: 48px;
    height: 48px;
    align-self: center;
    text-align: center;
    border-radius: 50%;
    margin-right: 16px;
}

.city-icon-1 {
    color: #2291a5;
    background: #ccfcfd;
}

.city-icon-2 {
    color: #2239f2;
    background: #d1d6ff;
}

.city-icon-3 {
    color: #eb53c7;
    background: #fcd5f3;
}

.city-icon-4 {
    color: #df3c70;
    background: #fcd5d5;
}

.city-icon-5 {
    color: #dbb030;
    background: #f8f098;
}

.city {
    font-weight: 600;
    font-size: 18px;
    display: block;
}

.no-of-events {
    font-weight: 500;
}

.city-row::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.city-row::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.city-row::-webkit-scrollbar-thumb {
    background: var(--body-color);
}

/* hosting section */
.hosting-section {
    /* background-image: url(../images/hosting-bg.png); */
    background-color: #ffbc2d;
    border-radius: 10px;
    background-size: cover;
    background-position: bottom;
    color: black;
    padding: 44px 48px;
}

.hosting-section h4 {
    font-weight: 600;
}

.event-white-btn {
    background: var(--white-color);
    color: var(--blue-color);
    height: 48px;
    font-weight: 600;
    align-content: center;
}

.event-yellow-btn {
    background: var(--white-color);
    color: #ffbc2d;
    height: 48px;
    font-weight: 600;
    align-content: center;
}

.event-yellow-btn:hover {
    border: 1px solid black;
}

.event-black-btn {
    background: var(--white-color);
    color: black;
    height: 48px;
    font-weight: 600;
    border: 1px solid black;
    align-content: center;
}

.event-black-btn:hover {
    border: 1px solid black;
}

/* footer */
footer {
    background: var(--body-color);
    padding-block: 56px;
    color: #b3b3b3;
}

.footer-logo {
    width: 129px;
    height: auto;
    border-radius: 5px;
}

footer ul {
    list-style-type: none;
    padding: 0px;
}

footer ul li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

footer ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 400;
}

footer .fotter-bottom-text {
    text-align: center;
    border-top: 2px solid;
    margin-top: 30px;
    padding-top: 22px;
}

footer .footer-links {
    display: flex;
    justify-content: space-between;
}

/* filter by events */
.carousel-container .owl-carousel {
    padding-left: 9%;
}

.carousel-container .owl-carousel .owl-item {
    text-align: right;
    /* Align content to the right */
}

.carousel-container .owl-carousel .owl-item .item {
    display: inline-block;
    vertical-align: top;
}

.carousel-container .item {
    width: 100%;
    min-width: 232px;
    height: 272px;
}

.carousel-container .image-wrapper {
    position: relative;
}

.carousel-container .item img {
    width: 100%;
    height: 272px;
    border-radius: 10px;
}

.carousel-container .image-wrapper p {
    position: absolute;
    bottom: 0px;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    padding: 24px;
    background: linear-gradient(180deg, rgba(44, 42, 41, 0) 0%, #2c2a29 100%);
    width: 100%;
    margin-bottom: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.carousel-container {
    position: relative;
}

.carousel-container .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.carousel-container .nav-btn {
    font-size: 35px;
    padding: 15px;
    cursor: pointer;
}

.carousel-container .prev-slide {
    left: 10px;
    color: var(--black-color);
}

.carousel-container .next-slide {
    right: 0px;
    color: var(--white-color);
    background: linear-gradient(91deg, rgba(44, 42, 41, 0) 0%, #2c2a29 100%);
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    align-content: center;
}

.carousel-container .owl-carousel .owl-item {
    padding-right: 50px;
}

/* event detail card */
.event-details-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0px 0px;
}

.about-section {
    position: relative;
}

.about-section .event-extra-text {
    border: none;
}

.about-section .white-card {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.event-detail-section-heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 20px;
}

.about-section .event-detail-section-heading {
    margin-top: 30px;
}
#event-bib-info table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* spacing between rows */
    font-size: 20px;
    color: #575757;
}

#event-bib-info table thead tr {
    font-weight: 500;
}

#event-bib-info table tbody tr {
    background: var(--body-background-color);
    border-radius: 10px;
    overflow: hidden;
    height: 40px;
}

/* ✅ Apply inline (horizontal) padding */
#event-bib-info table td {
    padding: 0 20px; /* left & right padding for all cells */
}

/* ✅ Rounded corners */
#event-bib-info table td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#event-bib-info table td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.event-detail-card .event-text {
    corner-bottom-left-shape: unset;
    corner-bottom-right-shape: unset;
}

.event-details-div {
    /* display: flex;
  justify-content: center;
  margin-top: -65px; */
}

.event-detail-card {
    background-color: var(--white-color);
    border-radius: 10px;
    position: relative;
    display: inline-block;
    height: 100%;
    align-content: center;
}

.event-detail-card .date-tag {
    right: 0px;
}

.event-detail-card .event-text h4 {
    margin-right: 0px;
    margin-bottom: 15px;
}

.event-detail-card .event-footer {
    margin-top: 16px;
}

.event-social-icons {
    font-size: 16px;
}

.event-social-icons i {
    padding: 6px;
    border-radius: 5px;
    margin-left: 2px;
}

.twitter i {
    background-color: #08a0e9;
    color: white;
}

.whatsapp i {
    background-color: #25d366;
    color: white;
}

.facebook i {
    background-color: #316ff6;
    color: white;
}

.google i {
    background-color: #db4437;
    color: white;
}

.instagram i {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    color: white;
}

.white-card {
    background-color: var(--white-color);
    padding: 30px 32px;
    border-radius: 10px;
}

.about-event h1,
.about-event h2,
.about-event h3,
.about-event h4,
.about-event h5,
.about-event h6 {
    font-weight: 600;
}

.event-faqs {
    /* background-color: var(--white-color);
    padding: 30px 32px;
    border-radius: 10px; */
}

.event-faqs h1,
.event-faqs h2,
.event-faqs h3,
.event-faqs h4,
.event-faqs h5,
.event-faqs h6 {
    font-weight: 600;
}

/* event details gallery */
.event-gallery img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 25px;
}

/* category card */
.category-card {
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid #707070;
}

.category-card:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.sub-category-card {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.category-card h4 {
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    margin-bottom: 0px;
}

.inclusive-tag {
    background: #ffe98c;
    color: #ffbc2d;
    padding: 2px 15px;
    border-radius: 10px;
    margin-right: 6px;
    margin-bottom: 5px;
    border: 1px solid #ffbc2d;
    font-size: 13px;
    font-weight: 600;
}

.inclusive-title {
    margin-right: 18px;
}

.ticket-add-btn {
    border: none;
    padding-inline: 30px;
    border-radius: 5px;
    background: #2239f2;
    color: white;
    font-weight: 600;
    height: 48px;
    margin-bottom: 10px;
    text-decoration: none;
    align-content: center;
}

.event-ticket-time {
    font-size: 12px;
}

.event-ticket-time span {
    color: #df3c70;
}

.sub-line {
    color: #737398;
    font-size: 12px;
}
.category-card .ticket-price {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}

.category-card .para {
    color: #b4b4b4;
    font-size: 14px;
    line-height: 14px;
}

/* checkout card */
.checkout-card .payment-detail {
    border: 1px solid #aeaeae;
    background-color: var(--white-color);
    padding: 34px 31px;
    border-radius: 30px;
}

.checkout-card .payment-detail h4 {
    font-weight: 600;
    margin: 0px;
}

.checkout-card .payment-detail .ticket-price {
    font-weight: 600;
}

.checkout-card .total-amount {
    background: var(--transparent-sky-blue);
    padding: 20px 31px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.checkout-card .total-amount h4 {
    font-weight: 600;
    margin: 0px;
}

.checkout-card .checkout-btn {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--blue-color);
    color: black;
    background-color: #fff2f2;
    margin-block: 25px;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 25px;
}

.checkout-card .checkout-btn .icon::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 1.4rem;
    color: black;
    transition: transform 0.3s ease;
    background-image: none !important;
    display: inline-block;
    vertical-align: middle;
    transform: rotate(269deg);
}

.apply-btn {
    width: 80px;
    border-radius: 5px;
    color: var(--blue-color);
    background-color: #fff2f2;
    border: 1px solid var(--blue-color);
    height: 53px;
    font-weight: 600;
    font-size: 16px;
}

.radio-options .validation_error {
    order: 3;
}

/* perticipant form */
.form-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #aeaeae;
}

.theamForm .form {
    margin: clamp(1.5rem, 10vw, 4rem) auto;
    max-width: 20rem;
}

.theamForm .section {
    margin-bottom: 0.7rem;
    display: grid;
    align-items: center;
}

.theamForm .input,
.theamForm select,
.theamForm textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border-radius: 7px;
    padding-inline: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 0.3rem;
    background-color: transparent;
    border: none;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #73739840;
    background: #ffffff1c;
}

.theamForm .input:focus,
.theamForm textarea:focus {
    box-shadow: 1px solid var(--black-color);
    outline: 1px solid var(--black-color);
}

.theamForm .input[type="submit"],
.theamForm textarea[type="submit"] {
    cursor: pointer;
}

.theamForm .label {
    background-color: transparent;
    justify-self: start;
    transition-property: transform, padding, font-size;
    transition-duration: 0.3s;
    margin: 0 1rem;
    pointer-events: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.theamForm .label,
.theamForm .input,
.theamForm textarea {
    grid-column-start: 1;
    grid-row-start: 1;
}

.theamForm textarea {
    height: 115px;
}

.theamForm .input:focus ~ .label,
.theamForm .input:not(:placeholder-shown) ~ .label {
    transform: translateY(-50%);
    font-size: 0.8rem;
    /* padding-left: 0.2rem; */
    padding-right: 0.2rem;
}

.theamForm textarea:focus ~ .label,
.theamForm textarea:not(:placeholder-shown) ~ .label {
    transform: translateY(-100%);
    font-size: 0.8rem;
    padding-right: 0.2rem;
}

.theamForm .section ::placeholder {
    color: transparent;
}

.theamForm .invalid .input {
    outline: 1px solid red;
}

.theamForm .invalid textarea {
    outline: 1px solid red;
}

.theamForm .invalid .label {
    color: red;
}

.theamForm .error {
    margin-top: 0.5rem;
    color: red;
}

.theamForm .submit-btn {
    width: fit-content;
    padding-inline: 20px;
    border-radius: 5px;
    border: none;
    color: var(--white-color);
    background-color: var(--blue-color);
    height: 48px;
    text-decoration: none;
    align-content: center;
}

.theamForm .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 1rem;
    margin-top: 0.5rem;
}

.theamForm .radio-options label {
    margin-left: 0.3rem;
    color: #11111152;
    font-size: 16px;
    font-weight: 600;
}

.theamForm .radio-options input[type="radio"]:checked + label {
    color: var(--body-color);
}

.theamForm select {
    appearance: none;
    /* Hides the default dropdown arrow */
    -webkit-appearance: none;
    /* For Safari */
    -moz-appearance: none;
    /* For Firefox */
    padding-right: 2rem;
    /* Adds space for the custom arrow */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M2 0L0 2h4z%22/%3E%3C/svg%3E");
    /* Custom arrow icon */
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px;
    margin-top: -23px;
}

.theamForm select:focus {
    box-shadow: 1px solid var(--black-color);
    outline: 1px solid var(--black-color);
}

.theamForm select:focus ~ .label,
.theamForm select:not([value=""]) ~ .label {
    transform: translateY(15%);
    font-size: 0.8rem;
    padding-right: 0.2rem;
    color: #11111152;
}

.position-relative {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #000;
}

.was-validated .form-control:invalid ~ .toggle-password,
.was-validated .form-control:valid ~ .toggle-password {
    top: 40%;
    transform: translateY(-79%);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none;
}

.form-control.is-invalid,
.was-validated .form-control:valid {
    background-image: none;
}

/* signin signup form */
.back-btn {
    font-size: 30px;
    background: transparent;
    border: none;
    padding: 0px;
}

.signin-signup h4 {
    font-weight: 600;
    margin: 0px;
}

.resend-otp-btn {
    border: none;
    background: transparent;
    color: var(--blue-color);
}

.send-resend-otp-btn {
    min-width: fit-content;
    height: 41px;
    cursor: pointer;
    text-decoration: none;
    padding-inline: 5px;
    align-self: center;
    color: var(--blue-color);
}

.send-resend-otp-btn:active {
    transform: scale(0.95) !important;
}

.forgot-btn {
    background: transparent;
    border: none;
    color: blue;
}

/* pagination */
.pagination .first,
.pagination .last {
    display: none;
}

.pagination .page-item .page-link {
    border: none;
    color: var(--blue-color) !important;
}

.pagination .active > .page-link {
    background-color: var(--blue-color) !important;
}

/* filter */
#filterForm h5 {
    font-weight: 600;
    padding-block: 15px;
    margin: 0px;
}

#filterForm .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 15px;
}

.filter-div {
    position: relative;
}

.filter-div button {
    border: 1px solid var(--blue-color);
    border-radius: 24px;
    background-color: #fff2f2;
    color: black;
    padding-inline: 30px;
}

.isFilter {
    display: block;
    width: 15px;
    height: 15px;
    background: var(--blue-color);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}

#filterModal .modal-header {
    border-bottom: 1px solid black;
    margin-inline: 35px;
    margin-top: 20px;
}

#filterModal .modal-body {
    margin-inline: 35px;
}

.dropdown-navbar ul {
    list-style-type: none;
    padding: 0;
    height: 40px;
}

.dropdown-navbar ul li {
    position: relative;
}

.dropdown-navbar ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 2;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-navbar ul li:hover .dropdown-menu {
    display: block;
}

.dropdown-navbar .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}

.dropdown-navbar .dropdown-menu a:hover {
    background-color: #2239f2;
    color: white;
}

.dropdown-navbar .dropdown-item.active {
    background-color: #2239f2;
    color: white;
}

.line {
    margin-block: 10px;
    border: 0.1px solid #b3b2b2;
    height: 0px;
}

.error-message {
    font-size: 0.8rem;
    margin-top: 5px;
}

.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #e0e0e0;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #ccc;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: #e0e0e0;
}

.early-bird-tag {
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 12px;
    border-radius: 8px 0;
    background: #58ab65;
    color: #fff;
    font-size: 12px;
    font-weight: 600 !important;
}

.quantity-input {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 27px;
    height: 20px;
    background: #e5fff6;
    border: 1px solid #009d64;
    border-radius: 10px;
    color: #009d64;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .quantity-btn:hover {
    background: #e0e0e0;
} */

.quantity-value {
    width: 35px;
    height: 20px;
    text-align: center;
    margin: 0 3px;
    border: 1px solid #009d64;
    background: #e5fff6;
    color: #009d64;
    border-radius: 10px;
}

/* Hide number input arrows */
.quantity-value::-webkit-outer-spin-button,
.quantity-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-value {
    -moz-appearance: textfield;
}

.order-summary-container {
    border: 1px solid var(--blue-color);
    margin-bottom: 30px;
    background: #fff2f2;
    border-radius: 40px;
    padding-inline: 20px;
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
}

.summary-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.summary-subtotal {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
}

.order-summary-details {
    padding: 15px;
    border-top: 1px solid #eee;
    max-height: 300px;
    overflow-y: auto;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #e5fff6;
}

.book-now-btn {
    /* position: absolute;
  bottom: 15px;
  right: 15px; */
    background: var(--blue-color);
    border: none;
    color: var(--white-color) !important;
    border-radius: 10px;
    padding: 10px 16px;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
    font-size: 22px;
}

.contact-organizer-btn {
    background: #fff2f2;
    display: block;
    color: black;
    border-radius: 10px;
    padding: 10px 16px;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
    font-size: 22px;
    border: 1px solid var(--blue-color);
    width: 100%;
}

.sold_out {
    color: red;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}

.event-info {
    background: var(--blue-color);
    border-radius: 10px;
    padding: 20px;
    color: white;
    text-align: center;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.view-info-section {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    /* Added for spacing between multiple instances */
}

.view-info {
    color: var(--blue-color);
    cursor: pointer;
    font-size: 14px;
}

.info-content {
    position: absolute;
    top: 20px;
    left: 15px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: auto;
    min-width: 300px;
}

.info-content::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

.loginProfile-btn {
    color: black;
    background: #fff2f2;
    border-radius: 15px;
    border: 1px solid var(--blue-color);
    width: 150px;
}

.old_user_div .select2-container--default .select2-selection--single {
    border: 1px solid #4d4d4d !important;
    border-radius: 15px !important;
    background: #e6e6e6 !important;
}

.cropper-container {
    width: 100% !important;
}

.ticket-card {
    /* max-width: 500px; */
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-same-height {
    display: flex;
    flex-direction: column;
    height: 95%;
}

.ticket-header {
    background-color: var(--transparent-sky-blue);
    color: var(--blue-color);
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ticket-header img {
    width: 200px;
    height: auto;
}

.ticket-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ticket-title span {
    font-size: 1rem;
}

.ticket-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.ticket-body {
    padding: 20px;
    padding-bottom: 0px;
    background-color: white;
    flex: 1;
}

.ticket-footer {
    padding: 20px;
    padding-top: 0px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: 500;
}

.total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.booking-id {
    background-color: #f1f1f1;
    padding: 15px;
    margin: 0 -20px 20px -20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge {
    background-color: #4caf50;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.action-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-primary {
    background-color: #1a237e;
    border-color: #1a237e;
}

.btn-outline-primary {
    color: #1a237e;
    border-color: #1a237e;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

.ticket-download-btn {
    width: fit-content;
    padding: 5px 10px;
    margin-top: 20px;
    background: var(--blue-color);
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: block;
}

/* login dropdown */

.custom-dropdown-content {
    background-color: var(--white-color);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--body-color);
    z-index: 999;
    transition: all 0.3s ease;
    border: 1px solid var(--body-color);
    overflow: hidden;
}

.custom-dropdown-content .dropdown-header {
    padding: 12px 16px;
    background-color: var(--off-white-color);
    border-bottom: 1px solid var(--off-white-color);
}

.custom-dropdown-content .dropdown-header span {
    display: block;
    font-weight: 600;
    color: var(--body-color);
    font-size: 14px;
}

.custom-dropdown-content .dropdown-divider {
    height: 1px;
    background-color: var(--off-white-color);
    margin: 4px 0;
}

.custom-dropdown-content .dropdown-item {
    color: var(--body-color) !important;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.custom-dropdown-content .dropdown-item:hover {
    background-color: var(--off-white-color);
    color: var(--blue-color) !important;
    border-left-color: var(--blue-color) !important;
}

.custom-dropdown-content .dropdown-item i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    color: var(--grey-color);
}

.custom-dropdown-content .dropdown-item:hover i {
    color: inherit;
}

.custom-dropdown-content .logout-item {
    color: var(--blue-color) !important;
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.custom-dropdown-content .logout-item:hover {
    background-color: var(--off-white-color) !important;
}

.custom-dropdown-content .logout-item i {
    color: var(--blue-color) !important;
}

/* profile */

.profile-card-new {
    background: var(--bs-body-bg);
    border-radius: 5px;
    padding: 15px;
    /* max-width: 900px; */
    margin: auto;
    margin-bottom: 20px;
}

.profile-card-new .line {
    width: 96%;
    margin: auto;
    border: 1px solid #f844648f;
    margin-block: 20px;
}

.profile-left {
    display: flex;
    align-items: flex-start;
}

.profile-left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-info h2 {
    font-size: 18px;
    margin: 0;
}

.profile-info p {
    color: gray;
    margin: 3px 0;
    font-size: 14px;
}

.profile-bottom {
}

.profile-bottom div span {
    display: block;
    color: gray;
    font-size: 12px;
}

.profile-bottom div strong {
    font-size: 14px;
}

/* extra */
.nav-link {
    color: var(--black-color) !important;
}

.nav-link.active {
    color: var(--blue-color) !important;
    border: none !important;
    border-bottom: 2px solid var(--blue-color) !important;
    background: #fff2f2 !important;
    border-radius: 0px !important;
}

.cardContainer {
    display: flex;
    margin-bottom: 20px;
}

.cardContainer .event-card {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    width: 100%;
}

.morecontent span {
    display: none;
}

.morelink {
    display: inline-block;
    color: blue;
    cursor: pointer;
}

.scroller-options {
    display: flex;
    justify-content: space-between;
    background: #f84464;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    list-style: none;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0px;
    -ms-overflow-style: none;
    /* IE + Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scroller-options::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.scroller-options li {
    height: 32px;
}

.scroller-options li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: ruby-text;
    transition: background 0.3s ease;
}

.scroller-head {
    background: #fff;
    transition: transform 0.2s ease;
    /* smooth feel */
    z-index: 1000;
}

#scroller-head.fixed {
    position: fixed;
    top: 0;
    z-index: 100;
    width: max-content;
    background: #f84464;
    animation: slideDown 0.5s ease;
}

#scroller-head.fixed .scroller-options {
    z-index: 99999;
}

.btn-black {
    background-color: #212529;
    border-color: #212529;
    color: white;
}

.btn-black:hover {
    background-color: #212529;
    color: white;
}

.theme-white-btn {
    border: 1px solid var(--blue-color);
    color: black;
    background: #fff2f2;
    border-radius: 5px;
    padding: 10px 16px;
    text-decoration: none;
    height: 44px;
}

.theme-white-btn:hover {
    background-color: transparent;
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.theme-white-btn-2 {
    border: 1px solid var(--blue-color);
    color: white;
    background: var(--blue-color);
    display: flex;
    padding: 10px 16px;
    text-decoration: none;
    height: 44px;
    border-radius: 35px;
}

.theme-white-btn-2::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    border: none;
    width: auto;
    height: auto;
    margin-left: 4px;
    font-size: 18px;
    color: white;
}

.theme-white-btn-2:hover::after {
    color: var(--blue-color);
}

.theme-white-btn-2:hover {
    background-color: transparent;
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.btn-notification {
    background: transparent;
    border: none;
    margin-left: 5px;
    font-size: 24px;
}

.btn-location {
    background: transparent;
    border: none;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 600;
}

.btn-location i {
    font-size: 24px;
    margin-right: 5px;
}

.btn-digital-wallet {
    background: transparent;
    border: none;
    margin-left: 10px;
    font-size: 24px;
    font-weight: 600;
}

.btn-transparent-black {
    background: transparent;
    color: black;
    border: 1px solid black;
}

.btn-transparent-theme {
    background: transparent;
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
    width: fit-content;
    padding-inline: 20px;
    border-radius: 5px;
    height: 48px;
    text-decoration: none;
    align-content: center;
}

.custom-container {
    width: 100%;
}

.head-section-1 {
    display: flex;
    justify-content: space-between;
}

.head-section-2 {
    display: flex;
    justify-content: space-between;
}

.btn-link {
    color: var(--blue-color);
    text-decoration: none;
    padding: 0px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

/* FAQ */
.event-faqs .accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.event-faqs .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-faqs .accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.event-faqs .accordion-button {
    padding: 20px 25px;
    border-radius: 12px !important;
    font-weight: 500;
    font-size: 1.1rem;
    color: #000000;
    background: var(--body-background-color);
}

.event-faqs .accordion-button:not(.collapsed) {
    color: #f84464;
    background: #f8446414;
    box-shadow: none;
}

.event-faqs .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.event-faqs .accordion-button::after {
    background-image: none !important;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.event-faqs .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: #f84464;
}

.event-faqs .accordion-body {
    padding: 20px 25px;
    color: #495057;
    line-height: 1.6;
    background: white;
}

.btn-theme {
    width: fit-content;
    padding: 5px 10px;
    background: var(--blue-color);
    color: white;
    border: none;
    border-radius: 5px;
}

.btn-theme:hover {
    color: white;
    background: var(--blue-color);
    background-color: var(--blue-color);
}

/* Info bar styling */
.info-bar {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #444;
    padding: 8px 0;
}

/* Scrolling text animation */
.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 40s linear infinite;
}

.info-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.info-bar a:hover {
    text-decoration: underline;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-80%);
    }
}

.city-buttons {
    padding-block: 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.city-buttons-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.city-buttons .city-btn img {
    width: 60px;
    height: 60px;
}

.city-buttons .city-btn {
    background: transparent;
    border: 0.5px solid #707070;
    border-radius: 67px;
    display: flex;
    align-items: center;
    gap: 17px;
    text-align: left;
    padding: 8px 40px 8px 8px;
}

.city-buttons .city-info .city-name {
    font-size: 20px;
    font-weight: bold;
}

.city-buttons .city-info .city-count {
    font-size: 14px;
}

.profile-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #a1a1a1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.create-event-section {
    background-color: #000000;
}

.create-event-content {
    padding-inline: 6%;
    padding-block: 6%;
}

.create-event-content .title {
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
    color: white;
    margin-block: 35px;
}

.create-event-content .title span {
    color: var(--blue-color);
}

.create-event-section .info-card {
    color: #009d64;
    font-size: 14px;
    font-weight: 500;
    background: #e5fff6;
    width: fit-content;
    border: 1px solid #009d64;
    border-radius: 32px;
    padding: 5px 20px 5px 7px;
    display: flex;
    align-items: center;
}

.create-event-section .info-card img {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    margin-right: 5px;
    padding: 7px;
}

.create-event-section .create-event-btn {
    border: none;
    background: var(--blue-color);
    color: white;
    border-radius: 35px;
    padding: 10px 25px;
    text-decoration: none;
}

.event-type-cards {
    display: flex;
    gap: 10px;
    justify-content: space-around;
    overflow-x: scroll;
    padding-bottom: 10px;
    max-width: 827px;
    margin: auto;
}

.event-type-cards::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.event-type-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.event-type-cards::-webkit-scrollbar-thumb {
    background: var(--body-color);
}

.event-type-card {
    text-align: center;
}

.event-type-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.event-type-card .type-name {
    font-size: 22px;
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.create-event-content-2 .create-event-btn {
    border: none;
    background: var(--blue-color);
    color: white;
    border-radius: 35px;
    padding: 15px 30px;
    text-decoration: none;
    display: block;
}

.create-event-content-2 {
    background: var(--off-white-color);
    border: 1px solid var(--off-white-color);
    border-radius: 26px;
    max-width: 1030px;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 85px;
    display: flex;
    justify-content: space-between;
    padding-inline: 3%;
    align-items: center;
    flex-wrap: wrap;
}

.create-event-content-2 img {
    width: 85px;
    padding: 10px;
    background: white;
    margin-right: 10px;
    margin-block: 15px;
    border: 1px solid var(--off-white-color);
    border-radius: 10px;
}

.create-event-content-2 .text {
    display: flex;
    align-items: center;
}

.create-event-content-2 .title {
    font-size: 27px;
    line-height: 27px;
}

.create-event-content-2 .sub-title {
    font-size: 16px;
}

.testimonials .section-heading {
    font-size: 68px;
    font-weight: 600;
    line-height: 68px;
    color: black;
    max-width: 890px;
    margin: auto;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials .section-heading span {
    color: var(--blue-color);
}

.testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1124px;
    margin: auto;
}

.testimonial-card {
    border: 1px solid #707070;
    border-radius: 29px;
    padding: 20px;
    max-width: 320px;
    margin-inline: 15px;
    margin-bottom: 30px;
}

.testimonial-card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid #707070;
    margin-right: 15px;
}

.testimonial-card .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.testimonial-card .sub-title {
    font-size: 16px;
    line-height: 16px;
}

.testimonial-card p {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

.list-your-event .create-event-btn {
    border: none;
    background: var(--blue-color);
    color: white;
    border-radius: 35px;
    padding: 15px 30px;
    text-decoration: none;
    display: block;
}

.list-your-event {
    background: #fff2f2;
    border: 1px solid #707070;
    border-radius: 28px;
    margin-top: 35px;
    margin-bottom: 85px;
    display: flex;
    justify-content: space-between;
    padding-inline: 5%;
    padding-block: 3%;
    align-items: center;
    flex-wrap: wrap;
}

.list-your-event img {
    width: 140px;
    padding: 10px;
    background: #fff2f2;
    margin-right: 10px;
    margin-block: 15px;
    border-radius: 50%;
}

.list-your-event .text {
    display: flex;
    align-items: center;
}

.list-your-event .title {
    font-size: 38px;
    line-height: 38px;
    color: black;
    font-weight: 600;
}

.list-your-event .sub-title {
    color: black;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    max-width: 550px;
    margin-top: 15px;
}

.organiser-card {
    background-color: var(--body-background-color);
}

/* Left Panel */
.organiser-left {
    background-color: var(--blue-color); /* same bright pink */
    flex: 1 1 35%;
    min-height: 320px;
    position: relative;
    border-radius: 25px;
    corner-bottom-right-shape: scoop;
    corner-top-right-shape: scoop;
}

.organiser-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Chat Icon */
.chat-icon {
    position: absolute;
    bottom: 25px;
}
.chat-icon i {
    color: #fff;
}

/* Right Panel */
.organiser-right {
    flex: 1 1 65%;
    border-radius: 25px;
    corner-bottom-left-shape: scoop;
    corner-top-left-shape: scoop;
}

.organiser-right p {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 25px;
}

.dots span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 8px;
}

.organiser-card .organiser-left .title {
    font-size: 30px;
    font-weight: 600;
}

.organiser-card .organiser-left .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.organiser-card .but-section {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.organiser-card .but-section img {
    width: 40px;
    height: 37px;
    border-radius: 50%;
    cursor: pointer;
}
.organiser-card button {
    color: black;
    background: white;
    border: none;
    border-radius: 45px;
    padding: 5px 30px;
}

.organiser-card .organiser-right .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.organiser-card .organiser-right .sub-para {
    font-size: 14px;
    margin-bottom: 10px;
}

.strike-text {
    position: relative;
    color: black;
    font-size: 22px;
}

.strike-text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 3px; /* thickness */
    background-color: var(--blue-color);
    transform: translateY(-50%);
    width: 105%;
}

#Proceed_to_checkout {
    border: none;
    border-radius: 25px;
    padding-inline: 25px;
}

#Proceed_to_checkout::after {
    content: "\f107"; /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
    background-image: none !important;
    display: inline-block;
    margin-left: 8px; /* space between text and icon */
    vertical-align: middle;
    transform: rotate(269deg);
}

.summary-subtotal-div {
    display: flex;
}

.sub-div-summary {
    display: flex;
    align-items: center;
}

.checkbox-color {
    appearance: none; /* Removes default browser style */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    width: 25px;
    height: 25px;
    border: 2px solid var(--blue-color);
    border-radius: 4px;
    background-color: #fff2f2;
    cursor: pointer;
    position: relative;
}

/* Checked state */
.checkbox-color:checked {
    background-color: var(--blue-color);
    border-color: var(--blue-color);
}

/* Optional: Add checkmark */
.checkbox-color:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-terms {
    margin-top: 10px;
}

.label-terms .label {
    margin: 0px !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
    margin-bottom: 12px !important;
}
.label-terms .label span {
    color: black;
}
.label-terms .label span span {
    color: #2196f3;
}

.label-terms .terms_and_conditions-options {
    margin-left: 0px !important;
}

.next-pre-btn {
    border: 1px solid #ff2459;
    border-radius: 8px;
    background: #fff2f2;
    color: black;
    width: 115px;
}

.participant-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.participant-card {
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.participant-summary {
    display: flex;
    align-items: center;
    padding-block: 30px;
    padding-left: 75px;
    position: relative;
}

.status-icon {
    width: 60px;
    height: 45px;
    left: -7px;
    position: absolute;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #009d64; /* Green background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff; /* White check */
    flex-shrink: 0;
}

.participant-info h4 {
    margin: 0;
    font-size: 22px;
}

.participant-info p {
    margin: 3px 0 0 0;
    font-size: 0.85rem;
    color: #ccc;
}

.participant-details {
    border-top: 1px solid white;
    padding: 30px 15px 15px 70px;
    display: none;
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.4;
}

.participant-card.expanded .participant-details {
    display: block;
}

.participant-card .participant-head {
    background: white;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    color: black;
    padding: 10px 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-section {
    background: white;
    border: 1px solid #b3b3b3;
    border-radius: 8px;
    padding: 20px;
}

.payment-section .nav {
    background: #f2f2f2;
    padding: 10px;
    border: none;
}
.payment-section .nav .nav-item {
    width: 100%;
}
.payment-section .nav .nav-link {
    color: black !important;
    font-size: 14px;
    font-weight: 500;
}
.payment-section .nav .nav-link.active {
    border: none;
    border-radius: 0px;
}
.payment-section .secure-tag {
    font-size: 8px;
    font-weight: 500;
    background: #009d64;
    padding: 2px 8px 3px 8px;
    color: white;
    border-radius: 20px;
    margin-left: 20px;
}
.upi-section .form-section {
    border: 1px solid #b3b3b3;
    border-radius: 8px;
    padding: 20px 20px 60px 20px;
    margin-bottom: 20px;
}
.upi-section .form-section p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.upi-section .form-section .upi-input {
    border-bottom: 1px solid var(--blue-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-color);
    display: flex;
}
.upi-section .form-section label {
    width: 120px;
}
.upi-section .form-section .upi-input input {
    border: none;
    color: var(--blue-color);
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

/* Placeholder color */
.upi-section .form-section .upi-input input::placeholder {
    color: var(--blue-color);
    opacity: 1;
}

/* Optional: on focus effect */
.upi-section .form-section .upi-input input:focus {
    outline: none; /* Remove default focus border */
    color: darkblue; /* Change input text color on focus if needed */
}

.upi-section .support-icons {
    text-align: center;
}

.upi-section .support-icons p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.upi-section .upi-btn img {
    width: auto;
    height: 38px;
}
.upi-section .upi-btn {
    background: white;
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
}
.payout-card .payment-detail {
    border-radius: 8px;
}
.payout-card .payment-detail h5 {
    margin-bottom: 0px;
}
.payout-card .total-pay {
    color: var(--blue-color);
    background: #fff2f2;
    border: 1px solid var(--blue-color);
    margin-top: 20px;
    padding-inline: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-block: 20px;
}
.organizer-div {
    background: white;
    padding: 20px 25px;
    border: 1px solid #aeaeae;
    border-radius: 8px;
    margin-top: 20px;
}
.organizer-div .name {
    font-weight: 600;
    margin: 0px;
}
.organizer-div .brand-name {
    font-size: 18px;
    font-weight: 500;
    color: black;
}
.organizer-div img {
    border-radius: 50%;
    border: 1px solid #009d64;
    width: 45px;
    height: 45px;
}
.sponsored img {
    width: auto;
    height: 40px;
}
.input-search {
    border: 1px solid #aeaeae;
    padding: 8px 20px;
    border-radius: 8px;
}

.heartbeat-btn {
    color: var(--blue-color) !important;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(0.95);
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.98);
    }
}

.gallery-img {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.gallery-img:hover {
    transform: scale(1.05);
}

#route-map img {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
#route-map img:hover {
    transform: scale(1.05);
}
#routeModalCaption {
    color: #f8f9fa;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.featured-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #fff;
    font-weight: bold;
    padding: 5px 5px 5px 12px;
    border-bottom-left-radius: 20px;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#cropperModal .modal-content {
    height: 90vh;
    width: 100%;
}

#cropperModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#cropperImage {
    max-height: 90vh;
    width: 100%;
}

/* Hero Section */
.page-hero {
    height: 320px;
    background: url("../images/about-us.jpg") center/cover no-repeat;
    position: relative;
}

.page-hero-2{
    height: 320px;
    background: url("../images/contact-us.jpg") center/cover no-repeat;
    position: relative;
}

.page-hero-overlay, .page-hero-overlay-2 {
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.page-hero h1, .page-hero-2 h1 {
    font-size: 42px;
    margin-bottom: 10px;
}


/* Content Section */
.about-section {
    padding: 60px 0px;
}

.about-section p{
    font-size: 19px;
    line-height: 1.6;
}

/* Services */
.about-section .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.about-section .service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    display: grid;
    border: 1px solid #f1efef;
}

.about-section .service-card:hover {
    transform: translateY(-6px);
}

/* Terms Section */
.terms-section {
    padding: 60px 0px;
}

.terms-section .terms-meta {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.terms-section .terms-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #111;
}

.terms-section .terms-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.terms-section .terms-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-section .terms-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.terms-section .terms-content a {
    color: #0b5ed7;
    text-decoration: none;
}

.terms-section .terms-content a:hover {
    text-decoration: underline;
}

.cta-btn {
    background: var(--blue-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    float: right;
    text-decoration: none;
}

.reach-us-div .reach-icon {
    background: var(--blue-color);
    color: white;
    max-width: 34px;
    height: 34px;
    border-radius: 50%;
    align-content: center;
    text-align: center;
    width: 100%;
}

.reach-us-div a{
    text-decoration: none;
    color: #000000;
}

.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
