/*variables*/
:root {
    --theme: #1e509d;
    --red: #DB2E1B;
    --link: #009aff;
    --grey: #222;
}


@font-face {
    font-family: 'CWC';
    font-weight: 400;
    src: url('../fonts/CWC-Regular.ttf');
}

@font-face {
    font-family: 'CWC';
    font-weight: 500;
    src: url('../fonts/CWC-Medium.ttf');
}

@font-face {
    font-family: 'CWC';
    font-weight: 700;
    src: url('../fonts/CWC-Bold.ttf');
}



body {
    font-family: 'CWC', Helvetica, sans-serif;
    /*font-family: 'Barlow Semi Condensed', sans-serif;*/
}




a {
    color: #222;
}

a:hover {
    color: var(--link);
    text-decoration: none
}

h1 {
    font-weight: 600;
    font-size: 2em;
}

hr {
    background: white;
}


.modal-booking {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000e0;
    z-index: 50;
}



.modal-img-box {
    height: auto;
    width: 40%;
}


@media screen and (max-width:500px) {
    .modal-img-box {
        width: 95% !important;
    }

    .pink-absolute-btn {
        bottom: 4px !important;
        right: 4px !important;
        width: 60% !important;
        font-size: 0.8em !important;
    }

    .book-btn {
        font-size: 0.8em !important;
    }

}

@media screen and (min-width:520px) {
    .modal-img-box {
        width: 75% !important;
    }

}



@media screen and (min-width:992px) {
    .modal-img-box {
        width: 40% !important;
    }
}

.hidden {
    display: none;
}

/* @media screen and (min-width: 1700px) {
    .space {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
} */

.pink-absolute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: auto;
    padding: 10px;
    background: #ff007d;
    color: white;
    width: 45%;
    text-align: center;
    font-weight: 800;
    font-size: 1.2em;
}

.close-btn-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
    cursor: pointer;
}

.close-icon-modal {
    height: 30px;
    width: auto;
    filter: invert(1);
}


.row {
    margin: 0;
}

.img-fluid {
    width: 100%;
}

.btn {
    border-radius: 0;
}

.navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    padding: 25px;
    padding-bottom: 5px;
    z-index: 10;
}

.navbar-brand img {
    height: 60px;
    margin-left: 35px;
}

.navbar-collapse {
    align-items: center;
}

.navbar-nav {
    align-items: center;
}


@media screen and (max-width:992px) {
    .navbar-brand img {
        height: 40px;
        margin-left: 0;
    }

    .home-button {
        display: none;
    }
}

.navbar-toggler {
    float: right;
    font-size: 1.8em;
    margin-top: 5px;
}

.nav-item {
    padding: 5px 28px;
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-item:hover {
    background: #efeeee;
}

.nav-link:hover {
    color: var(--link);
}

.active-nav {
    color: var(--red) !important;
    font-weight: 700 !important;
}

.bg-blue {
    background: var(--theme);
}

.bold-title {
    font-weight: 600;
}

.nav-belt {
    background-color: var(--theme);
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: row;
    color: white;
    font-size: 0.8em;
    justify-content: space-between;
}

.left-belt {
    display: flex;
    margin-left: 40px;
}

.right-belt {
    display: flex;
    margin-right: 40px;
}

.right-belt a {
    margin: 0 5px !important;
}

.right-belt i {
    font-size: 1.5em;
}

@media screen and (max-width:992px) {
    .nav-belt {
        display: none;
    }
}


.nav-belt a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.nav-belt i {
    margin-right: 5px;
}

@media screen and (min-width:992px) {
    .nav-opening {
        position: absolute;
        top: 90px;
        width: 90%;
        z-index: 6;
        background-color: white;
        left: 0;
        margin: 0 auto;
        right: 0;
        padding: 15px;
        box-shadow: 0px 1px 12px 0px rgb(192 192 192 / 75%);
    }
}

@media screen and (max-width:992px) {
    .nav-opening {
        margin-left: 30px;
    }
}


.option-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #cecccc;
}

