﻿:root {
    --color-red: #bc9a34;
    --color-white: #fff;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
}

body {
    color: #fff;
    font-family: "Arvo", serif;
    /* overflow-x: hidden;s */
}

/* Fixed WhatsApp Button - Enhanced */
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20c351);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: whatsapp-pulse 2.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn i {
    font-size: 28px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
    text-decoration: none;
    color: #fff;
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive: Hide WhatsApp button on very small screens */
@media (max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-btn i {
        font-size: 24px;
    }
}

/*  */
@media (max-width: 768px) {
    .navbar-toggler {
        width: 40px;
        height: 35px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
}

/*  */
.fw-bold1 {
    font-size: 30px;
    color: black;
    font-weight: 600;
}

.fw-bold5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
}


/*Navbar section*/
.hero-top-bar {
    width: 100%;
    z-index: 999;
    background-color: #000000 !important;
    padding: 0.5rem 0;
    transition: background-color 0.5s ease;
}

.navbar {
    padding: 0;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
    background-image: url("~/images/bar.svg");
}

.nav-logo {
    height: 20px;
    margin-left: 0;
    transition: all 0.3s ease;
}

/* this */

/* Mobile only: hamburger left, logo center */
@media (max-width: 991px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        flex: 1;
        text-align: center;
        order: 2;
    }

    .nav-logo {
        width: 150px;
        height: auto;
        margin: 0;
    }

    .navbar-toggler {
        position: absolute;
        left: 1rem;
        order: 1;
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 0.5rem 0.75rem;
    }
}


/* this */
.navbar-nav {
    padding: 1rem 0;
}

.nav-link {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-red) !important;
}

.cart-box {
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-box:hover {
    background-color: #a82532 !important;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 0.1rem;
        margin-top: 0.5rem;
        border-radius: 0.25rem;
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
        display: block;
    }

    .d-flex.align-items-center {
        justify-content: flex-start;
    }

    .cart-box {
        display: inline-block !important;
    }
}

/* OFF-CANVAS MENU STYLING */
.offcanvas-menu {
    width: 100%;
    max-width: 100%;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
}

