:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-gold: #d4af37;
    --color-gold-light: #e5c15e;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--color-gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-bg);
}

.btn-gold:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-bg);
}

.btn-filled {
    background-color: var(--color-gold);
    color: var(--color-bg);
    margin-left: 15px;
}

.btn-filled:hover {
    background-color: #fff;
    color: var(--color-bg);
}

.btn-link {
    color: var(--color-gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-link:hover {
    gap: 15px;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 1)), url('assets/images/bg-hero.png');
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    padding-bottom: 60px;
}

.page-header h1 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 700;
}

.page-header p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-content span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: var(--color-gold);
    animation: load 2s ease forwards;
}

@keyframes load {
    to {
        width: 100%;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-link:not(.btn-gold):hover {
    color: var(--color-gold);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 20s infinite alternate;
}

@keyframes zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    display: block;
    position: relative;
    z-index: 1;
}

.img-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    z-index: 0;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.stat-item h4 {
    font-size: 3rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Calendar Section */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Event Flip Card */
.event-card-flip {
    perspective: 1000px;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Standard ratio close to 600/338 */
    min-height: 300px;
    /* Ensure enough height for back content */
}

.event-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.event-card-flip.flipped .event-card-inner {
    transform: rotateY(180deg);
}

.event-card-front,
.event-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-gold);
}

.event-card-front {
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotateY(0deg);
}

.event-card-back {
    background-color: #1a1a1a;
    /* Dark background for info */
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.btn-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.event-date {
    text-align: center;
    background: rgba(212, 175, 55, 0.15);
    /* More visible box */
    padding: 15px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    min-width: 90px;
    flex-shrink: 0;
    /* Don't shrink */
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #fff;
}

.event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.event-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Commands Page */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.command-card {
    background: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    padding: 30px;
}

.command-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.cmd-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.cmd-header i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.cmd-header h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
}

.cmd-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cmd-list li:last-child {
    border-bottom: none;
}

.cmd-name {
    color: var(--color-gold);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.cmd-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Stats Section */
.bg-dark {
    background-color: var(--color-bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--color-gold);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: #050505;
    text-align: center;
}

.footer-logo h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-logo p {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.social-links {
    margin-bottom: 40px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 10px;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        padding: 50px;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .img-border {
        display: none;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--color-gold);
    text-decoration: none;
    cursor: pointer;
}



.sponsors-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;

}

.sponsor-item img {
    margin-top: 50px;
    height: 50px;
    /* Adjust size as needed */
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: 0.3s;
}

.sponsor-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}




/* Giveaway Premium Layout */
.giveaway-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.giveaway-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.giveaway-img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.giveaway-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.giveaway-desc {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.giveaway-form-section {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.giveaway-form-section h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}

/* Premium Form Inputs */
.premium-input-group {
    margin-bottom: 20px;
}

.premium-input-group label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.premium-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s;
    border-radius: 0;
}

.premium-input:focus {
    outline: none;
    border-bottom: 1px solid var(--color-gold);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
}

.premium-input:focus+label,
.premium-input:valid+label {
    color: var(--color-gold);
}

.premium-input::placeholder {
    color: #444;
}

.premium-select option {
    background: #111;
    color: #fff;
}

/* Responsive Grid for Form */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .giveaway-card {
        grid-template-columns: 1fr;
    }

    .giveaway-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 576px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.alert-success {
    background-color: #2ecc71;
    color: #fff;
    border: 1px solid #27ae60;
}

.alert-error {
    background-color: #e74c3c;
    color: #fff;
    border: 1px solid #c0392b;
}

/* Pulse Animation for Highlighted Buttons */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-pulse {
    animation: pulse-gold 2s infinite;
    background: rgba(212, 175, 55, 0.1);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 3;
    animation: pulse-red 2s infinite;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

/* Slider Card Dimensions Override */
/* Slider Card Dimensions Override */
.swiper-slide.event-card-flip {
    max-width: 600px;
    height: 338px !important;
    margin: 40px auto 0;
    /* Updated: 40px top margin */
    position: relative;
    /* Allow Swiper to handle width */
}

.event-card-inner,
.event-card-front,
.event-card-back {
    height: 100% !important;
}

.event-card-front img {
    height: 100%;
    object-fit: cover;
}

/* Card Styling - Borders & Hover */
.event-card-front,
.event-card-back {
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle Gold Border */
    box-sizing: border-box;
    /* Ensure border doesn't break layout */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect on the Container */
.swiper-slide.event-card-flip:hover .event-card-front,
.swiper-slide.event-card-flip:hover .event-card-back {
    border-color: #d4af37;
    /* Bright Gold on Hover */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    /* Gold Glow */
}

/* Optional: Slight Lift Effect */
.swiper-slide.event-card-flip:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    z-index: 10;
    /* Bring to front */
}

/* Swiper Navigation Customization */
.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    background: rgba(212, 175, 55, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    /* Swiper default */
    top: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4af37;
    z-index: 20;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #d4af37;
    color: #000 !important;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #d4af37;
    opacity: 1;
}