:root {
    --accent-color: #ed3839;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.98);
    top: 0;
    left: 0;
    transform: unset;
}

.loader.style2 {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.98);
    top: 0;
    left: 0;
    transform: unset;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-3 {
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    filter: contrast(10) hue-rotate(60deg);
    /* Removed blur */
    padding: 10px;
    mix-blend-mode: darken;
    margin: 0 auto;
}

.blob-3:before,
.blob-3:after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff00ff;
    animation: bo3 1s infinite alternate;
}

.blob-3:after {
    --s: -1;
}

.style2 .blob-3 {
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    padding: 10px;
}

.style2 .blob-3:before,
.style2 .blob-3:after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    animation: blobMove 1s infinite alternate;
}

.style2 .blob:after {
    --s: -1;
}

@keyframes blobMove {

    90%,
    100% {
        transform: translate(calc(var(--s, 1) * 30px));
    }
}

@keyframes bo3 {

    90%,
    100% {
        transform: translate(calc(var(--s, 1) * 30px));
    }
}

.navbar-area .nav-container {
    background: unset;
    background-color: rgba(255, 255, 255, 0.031) !important;
}

.home-one-slider::before {
    background: unset;
    background-color: rgb(0 0 0 / 50%) !important;
}

.navbar-area .nav-container {
    max-width: 1550px;
}

.home-one-slider {
    max-width: 100%;
}

.movie-info span.old {
    text-decoration: line-through;
}

.navbar-area .nav-container .main-menu .menu-item .menu-link {
    color: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
}

.section-title {
    color: #fff;
}

.category-card {
    transition: background 0.5s;
    background: unset;
    background-color: #000
}

.category-card:hover {
    background: unset;
    background-color: var(--accent-color)
}

.hero-slider-one.style-two .home-one-slider {
    border-radius: 0 !important;
}

.hero-slider-one.style-two .home-one-slider:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0 !important;
    width: 100%;
    height: 100%;
    background: unset;
    background-color: hsla(0, 0%, 0%, 0.302);
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    display: block !important;
    transform: translate(0) !important;
    border-radius: 0;
    background-size: 104% 112%;
}

.home-one-slider::after {
    content: none
}

.banner-scroll {
    bottom: 70px;
    position: absolute;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, 50%);
}

.banner-scroll .slider-btn svg {
    transform: rotate(270deg) !important;
}

.home-one-slider {
    border-radius: 0 !important;
}

.banner-area .swiper-wrapper {
    height: 100vh;
}

.about-section {
    background-color: #121212;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.back-to-top {
    background-color: #121212;
    color: white;
}

.whatsapp {
    background-color: #25d366;
    color: white;
    margin-bottom: 70px;
}

.floating-btn i {
    font-size: 20px;
}

.floating-btn:hover {
    opacity: 0.9;
}

ul.movie-info li {
    position: relative;
}

ul.movie-info li:after {
    content: "-";
    left: -10px;
    position: absolute;
    top: -2px;
}

ul.movie-info li:nth-child(1):after {
    content: none !important;
}