.offcanvas-menu.offcanvas-start {
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offcanvas-menu.show {
    transform: translateX(0);
}

.offcanvas-header {
    padding: 1.5rem 1rem;
    border-bottom: 2px solid #bc9a34;
}


.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.offcanvas-header .btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.offcanvas-body .navbar-nav {
    padding: 0;
    margin: 0;
    width: 100%;
}

.offcanvas-body .nav-item {
    margin: 0;
}

.offcanvas-body .nav-link {
    padding: 1rem 1.5rem !important;
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin: 0;
}

.offcanvas-body .nav-link:hover {
    background-color: rgba(202, 46, 62, 0.1);
    color: #bc9a34 !important;
    padding-left: 2rem !important;
}

.offcanvas-body .nav-link:active {
    background-color: rgba(202, 46, 62, 0.2);
}

/* Backdrop overlay styling */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

@media (min-width: 992px) {
    .offcanvas-menu {
        letter-spacing: 1px;
    }

    .offcanvas-body .nav-link {
        padding: 0.9rem 1.2rem !important;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-top-bar {
        position: static;
    }

    .offcanvas-header {
        padding: 1rem;
    }

    .offcanvas-header .offcanvas-title {
        font-size: 1.1rem;
    }

    .offcanvas-body .nav-link {
        padding: 0.8rem 1rem !important;
        font-size: 13px;
    }
}


.nav-logo {
    width: 150px;
    height: 80px;
    margin-left: 15px;
    object-fit: cover;

}

.hero-banner h1 {
    font-size: 2.5rem;
}

.hero-banner h2 {
    font-size: 2rem;
}




/* video */
.hero-banner {
    /* height: 100vh; */
    position: relative;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive bg-video optimization */

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 40%;
}

/* video */

/*Titles */

.white-icon {
    filter: invert(100%) brightness(200%);
}

/*About Club Wala section - Enhanced */
.club-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%), url('https://demo2.themelexus.com/bikersclub/wp-content/uploads/2017/01/pattern.jpg');
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.club-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(202, 46, 62, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.club-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(202, 46, 62, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.laal {
    color: #000;
    font-weight: 800;
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 20px 0 30px 0;
}

@media (max-width: 768px) {
    .laal {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .laal {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
}

.p1 {
    color: var(--color-red);
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.club-bike {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.club-bike:hover {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(202, 46, 62, 0.3));
}

.fw-bold {
    color: #000;
    font-weight: 200;
}

.fw-bold3 {
    color: #000;
    font-weight: 800;
    font-size: 18px;
}

.fw-bold2 {
    color: #000;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.price {
    color: var(--color-red);
    font-size: 35px;
    font-weight: bolder;
}

.stats,
.contact-info {
    text-align: left;
}

.contact-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}



/*Offer wala section - Enhanced*/
.offer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 46, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.offer-icon {
    width: 150px;
    height: 80px;
    filter: invert(100%);
}

.offer-subtitle {
    color: #bc9a34;
    letter-spacing: 1px;
    font-weight: 600;
}

.offer-title {
    font-size: 45px;
    font-weight: 800;
}

.offer-card {
    background: #111;
    border: 2px solid #444;
    padding: 50px 30px;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
    overflow: hidden;
}

.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #bc9a34, #ff6b6b);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.offer-card:hover {
    background: #fff;
    border-color: transparent;
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(202, 46, 62, 0.3);
}

.offer-card:hover .offer-heading,
.offer-card:hover .offer-text {
    color: #000;
}

.offer-img-box {
    background: linear-gradient(135deg, #bc9a34, #ff6b6b);
    width: 100px;
    height: 100px;
    margin: -50px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(202, 46, 62, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.offer-card:hover .offer-img-box {
    transform: scale(1.1) rotateZ(5deg);
}

.offer-img-box img {
    width: 110px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.offer-heading {
    color: #fff;
    margin-top: 25px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.offer-text {
    color: #bfbfbf;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.8;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*join section - Enhanced */
.join-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%), url('/images/logo2.jpg');
    background-attachment: fixed;
    padding: 100px 20px;
    text-align: center;
    color: #000;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(202, 46, 62, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.join-text {
    color: #000;
    max-width: 700px;
    margin: auto;
    font-size: 28px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.join-text .highlight {
    color: #bc9a34;
    font-weight: 700;
}

/* Responsive custom-btn for join-section */
@media (max-width: 480px) {
    .join-section .custom-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 20px;
    }
}

@media (max-width: 388px) {
    .join-section .custom-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 1px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 15px;
    }
}

/* Next big riders wala section - Enhanced*/
/*.next-big-rides {
    background: url('/images/backgroundimage.jpg') center / cover no-repeat fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}*/
.next-big-rides {
    background-image: url('/images/backgroundimage.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.next-big-rides::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.next-big-rides .content {
    position: relative;
    z-index: 2;
    animation: slideInDown 0.8s ease-out;
}

.next-big-rides p {
    color: #ff4d4d;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
}

.next-big-rides h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .next-big-rides h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .next-big-rides h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Pasr riders wala section*/
.past-rides {
    background: #fff;
    padding: 60px 0;
}

.date-ribbon {
    font-size: 0.85rem;
    font-weight: 600;
}



/* card emag */

.card img {
    transition: transform 0.4s ease;
}

.card img {
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: translateY(-10px);
}



.card:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.card-top {
    transform: scale(1.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* Premium Button Style with Shine Effect */
.custom-btn {
    position: relative;
    padding: 12px 35px;
    background: var(--color-red);
    color: white;
    font-weight: 700;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.custom-btn:hover {
    background: #a31a29;
    /* Darker shade of red */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(163, 26, 41, 0.4);
}

.custom-btn:hover::before {
    left: 100%;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}


/*Members section - Enhanced*/
.members-section {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.members-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 46, 62, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.members-icon {
    width: 130px;
}

.members-subtitle {
    color: #bc9a34;
    font-weight: 600;
}

.members-title {
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
}



.member-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: black !important;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 900;
    width: 100%;
    background-color: white;
    border: 1px #ff4d4d solid;
}

/* icon */

.member-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.member-card img {
    width: 100%;
    display: block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
}

.member-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.member-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-icons {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    transition: 0.4s ease-in-out;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #d13b3b;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a i {
    transform: rotate(-45deg);
}

.member-card:hover .social-icons {
    bottom: 10px;
}

.social-icons a:hover {
    background: #fff;
    color: #d13b3b;
}


/* icon */

.more-members {
    color: #bc9a34;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
}

/*Reviews wala section */
.member-review-section {
    /* background: url('~/images/backgroun1') center/cover fixed no-repeat; */
    padding: 120px 0;
}

@media (max-width: 768px) {
    .member-review-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .member-review-section {
        padding: 40px 0;
    }
}

.review-icon {
    /* filter: invert(1); */
    max-width: 100px;
}

.review-subtitle {
    color: #d95357;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .review-subtitle {
        font-size: 12px;
    }
}

.review-title {
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .review-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .review-title {
        font-size: 24px;
    }
}

/* qoute icon */
.quote-box {
    width: 50px;
    height: 50px;
    background: #bc9a34;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    transition: 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .quote-box {
        width: 45px;
        height: 45px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .quote-box {
        width: 40px;
        height: 40px;
        margin: 15px auto;
    }
}

.quote-box i {
    font-size: 48px;
    color: #fff;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .quote-box i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .quote-box i {
        font-size: 28px;
    }
}

.quote-box:hover {
    transform: rotate(45deg) scale(1.08);
}

/* qoute icon */
.review-text {
    font-size: 25px;
    text-align: center;
    color: black;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .review-text {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .review-text {
        font-size: 16px;
        text-align: center;
    }
}

.review-img {
    max-width: 370px;
    filter: grayscale(100%);
}

.dots .dot {
    height: 8px;
    width: 8px;
    background: #777;
    display: inline-block;
    border-radius: 50%;
}

.dots .active {
    background: #d95357;
}

/*product wala section*/
.products-section {
    background: #fff;
}

.product-subtitle {
    color: #c4383e;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
}

.product-card img {
    height: 230px;
    object-fit: cover;
}

.product-name {
    font-weight: 700;
}

.product-price {
    color: #444;
}

.add-btn {
    background: #000;
    color: #fff;
    border: 2px solid transparent;
    padding: 10px 25px;
}

.add-btn:hover {
    border-color: #d23e47;
    background-color: var(--color-red);
    color: var(--color-white);
}

.more-products {
    color: #bd3940;
    font-weight: 700;
    text-decoration: none;
}


.after {
    position: relative;
}



/* button */
.custom-btn {
    margin-top: 30px;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #bc9a34;
    background: transparent;
    color: #bc9a34;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #bc9a34;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.custom-btn:hover {
    color: #fff;
    border-color: #bc9a34;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(202, 46, 62, 0.4);
}


.custom-btn:hover::before {
    left: 0;
}

/* Responsive custom-btn for club-section */
@media (max-width: 480px) {
    .club-section .custom-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 306px) {
    .club-section .custom-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 1px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* button */
.small {
    font-size: 12px;
    font-weight: 200;
    color: #ccc;
}

/* carosal */
.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    transform: rotate(45deg);
    background-color: black !important;
    border: none;
    margin: 0 6px;
    border-radius: 3px;
    opacity: 1 !important;
    transition: 0.3s ease;
    margin-right: 10px !important;
}

.custom-indicators button.active {
    background-color: #bc9a34 !important;
}

.custom-indicators button:hover {
    background-color: #bc9a34 !important;
}

/* carosal */
.img-rider {
    width: 100% !important;
}

/* latest news */
.custom-card {
    position: relative;
    padding: 40px 30px;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    min-height: 100%;
    overflow: hidden;
    color: #000;
}

/*
    .custom-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--bg) center/cover no-repeat;
        clip-path: inset(100% 0 0 0);
        transition: clip-path 0.8s ease;
    }*/
.custom-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s ease;
}

.custom-card:hover::after {
    clip-path: inset(0 0 0 0);
}

.custom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    opacity: 0;
    transition: 0.8s ease;
    z-index: 1;
}

.custom-card:hover::before {
    opacity: 1;
}

.custom-card:hover {
    color: #ffffff;
    border-color: transparent;
}

.custom-card>* {
    position: relative;
    z-index: 2;
}

/* Icon Style */
.card-icon {
    width: 80px;
    height: 80px;
    background: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 40px;
    color: #fff;
}

.date {
    font-size: 13px;
    font-weight: 800;
    color: #ccc;
    margin-bottom: 12px;
}

.custom-card:hover .date {
    color: #fff;
}

.title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

/* new sellerr */
.newsletter-section {
    background: #c53744;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 50px 0;
    }
}

@media (max-width: 378px) {
    .newsletter-section {
        padding: 40px 0;
    }
}

.overlay-bg {
    background-image: url("~/images/adv-2.jpg");
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.newsletter-section h5,
.newsletter-section h1,
.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form {
    border: 3px solid #fff;
    height: 68px;
}

@media (max-width: 768px) {
    .newsletter-form {
        height: 60px;
        border: 2px solid #fff;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        height: 52px;
        border: 2px solid #fff;
        width: 90% !important;
    }
}

@media (max-width: 378px) {
    .newsletter-form {
        height: 48px;
        border: 2px solid #fff;
        width: 95% !important;
    }
}

.email-input {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding-left: 30px;
}

@media (max-width: 768px) {
    .email-input {
        font-size: 16px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .email-input {
        font-size: 14px;
        padding-left: 15px;
    }
}

@media (max-width: 378px) {
    .email-input {
        font-size: 12px;
        padding-left: 10px;
    }
}

.email-input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.subscribe-btn {
    width: 55%;
    height: 100%;
    background: #000;
    color: #fff;
    font-size: 15px;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .subscribe-btn {
        font-size: 14px;
    }
}

.subscribe-btn:hover {
    background: #fff;
    color: var(--color-red);
}

/* Responsive subscribe-btn for newsletter-section */
@media (max-width: 480px) {
    .subscribe-btn {
        font-size: 13px;
        padding: 0 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 45%;
    }
}

@media (max-width: 378px) {
    .subscribe-btn {
        font-size: 11px;
        padding: 0 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 40%;
    }
}

.text-white1 {
    font-size: 54px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .text-white1 {
        font-size: 40px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .text-white1 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }
}

@media (max-width: 378px) {
    .text-white1 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }
}

.text-white2 {
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 768px) {
    .text-white2 {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .text-white2 {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

@media (max-width: 378px) {
    .text-white2 {
        font-size: 11px;
        margin-bottom: 4px;
    }
}

/* new sellerr */
/* footer */
/* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
/*.footer-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8)), url("~/images/group-image.jpeg") center/cover no-repeat;
    background-attachment: scroll;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}*/
.footer-section {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8)), url("/images/group-image.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 378px) {
    .footer-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.to-top-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    color: #bc9a34;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 997;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 2px solid #bc9a34;
    width: 160px;
    height: 50px;
}

/* Scroll to Top Button with Circular Progress */
.scroll-to-top-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.progress-circle {
    position: absolute;
    transform: rotate(-90deg);
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 2px rgba(202, 46, 62, 0.3));
}

.progress-bg {
    fill: none;
    stroke: rgba(202, 46, 62, 0.5);
    stroke-width: 3;
}

.progress-fill {
    fill: none;
    stroke: #bc9a34;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 175.93;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-to-top-btn i {
    position: absolute;
    font-size: 24px;
    color: #bc9a34;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-3px) scale(1.1);
    color: #ff6b6b;
    filter: drop-shadow(0 0 8px rgba(202, 46, 62, 0.6));
}


@media (max-width: 768px) {
    .scroll-to-top-btn {
        left: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .progress-circle {
        width: 50px;
        height: 50px;
    }

    .progress-bg,
    .progress-fill {
        stroke-width: 2.5px;
    }

    .scroll-to-top-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        left: 12px;
        bottom: 12px;
        width: 45px;
        height: 45px;
    }

    .progress-circle {
        width: 45px;
        height: 45px;
    }

    .progress-bg,
    .progress-fill {
        stroke-width: 2;
    }

    .scroll-to-top-btn i {
        font-size: 18px;
    }
}

.img-fluid5 {
    width: 170px;
    height: 75px;
    /* margin-left: 15px; */
    object-fit: cover;
}

.addcol {
    color: var(--color-white) !important;
    font-size: 20px !important;
}

.mobile-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    margin-left: 20px;
}

.smog {
    font-size: 15px;
    color: #d95357;
}

.powerby {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.powerby p {
    color: #ccc;
    font-size: 12px;
    margin: 0;
}

.powerby a {
    color: #bc9a34;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powerby a:hover {
    color: #fff;
    text-decoration: underline;
}

.powered-label {
    font-size: 12px;
    font-weight: 200;
    color: #ccc;
}

/* Mobile Canvas - Separate Section */
.mobile-canvas {
    background: linear-gradient(180deg, rgba(202, 46, 62, 0.2) 0%, rgba(202, 46, 62, 0.05) 100%);
    border-top: 2px solid rgba(202, 46, 62, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 5px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mobile-canvas::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-canvas-text {
    margin: 0 0 12px 0;
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: #ddd;
    text-align: center;
    /* Explicitly center text */
}

.mobile-powered-label {
    color: #bc9a34;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-powered-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.mobile-powered-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff9999 !important;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(202, 46, 62, 0.15);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    border: 1px solid rgba(202, 46, 62, 0.3);
    font-size: 13px;
    white-space: nowrap;
}

.mobile-powered-link:hover {
    color: #fff !important;
    background: rgba(202, 46, 62, 0.35);
    border-color: rgba(202, 46, 62, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(202, 46, 62, 0.3);
}

.mobile-powered-link i {
    font-size: 14px;
    transition: all 0.4s ease;
}

.mobile-powered-link:hover i {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 3px rgba(202, 46, 62, 0.5));
}

.mobile-separator {
    color: rgba(202, 46, 62, 0.6);
    font-weight: 300;
    font-size: 14px;
}

/* footer */

/* Dropdown Hover & Styling */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu {
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0;
}

.dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dropdown-item:hover {
    background-color: var(--color-red);
    color: #fff;
    padding-left: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission {
    color: var(--color-white) !important;
    font-size: 20px !important;
    color: var(--color-red) !important;
}

.separate-header {
    margin-top: 100px;
    background-color: #000;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    /* Allows click to pass through to the anchor tag */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.sponsor-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-wrapper {
    overflow-x: auto;
    width: 100%;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sponsor-wrapper::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.sponsor-wrapper {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.sponsor-track {
    display: flex;
    white-space: nowrap;
    gap: 4rem;
    /* Initial gap, can be adjusted */
    width: max-content;
    /* Ensure track is wide enough */
    will-change: transform;
    /* Animation removed for JS implementation */
}


.sponsor-logo-carousel {
    width: 150px;
    height: 80px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Photo Album Card Design */
.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background: #000;
}

.album-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    /* Always visible but darkens on hover */
    transition: background 0.3s ease;
}

.album-info {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.album-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.photo-count {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Hover Effects */
.album-card:hover .album-img {
    transform: scale(1.1);
}

.album-card:hover .album-overlay {
    background: rgba(0, 0, 0, 0.6);
}


/* -----------------------------
   Next Big Rides Cards - Glassmorphism
----------------------------- */
.ride-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ride-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(202, 46, 62, 0.3);
    border-color: rgba(202, 46, 62, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

.ride-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.ride-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ride-card:hover .ride-image-wrapper img {
    transform: scale(1.15) rotate(1deg);
}

.ride-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #bc9a34 !important;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.ride-date .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ride-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ride-details {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ride-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ride-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: #bc9a34;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #fff;
    text-decoration: underline;
}

.ride-route {
    font-size: 1rem;
    color: #bc9a34 !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-top: auto;
}

.ride-route i {
    color: #bc9a34;
    margin-right: 8px;
}

.ride-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ride-stats span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ride-stats i {
    color: #bc9a34;
    font-size: 1.1rem;
}

.ride-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #bc9a34;
    border: 2px solid #bc9a34;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ride-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #bc9a34;
    transition: left 0.3s ease;
    z-index: -1;
}

.ride-btn:hover {
    color: #fff;
    box-shadow: 0 0 15px rgba(188, 154, 52, 0.6);
}

/* Responsive Adjustments for Ride Card */
@media (max-width: 991px) {
    .ride-title {
        font-size: 1.3rem;
    }

    .ride-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .ride-card {
        max-width: 400px;
        margin: 0 auto;
        /* Center single card on mobile */
    }

    .ride-image-wrapper {
        height: 200px;
    }

    .ride-details {
        padding: 20px;
    }

    .ride-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .ride-image-wrapper {
        height: 180px;
    }

    .ride-title {
        font-size: 1.25rem;
    }

    .ride-details {
        padding: 15px;
    }

    .ride-stats span {
        font-size: 0.8rem;
    }

    .ride-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Awesome Offcanvas Design */
.offcanvas {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #bc9a34);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding-left: 15px !important;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    color: #fff !important;
    padding-left: 25px !important;
    border-left: 3px solid #bc9a34;
}

/* Awesome Button Design (Override) */
.custom-btn {
    margin-top: 30px;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none !important;
    background: transparent;
    color: #bc9a34;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 0 3px #bc9a34;
}

.custom-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(202, 46, 62, 0.6);
}

.custom-btn::before {
    background: #bc9a34;
}



.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #ccc;
    border-top: 8px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.random-padding {
    padding-top: 70px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#about,
#events,
#media {
    scroll-margin-top: 90px;
}

/*CSS for Datatable to show(...)*/
.truncate-ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

table.dataTable {
    table-layout: fixed;
}