.sub-title {
    font-size: 1.3em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 15px;
}

.sub-item {
    margin-bottom: 10px;
}

.sub-item h5 {
    font-size: 1em;
    margin: 0;
}

.sub-item h6 {
    font-size: 0.8em;
}

/*carousel*/

#carousel-example-generic {
    width: 100%;
}


.carousel-item {
    height: 68vh;
}


@media screen and (max-width:480px) {
    .carousel-item {
        height: 25vh;
    }
}

.hero {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Changed from center to flex-end to position content at bottom */
    justify-content: center;
    padding: 0 60px;
    /* Add horizontal padding to align with header */
}

@media screen and (max-width: 992px) {
    .hero {
        padding: 0 25px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 0 15px;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    /* Prevents any interaction with the video */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1500px;
    padding: 20px;
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}


.carousel-caption {
    position: absolute;
    top: 0px;
    right: 0;
    left: inherit;
    z-index: 5;
    color: #fff;
    text-align: center;
    background: #06060678;
    height: 100%;
    width: 45%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: center;
    align-items: flex-start;
}


.carousel-caption h4 {
    font-size: 3em;
    font-weight: bolder;
    text-align: left;
}

.carousel-caption p {
    font-size: 1.2em;
    font-weight: 600;
}


@media screen and (max-width:480px) {

    .carousel-caption h4 {
        font-size: 1em;
    }

    .carousel-caption p {
        font-size: 0.5em;
        text-align: left;
    }
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    user-select: none;
}


/*Events Section*/
.title-label {
    background-color: var(--theme);
    color: white;
    text-align: center;
    padding: 5px;
}

.title-label h2 {
    font-size: 1.5em;
    margin: 0;
}

.container-fluid {
    padding: 2% 10%;
    margin: 20px 0;
}

@media screen and (max-width:480px) {
    .container-fluid {
        padding: 10px 20px;
    }
}

.card {
    border-radius: 0;
    overflow: hidden;
    border: none;
    margin: 10px auto;
}

/* .card:hover {
    filter: brightness(0.8);
} */

.card:hover .card-image {
    transform: scale(1.1);
}

.card-image {
    /*height:243px;*/
    z-index: 1;
    transition: all 0.3s ease-out;
}

.card-title {
    margin: 0;
}

.card-body {
    background-color: white;
    color: black;
    text-align: left;
    text-transform: uppercase;
    padding: 20px;
    z-index: 2;
    position: relative;
    border: 1px solid #cecccc;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.card-body h5 {
    font-size: 1.3em;
    font-weight: 600;
}

.card-body p {
    font-size: 0.8em;
    font-weight: 500;
    margin: 0;
}

/* New Event Card Styles */
.event-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d5d5d5;
    margin: 5px auto;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 420px;
}

.event-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.event-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
}

.event-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    min-height: 2.6em;
}

.event-ticket-type {
    font-size: 0.875rem;
    color: #8b6f47;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.event-location {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-location svg {
    flex-shrink: 0;
    color: #999;
}