.event-card-wrapper {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.event-card {
    border: none;
    background-color: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.event-card-wrapper:hover .event-image {
    transform: scale(1.1);
}

.event-details {
    display: none;
    background-color: #1c1c1c;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
}

/* Animation */
.event-card-wrapper:hover .event-details {
    display: block;
    animation: slideInEvent 0.3s ease forwards;
}

@keyframes slideInEvent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-title {
    font-size: 1rem;
    font-weight: bold;
}

.event-info {
    font-size: 0.9rem;
    margin: 5px 0;
}

.event-action {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 10px;
}

.event-action:hover {
    text-decoration: underline;
}


.banner-area {
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
}

p {
    font-size: 1rem;
}

.icon-circle {
    display: inline-block;
    background-color: #eaf2fd;
    color: #0d6efd;
    padding: 1rem;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.icon-circle:hover {
    transform: scale(1.1);
}

.info-item::after {
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.info-item h5 {
    color: #ffffff;
    font-size: 1.2rem;
}

.text-muted {
    color: #cccccc !important;
}

.banner-layer {
    z-index: 0;
}

.banner-area .container {
    z-index: 1;
}

.banner-area .fill-warning {
    fill: #ffc107;
}

.banner-area .fill-orange {
    fill: #fd7e14;
}

.icon-circle {
    display: inline-flex;
    /* Use flexbox for alignment */
    align-items: center;
    /* Center the icon vertically */
    justify-content: center;
    /* Center the icon horizontally */
    width: 70px;
    /* Fixed width */
    height: 70px;
    /* Fixed height (same as width) */
    background-color: #eaf2fd;
    /* Background color */
    color: #0d6efd;
    /* Icon color */
    border-radius: 50%;
    /* Make it circular */
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
    /* Add hover effect */
}

.icon-circle:hover {
    transform: scale(1.1);
    /* Slightly enlarge on hover */
}

.info-item::after {
    content: "";
    width: 70px;
    /* Match the height and width of icon-circle */
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    /* Keep it circular */
    z-index: 0;
}

.icon-square {
    display: inline-flex;
    /* Use flexbox for alignment */
    align-items: center;
    /* Center the icon vertically */
    justify-content: center;
    /* Center the icon horizontally */
    width: 60px;
    /* Fixed width */
    height: 60px;
    /* Fixed height */
    border-radius: 8px;
    /* Slightly rounded corners */
    background-color: var(--icon-bg-color);
    /* Use CSS variables for dynamic colors */
    color: var(--icon-color);
    /* Dynamic icon color */
    font-size: 24px;
    /* Icon size */
    position: relative;
    z-index: 1;
}

.info-item h5 {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: bold;
    color: #333333;
}

.info-item p {
    font-size: 0.875rem;
    color: #666666;
}

.text-muted {
    color: #666666 !important;
}

.icon-square {
    display: inline-flex;
    /* Use flexbox for alignment */
    align-items: center;
    /* Center the icon vertically */
    justify-content: center;
    /* Center the icon horizontally */
    width: 60px;
    /* Fixed width */
    height: 60px;
    /* Fixed height */
    border-radius: 8px;
    /* Slightly rounded corners */
    background-color: var(--icon-bg-color);
    /* Use CSS variables for dynamic colors */
    color: var(--icon-color);
    /* Dynamic icon color */
    font-size: 24px;
    /* Icon size */
    position: relative;
    z-index: 1;
}

.info-item h5 {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: bold;
    color: #333333;
}

.swiper-wrapper {
    padding: 40px 0;
}

.info-item p {
    font-size: 0.875rem;
    color: #666666;
}

.text-muted {
    color: #666666 !important;
}

.default-card-style {
    position: relative;
    transition: transform 0.5s;
}

.default-card-style img {
    border-radius: 20px;
    /* Fully rounded corners */
    transition: border-radius 0.1s;
    /* Smooth transition for border-radius */
}

.default-card-style:hover img {
    border-top-left-radius: 20px;
    /* Rounded corners only at the top */
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    /* Remove rounding at the bottom */
    border-bottom-right-radius: 0;
}


.default-card-style .card-details-area {
    background-color: #121212;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -1px;
    opacity: 0;
    /* Start fully transparent */
    pointer-events: none;
    /* Prevent interactions when hidden */
    transition: opacity 0.5s ease-in-out;
    /* Smooth fade effect */
    border: 1px solid #383838;
}

.default-card-style .card-details-area.visible {
    opacity: 1;
    /* Fully visible */
    pointer-events: auto;
    /* Enable interactions when visible */
}

.default-card-style:hover {
    transform: scale(1.3);
    z-index: 9;
}

.default-card-style .description {
    display: inline-flex;
}

.default-card-style .description div {
    margin: 0 10px;
    position: relative;
}

.default-card-style .description div:first-child {
    margin-left: 0;
}

.default-card-style .description div:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -12px;
}

.default-card-style .description div:last-child:after {
    content: none;
}

.card-details-area .title {
    letter-spacing: 1px;
}

.card-view {
    display: none;
}

.btn-toggle-view {
    background-color: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-toggle-view:hover {
    background-color: #fff;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.card-view {
    display: none;
}

.card-hover {
    transition: background-color 0.5s, color 0.5s;
    background-color: #fff;
    color: black;
}

.card-hover:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.card-hover:hover .card-text a,
.card-hover:hover .card-text {
    color: #fff !important;
}

.card-details-area-mobile .title {
    font-size: 10px !important;
    margin-top: 10px;
    text-align: center;
}

.card-details-area-mobile {
    display: none;
}

.swiper {
    overflow: unset;
}

.card-image-area {
    position: relative;
}

.card-video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-image-area:hover .card-video {
    display: block;
}

.card-image-area img {
    position: relative;
    z-index: 0;
}

.card-details-area .title {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

.card-details-area .description,
.card-details-area p {
    font-size: 12px !important;
}

.section-title,
.large-width-section .section-heading-2 {
    font-size: 30px !important;
}

.category-card .title {
    font-size: 20px !important;
}