.event-price-section {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.event-price {
    flex: 1;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: none;
}

.event-price-request {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.hero-banner {
    height: 480px;
    /* Adjust this number to make it taller/shorter */
    position: relative;
    overflow: hidden;
}

.hero-banner img {
    height: 80%;
    width: 100%;
    object-fit: cover;
    /* Keeps image properly cropped */
}

.banner-control-absolute {
    top: 30%;
    /* Move title slightly down */
}


.view-package-btn {
    padding: 10px 20px;
    background: white;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.view-package-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Reduce horizontal gap between event cards */
.col-lg-4.my-3 {
    padding-left: 8px;
    padding-right: 8px;
}

/* Specific styling for events row to eliminate gaps */
.events-row {
    margin-left: -8px;
    margin-right: -8px;
}

@media screen and (max-width: 768px) {
    .event-card-title {
        font-size: 1.1rem;
        min-height: auto;
    }

    .event-card-image {
        height: 180px;
    }

    .price-amount {
        font-size: 1.25rem;
    }
}

/* Category Tabs Styling */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.category-tab {
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--theme);
    color: var(--theme);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.category-tab:hover {
    background: var(--theme);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 80, 157, 0.2);
}

.category-tab.active {
    background: var(--theme);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 80, 157, 0.3);
}

.event-item {
    transition: all 0.3s ease;
}

.event-item.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .category-tabs {
        gap: 8px;
        margin: 20px 0;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .category-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .category-tab {
        width: 100%;
        text-align: center;
    }
}

/* Category Section Styling */
.category-section {
    margin: 40px 0;
    scroll-margin-top: 100px;
    /* Offset for fixed header when scrolling to anchors */
}

.category-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--theme);
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .category-heading {
        font-size: 1.5rem;
    }

    .category-section {
        margin: 30px 0;
    }
}

.title-section {
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
}

.more-link {
    font-size: 0.6em;
    color: var(--theme);
}

.reason-control {
    padding: 25px 50px;
}

@media screen and (max-width:600px) {
    .reason-control {
        padding: 25px 20px;
    }
}

.reason {
    padding: 10px;
    text-align: center;
}

.reason i {
    font-size: 4em;
    color: var(--theme);
}

.reason h4 {
    font-size: 1.5em;
}

.reason p {
    font-size: 0.8em;
}


/*Client slider*/

.slick-slide {
    margin: 0px 50px;

}

.slick-slide img {
    width: 180px;
    height: 180px;
    object-fit: contain;

}

.slick-slider {
    position: relative;

    display: block;
    margin: 35px 0;
    box-sizing: bordern-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}


.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;

}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: auto;

    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.section {
    max-width: 3600px;
    margin: 0 auto;
}

/*client Slider*/

/*Inner Page*/

.event-title-banner {
    background-color: var(--theme);
    color: white;
    text-align: center;
    width: 87%;
    margin: auto;
    padding: 10px;
    margin-top: -50px;
    padding-top: 20px;
    z-index: 6;
    position: relative;
    text-transform: uppercase;
}

@media screen and (max-width:480px) {
    .event-title-banner {
        width: 100%;
        margin-top: 0;
    }
}

.event-title-banner h3 {
    font-size: 2em;
    font-weight: 700;
    margin: 0;
}

.event-title-banner h5 {
    font-size: 1.2em;
    font-weight: 500;
}

.packages {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.package {
    width: 32%;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #d2d0d0;
    margin-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 15%;
}

@media screen and (max-width:600px) {
    .package {
        width: 90%;
        padding-bottom: 40%;
    }
}

.package-thumb {
    transition: all 0.3s ease-out;
}

.package:hover .package-thumb {
    filter: brightness(0.7);
}


.package-content {
    padding: 5px 15px;
}

.package-title {
    padding: 10px;
    text-align: center;
    background-color: #ff0052;
    color: white;
    position: relative;
    width: 70%;
    margin: 0 auto;
    margin-top: -25px;
}

.package-accommodation {
    margin: 15px 15px;
}

.package-price {
    background-color: var(--theme);
    color: white;
    text-align: center;
    padding: 5px;
}

.space-adjust {
    position: absolute;
    bottom: 0;
    width: 100%;
}


/*Contact */

.contact-title {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-address p {
    font-size: 1em;
}


.table {
    width: 95%;
    margin: 0 auto;
}

label {
    font-weight: 600;
}

.nav-tabs {
    border: none;
    margin: auto;
    display: flex;
    justify-content: center;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #1e509d;
    border: none;
    border-radius: 0;
    color: white;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active:hover {
    color: white !important;
    background-color: #1e509d !important;
}

@media screen and (max-width:500px) {
    .nav-tabs .nav-item {
        width: 100%;
    }
}

.nav-tabs .nav-item {
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: #d9d9d9;
}

.nav-tabs .nav-item .nav-link:hover {
    background: #d3d3d3;
    color: black;
}





/*Contact Ends*/


/*Footer Starts*/

footer {
    color: white;
}

footer a {
    color: white;
}

footer a:hover {
    color: var(--link);
    text-decoration: none;
}

footer h5 {
    font-size: 1em;
}

footer li {
    font-size: 0.8em;
    margin: 5px 0;
}

.newsletter {
    background-color: #ededed;
    padding: 20px;
    margin-bottom: 30px;
}

.newsletter h5 {
    color: var(--theme);
    font-size: 1.5em;
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.newsletter-form .form-control {
    width: 60%;
    border-radius: 0;
    text-align: center;
}

.info-footer {
    padding: 5px 50px;
    font-size: 0.9em;
}

.pink-span {
    color: #ee2964;
}

.month-title {
    font-size: 2em;
    font-weight: 800;
    color: #11064c;
}

.match-box {
    border: 4px solid #dbdbdb52;
    border-radius: 8px;
    padding: 10px;
    margin: 10px auto;
}

.match-date {
    font-size: 1.1em;
    font-weight: 100;
    color: #818181;
}

.grey-match-highlights {
    font-size: 0.7em !important;
    color: grey;
    font-weight: 900;
}

.match-time {
    color: #11064c;
    font-weight: 900;
    font-size: 1.3em;
}

.match-location {
    color: #141414;
    font-size: 0.9em;
}

.match-local-date {
    color: #11064c;
    font-weight: 600;
}

.matches {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media screen and (max-width:500px) {
    .matches {
        margin-top: 20px;
    }
}

.team-name img {
    height: 60px;
    width: 60px;
    display: content;
}

.team-name {
    color: #11064c;
    font-weight: 900;
    font-size: 1.8em;
    text-transform: uppercase;
}

.document-title {
    position: absolute;
    top: 0;
    font-size: 2em;
    font-weight: 600;
    color: white;
    z-index: 10;
    background: #ee2964;
    padding: 5px;
}

.book-btn {
    background: #00a1ff;
    color: white;
    padding: 10px;
    font-size: 1.3em;
    font-weight: 600;
}


@media screen and (max-width:480px) {
    .booking-form-box {
        padding-top: 20%;
        width: 100% !important;
    }
}

@media screen and (max-width:992px) {
    .booking-form-box {
        position: relative !important;
        justify-content: center !important;
    }

    .booking-form {
        width: 90% !important;
        margin: auto !important;
    }

    .banner-caption-inner {
        align-items: flex-start !important;
        padding-top: 10%;
    }

    .inner-cricket-logo {
        height: 170px !important;
    }

    .large-font-inner {
        font-size: 2em !important;
        line-height: 32px !important;
    }

    .inner-small-fonts {
        font-size: 1em;
    }

    .banner-caption-inner {
        width: 100% !important;
    }

    .mobile-control-banner-caption {
        margin: 0 auto;
    }

}

.booking-form-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 30%;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


@media screen and (max-width:992px) {
    .booking-form-box {
        position: relative !important;
        justify-content: center !important;
        width: 75%;
    }
}

@media screen and (min-width:992px) {
    .booking-form-box {
        right: 5%;
    }
}

.booking-form {
    width: 30%;
    background-color: white;
    padding: 1.2rem;
    border: 4px solid #ee2964;
    transform: translateY(60px);
}

.booking-form-control {
    display: flex;
    flex-direction: column;
    margin: 15px auto;
}

.booking-label {
    margin: 0;
}

.booking-input {
    background: white;
    border: 2px solid #878787;
    border-radius: 0;
    padding: 2px 5px;
    width: 100%;
}

.booking-input:focus {
    outline: none;
    border-bottom: 2px solid #ee2964;
    border-radius: 0;
}

.btn-booking-form {
    background: #1a59c7;
    color: white;
    font-weight: 600;
    border: 0;
    outline: 0;
    font-size: 1.2em;
    padding: 8px;
}

.legend-booking {
    color: #01b3e6;
    font-weight: 600;
}

.bold-legend {
    color: #ee2964;
    font-weight: 800;
}

.card-book-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ee2964;
    z-index: 50;
    padding: 5px;
    font-weight: 600;
}

.banner-caption-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;

}

.inner-cricket-logo {
    height: 150px;
    width: auto;
}

.large-font-inner {
    font-size: 4em;
    line-height: 48px;
}

@media screen and (max-width:992px) {
    .banner-control-absolute {
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: center;
        width: 100%;
    }

    .blocker {
        display: none;
    }

}

.banner-control-absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8%;
}

.banner-gradient {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background-image: linear-gradient(to right, #0e1240 100%, transparent);
    opacity: 60%;
}

.graphics-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    align-items: center;
}

.graphics-photo-left {
    height: 450px;
    margin-right: auto;
    transform: translate(-105px, 200px);
}

.graphics-photo-right {
    height: 320px;
    margin-left: auto;
}


.close-screen-btn {
    font-size: 2.5em;
    float: right;
    margin-right: 25px;
    margin-top: 25px;
    cursor: pointer;
}

.failed-screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: red;
    z-index: 75;
}

.success-screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    z-index: 75;
}

.result-text {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-title {
    color: #00b1e5;
    font-weight: 700;
}

.success-sub {
    color: #ee2364;
}


.confetti {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1000;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #ffd300;
    top: 0;
    opacity: 0;
}

.confetti-piece:nth-child(1) {
    left: 7%;
    -webkit-transform: rotate(-40deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 182ms;
    -webkit-animation-duration: 1116ms;
}

.confetti-piece:nth-child(2) {
    left: 14%;
    -webkit-transform: rotate(4deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 161ms;
    -webkit-animation-duration: 1076ms;
}

.confetti-piece:nth-child(3) {
    left: 21%;
    -webkit-transform: rotate(-51deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 481ms;
    -webkit-animation-duration: 1103ms;
}

.confetti-piece:nth-child(4) {
    left: 28%;
    -webkit-transform: rotate(61deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 334ms;
    -webkit-animation-duration: 708ms;
}

.confetti-piece:nth-child(5) {
    left: 35%;
    -webkit-transform: rotate(-52deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 302ms;
    -webkit-animation-duration: 776ms;
}

.confetti-piece:nth-child(6) {
    left: 42%;
    -webkit-transform: rotate(38deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 180ms;
    -webkit-animation-duration: 1168ms;
}

.confetti-piece:nth-child(7) {
    left: 49%;
    -webkit-transform: rotate(11deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 395ms;
    -webkit-animation-duration: 1200ms;
}

.confetti-piece:nth-child(8) {
    left: 56%;
    -webkit-transform: rotate(49deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 14ms;
    -webkit-animation-duration: 887ms;
}

.confetti-piece:nth-child(9) {
    left: 63%;
    -webkit-transform: rotate(-72deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 149ms;
    -webkit-animation-duration: 805ms;
}

.confetti-piece:nth-child(10) {
    left: 70%;
    -webkit-transform: rotate(10deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 351ms;
    -webkit-animation-duration: 1059ms;
}

.confetti-piece:nth-child(11) {
    left: 77%;
    -webkit-transform: rotate(4deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 307ms;
    -webkit-animation-duration: 1132ms;
}

.confetti-piece:nth-child(12) {
    left: 84%;
    -webkit-transform: rotate(42deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 464ms;
    -webkit-animation-duration: 776ms;
}

.confetti-piece:nth-child(13) {
    left: 91%;
    -webkit-transform: rotate(-72deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 429ms;
    -webkit-animation-duration: 818ms;
}

.confetti-piece:nth-child(odd) {
    background: #7431e8;
}

.confetti-piece:nth-child(even) {
    z-index: 1;
}

.confetti-piece:nth-child(4n) {
    width: 5px;
    height: 12px;
    -webkit-animation-duration: 2000ms;
}

.confetti-piece:nth-child(3n) {
    width: 3px;
    height: 10px;
    -webkit-animation-duration: 2500ms;
    -webkit-animation-delay: 1000ms;
}

.confetti-piece:nth-child(4n-7) {
    background: red;
}

@-webkit-keyframes makeItRain {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        -webkit-transform: translateY(350px);
    }
}


.banner-bg-img {
    background-size: cover;
}

.hv-80 {
    height: 80vh;
}

.theme-input {
    display: block;
    width: 100%;
    background: white;
    border-radius: 0;
    border: 1px solid #121212;
    padding: 8px;
    transition: all 0.3s ease-out;
}

.input-wrap {
    position: relative;
    z-index: 2;
}

.theme-input:focus {
    outline: none;
}

.input-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    margin: auto;
    height: 3px;
    background: #007bff;
    transition: 0.3s;
}

.input-wrap:hover::before {
    width: 100%;
}


.card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 6/4;
    object-fit: cover;
}


.event-form-box {
    position: relative;
    width: 98%;
    margin: 1rem auto;
    max-width: 520px;
    overflow: hidden;
}

.event-form-header {
    background: var(--theme);
    position: relative;
    padding: 1.2rem;
    font-size: 24px;
    color: white;
    z-index: 2;
    text-align: center;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.event-form-header::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    height: 25px;
    width: 25px;
    border-radius: 40px;
    background: white;
    z-index: 5;
}

.event-form-body {
    padding: 1.2rem;
    border: 1px solid #9f9f9f;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    background: #f3f3f3;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: #05428c;
    /* Adjust this hex code to match exact screenshot shade if needed */
    padding: 60px 40px;
    margin-top: 50px;
    margin-bottom: 0px !important;
}

.title-section h2 {
    font-size: 2rem;
    letter-spacing: 1px;
}

.choice-icon {
    height: 80px;
    width: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* For PNG icons that are black, invert them to white */
.invert-white {
    filter: brightness(0) invert(1);
}

.reason-card {
    padding: 20px;
}

.reason-card:hover .choice-icon {
    transform: scale(1.1);
}

.reason-card h4 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.reason-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Added to the end of style.css */
.affiliations-container {
    padding: 2% 5%; /* Increased side padding */
}

.customer-logos .slide {
    padding: 0 15px; /* Added horizontal space between logos */
}

@media screen and (max-width: 768px) {
    .affiliations-container {
        padding: 5% 2%; /* Adjusted for mobile view */
    }
    
    .customer-logos .slide {
        padding: 0 10px; /* Maintained spacing on smaller screens */
    }
}

/* Redesigned Footer */
/* Ensure bg-blue is defined or override just for footer if needed, but using existing class or style */
footer.bg-blue {
    background-color: var(--theme) !important;
    padding: 20px 0;
}

.footer-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-container li a {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9em;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-links-container li a:hover {
    text-decoration: none;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .footer-links-container {
        flex-direction: column;
        gap: 15px;
    }
}
/* Custom Rounded Helpers for Gallery */
.rounded-left {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}
.rounded-top-right {
    border-top-right-radius: 0.5rem !important;
}
.rounded-bottom-right {
    border-bottom-right-radius: 0.5rem !important;
}
.rounded-right {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.about-text {
    font-size: 1rem;        /* reduced from 1.2rem */
    line-height: 1.6;
    font-weight: 500;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

.why-choose-us-section,
.why-choose-us-section h2,
.why-choose-us-section h4 {
    font-family: 'CWC', sans-serif;
    letter-spacing: 1.5px; /* Optional – matches CWC style */
}
.why-choose-us-section h2 {
    font-size: 42px;
}

.why-choose-us-section h4 {
    font-size: 18px;
    letter-spacing: 2.5px;
}

