/* ==========================================================
Root Variables
========================================================== */
:root {
    /* Main Colors */
    --primary-color: #8B0000;
    /* Deep Velvet Red */
    --secondary-color: #D4AF37;
    /* Royal Gold */
    --background-color: #1A1A1A;
    /* Changed to dark creamy color (Deep Charcoal) */
    --text-color: #F5F5F5;
    /* Soft White */
    --muted-text: #C0C0C0;
    /* Elegant Silver-Gray */
    --light-cream: #1A1A1A;
    /* Deep Charcoal */
    --lighter-cream: #2A2A2A;
    /* Slightly lighter charcoal */
    --gold: #D4AF37;
    /* Royal Gold */
    --red: #8B0000;
    /* Deep Velvet Red */
    --charcoal: #0B0B0B;
    /* Premium Jet Black */
    --gray: #C0C0C0;
    /* Silver-Gray */
    --yellow: #FFB84D;
    /* Warm Golden Yellow */

    /* Border Colors */
    --border-red: #8B0000;
    --border-gold: #D4AF37;
    --border-gold-light: rgba(212, 175, 55, 0.15);
    --border-gold-medium: rgba(212, 175, 55, 0.35);

    /* Background Colors */
    --bg-charcoal-light: rgba(255, 255, 255, 0.04);
    --bg-charcoal-medium: rgba(255, 255, 255, 0.07);
    --bg-charcoal-dark: rgba(0, 0, 0, 0.75);
    --bg-red-light: rgba(139, 0, 0, 0.15);
    --bg-red-medium: rgba(139, 0, 0, 0.55);
    --bg-red-dark: rgba(139, 0, 0, 0.75);
    --bg-gold-light: rgba(212, 175, 55, 0.08);
    --bg-gold-medium: rgba(212, 175, 55, 0.15);
    --bg-gold-transparent: rgba(212, 175, 55, 0.35);
    --bg-cream-transparent: linear-gradient(135deg, #dbd6c4, #cfc9b5, #e8e4da);
    --bg-cream-darker-transparent: rgba(10, 10, 10, 0.96);

    /* Shadow Colors. */
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-red: rgba(139, 0, 0, 0.6);
    --shadow-gold: rgba(212, 175, 55, 0.6);

    /* Gradient Colors */
    --gradient-cream: linear-gradient(135deg, #dbd6c4, #cfc9b5, #e8e4da);
    --gradient-red-gold: linear-gradient(135deg, #8B0000 0%, #D4AF37 100%);
        --gradient-text: linear-gradient(to right, #c29e20, #ffd504);
    --gradient-hero-title: linear-gradient(90deg, #FFD700 40%, #FFFACD 60%);
    --gradient-testimonial-red: linear-gradient(45deg, #8B0000, transparent);
    --gradient-testimonial-gold: linear-gradient(45deg, transparent, #D4AF37);
}

/* ==========================================================
Global Styles
========================================================== */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    list-style: none !important;
    text-decoration: none !important;
}

ul {
    padding-left: 0;
}

/* 3D effect for all text and headings */
body {
    text-shadow: 0.05em 0.05em 0.1em rgba(0,0,0,0.5),
                 0.1em 0.1em 0.2em rgba(0,0,0,0.4),
                 0.15em 0.15em 0.3em rgba(0,0,0,0.3);
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: 0.05em 0.05em 0.1em rgba(0,0,0,0.5),
                 0.1em 0.1em 0.2em rgba(0,0,0,0.4),
                 0.15em 0.15em 0.3em rgba(0,0,0,0.3),
                 0.2em 0.2em 0.4em rgba(0,0,0,0.2),
                 0.25em 0.25em 0.5em rgba(0,0,0,0.1);
}


/* ==========================================================
Header Styles
========================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border-bottom: none;
    background: var(--bg-cream-transparent);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/casino2.png") repeat;
    z-index: -1;
    /* Below navbar and particles */
    opacity: 0.2;
    /* Ensure texture is visible but subtle */
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37 50%, transparent);
    /* Thicker in center */
}

/* Ensure navbar and particles stay above */
.navbar,
#particles-header {
    position: relative;
    z-index: 1;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px var(--shadow-light);
}

h5 {
    color: var(--gold);
}
.ind-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.2s;
}

.ind-logo:hover {
    transform: scale(1.05);
}

.ind-logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF8C7A, #FFD700); /* Light radish orange to gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 108, 92, 0.5); /* Soft radish-orange glow */
        text-shadow: none;

}

.ind-logo-img i {
    font-size: 24px;
    color: #333333; /* Charcoal */
}

.ind-logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffd504 40%, #d5d0a5 60%); /* Gold to muted beige */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: -1px -2px 0px rgba(102, 75, 75, 0.4);
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
}

.btn-signin, .btn-signup {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

/* Sign In Button Hover */
.btn-signin:hover {
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    color: #6c757d;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

/* Sign Up Button Hover */
.btn-signup:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFFACD 100%);
    color: #6c757d;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}
.btn-signin,
.btn-signup {
    border-radius: 6px;
    padding: 8px 16px;
}

@media (max-width: 769px) {
    .ind-logo-img {
        width: 40px;
        height: 40px;
    }

    .ind-logo-img i {
        font-size: 20px;
    }

    .ind-logo-text {
        font-size: 18px;
    }

    .btn-signin,
    .btn-signup {
        font-size: 14px;
    }
}

@media (max-width: 540px) {

    .btn-signin,
    .btn-signup {
        padding: 6px 12px;
    }
}

@media (max-width: 376px) {

    .btn-signin,
    .btn-signup {
        font-size: 12px;
    }
}

/* ==========================================================
Hero Section
========================================================== */
.index-hero {
    background: var(--gradient-cream);
    /* Fallback gradient */
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/casino2.png") repeat;
    /*background-size: cover;*/
    z-index: 0;
    /* Below particles and content */
    opacity: 0.2;
    /* Ensure texture is visible */
}

.index-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Above texture, below content */
}

/* Ensure content and particles stay above */
.hero-content,
.hero-image,
.floating-circles,
#particles-hero {
    position: relative;
    z-index: 2;
}

/* Existing index-hero styles */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 10px !important;
    height: 350px;
    width: 450px !important;
    margin-top: 80px;
    margin-left: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%); /* Your specified colors */
    background-clip: text;
    text-shadow: 0 -3px 0px #e93c04; /* Deep orange for the shadow */
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6)); /* Slight yellow drop shadow */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-text);
    max-width: 600px;
}

.bottomSide {
    font-size: 16px;
    color: var(--text-color);
}

.hero-btns {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 10px !important;
    height: 350px;
    width: 450px !important;
    margin-top: 80px;
    margin-left: 70px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating Circles Background */
.floating-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
}

.floating-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: var(--red);
}

.circle-1 {
    width: 100%;
    height: 100%;
    opacity: 0.08;
}

.circle-2 {
    width: 80%;
    height: 80%;
    margin: 10%;
    opacity: 0.04;
}

.circle-3 {
    width: 60%;
    height: 60%;
    margin: 20%;
    opacity: 0.08;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .floating-circles {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 993px) {
    .index-hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .floating-circles {
        width: 500px;
        height: 500px;
    }

    .hero-rs,
    .hero-image img,
    .floating-circles {
        display: none;
    }
}

@media (max-width: 769px) {
    .index-hero {
        padding: 120px 0 50px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .floating-circles {
        width: 400px;
        height: 400px;
    }

    .bottomSide {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .floating-circles {
        width: 300px;
        height: 300px;
    }

    .vr {
        display: none;
    }
}

@media (max-width: 376px) {
    .hero-title {
        font-size: 24px;
    }
}

/* ==========================================================
Features Section
========================================================== */
.feature-section {
    padding: 100px 0;
    background: var(--gradient-cream);
    position: relative;
    overflow: hidden;
}

#features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37 50%, transparent);
    /* Thicker in center */
}

.feature-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/casino-texture.png") repeat;
    opacity: 0.15;
    z-index: 0;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* CSS-based dot texture using radial gradient */
    background-image: radial-gradient(circle, #FF5722 1px, transparent 1px);
    background-size: 12px 12px;
    /* Adjust size for dot spacing */
    opacity: 0.2;
    z-index: 0;
    /* Comment: Replace with image-based texture if available, e.g., 
       background: url("../img/dot-texture.png") repeat;
    */
}

.feature-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(212, 175, 55, 0.1));
    z-index: 1;
}

.feature-section .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--bg-charcoal-light);
    border-radius: 15px;
    padding: 16px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid var(--border-gold-light);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#e93c04, #ff7a00);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-gold-medium);
    box-shadow: 0 12px 25px var(--shadow-medium);
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffcf00;
    position: relative;
    display: flex;
    align-items: center;
    text-shadow: 0px 0px 5px #000;
    justify-content: start;
    margin-bottom: 10px;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px var(--shadow-light);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #FFC107;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    color: #fff; /* Make the text transparent initially */
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%); /* .Your specified colors */
    background-clip: text;
    text-shadow: 0 -3px 0px #e93c04; /* Deep orange for the shadow */
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6)); /* Slight yellow drop shadow */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}


@media (max-width: 993px) {
    .feature-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 16px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 769px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .feature-card h4 {
        font-size: 1.25rem;
    }
}
/* ==========================================================
Games Section
========================================================== */
.games-section {
    padding: 80px 0;
    background: var(--gradient-cream);
    position: relative;
}

.games-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #FF5722 1px, transparent 1px);
    background-size: 12px 12px;
    /* Adjust size for dot spacing */
    opacity: 0.2;
    z-index: 0;
}

/* Game Card */
.game-card {
    background: var(--bg-charcoal-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(-8px);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

/* Game Image */
.game-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Overlay */
.game-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-gold-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* Game Info */
.game-card .p-3 {
    flex: 1;
}

.game-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.game-card small {
    font-size: 14px;
    color: #000000 !important;
    font-weight: 700;
}

/* Button Styles */
.ind-btn {
    display: inline-block;
    color: var(--light-cream) !important;
    font-size: 15px;
    border-radius: 50px;
    padding: 9px 48px;
    border: 1px solid var(--border-red);
    background: var(--gold);
    transition: background 0.4s ease, color 0.4s ease;
    font-size: 14px;
    font-weight: 700;
}

.ind-btn:hover {
    background: var(--bg-red-medium);
    color: #fff !important;
}

/* Large Tablets */
@media (max-width: 993px) {
    .game-img {
        height: 180px;
    }

    .games-section {
        padding: 50px 0;
    }
}

/* Tablets */
@media (max-width: 769px) {
    .game-img {
        height: 160px;
    }

    .game-card h5 {
        font-size: 14px;
    }

    .game-card small {
        font-size: 12px;
    }

    .ind-btn {
        font-size: 14px;
        padding: 8px 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .game-img {
        height: 140px;
    }

    .ind-btn {
        font-size: 13px;
        padding: 8px 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .game-img {
        height: 120px;
    }

    .ind-btn {
        font-size: 12px;
        padding: 7px 24px;
    }
}
/* ==========================================================
Winners Section
========================================================== */
.winners-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-cream);
}
.winners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #FF5722 1px, transparent 1px);
    background-size: 12px 12px;
    /* Adjust size for dot spacing */
    opacity: 0.2;
    z-index: 0;
}
.winners-section h5 {
    color: #ffab00 !important;
}
.winners-section p {
    color: #fff !important;
}

.winner-card {
    background: var(--bg-charcoal-light);
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-gold-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-medium);
    border-color: var(--border-gold-medium);
}

.winner-number {
    background: var(--gradient-red-gold);
    color: var(--text-color);
    font-weight: 700;
    font-size: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 2px 6px var(--shadow-light);
}

.winner-icon {
    font-size: 24px;
    margin-right: 15px;
    color: var(--gold);
}

@media (max-width: 993px) {
    .winners-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .winner-card {
        padding: 12px;
    }

    .winner-icon {
        font-size: 20px;
        margin-right: 10px;
    }
}

/* ==========================================================
Enhanced Testimonials Section Styles
========================================================== */
.testimonial-section {
    padding: 60px 0;
    background: var(--gradient-cream);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #FF5722 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.2;
    z-index: 0;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-testimonial-gold);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    padding: 20px 0 60px;
}

.testimonial-card {
    background: var(--bg-charcoal-light);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-gold-light);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px var(--shadow-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red-gold);
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--border-gold-medium);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-avatar {
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--shadow-gold);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient-red-gold);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border: 2px solid var(--background-color);
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gold);
    line-height: 1.2;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffab00;
    font-size: 14px;
}

.rating-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 5px;
}

.testimonial-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 40px;
    color: #ffab00;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-left: 30px;
    flex: 1;
}

.testimonial-stats {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-gold-light);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffab00;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #ffab00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper customization */
.testimonial-swiper {
    padding: 10px 10px 60px;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--bg-charcoal-dark);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-color);
    background: var(--bg-charcoal-medium);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold-light);
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--bg-gold-medium);
    color: var(--background-color);
    transform: scale(1.1);
}

/* Animation for stars */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.testimonial-rating i {
    animation: pulse 2s infinite;
}

.testimonial-rating i:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-rating i:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-rating i:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-rating i:nth-child(5) {
    animation-delay: 0.8s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 993px) {
    .testimonial-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 25px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .testimonial-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-role {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 20px;
    }
    
    .quote-icon {
        font-size: 30px;
    }
    
    .testimonial-stats {
        gap: 15px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}
/* ==========================================================
CTA Section
========================================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #FF5722 1px, transparent 1px);
    background-size: 12px 12px;
    /* Adjust size for dot spacing */
    opacity: 0.2;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: transparent;
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    background-clip: text;
    text-shadow: 0 -3px 0px #e93c04;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.cta-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 993px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .d-flex.align-items-center.gap-4 {
        flex-direction: column;
        gap: 15px !important;
    }
}

/*===========================
PROMOTIONS' MODAL CSS
===========================*/
.custom-promotion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-charcoal-dark);
    /* Deep Charcoal */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.custom-promotion-overlay.active {
    display: block;
    pointer-events: all;
}

.custom-promotion-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
    background: var(--lighter-cream);
    /* Slightly lighter background */
    border-radius: 16px;
    box-shadow: 0 20px 40px var(--shadow-medium), 0 0 0 1px var(--border-gold-light);
    z-index: 10001;
    overflow: hidden;
    display: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    will-change: transform, opacity;
}

.custom-promotion-popup.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

.custom-promotion-header {
    padding: 24px;
    text-align: center;
    background: var(--gradient-red-gold);
    /* Crimson to Gold */
    color: var(--text-color);
    /* Soft White */
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.custom-promotion-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent);
    z-index: 0;
}

.custom-promotion-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    /* Soft White */
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
}

.custom-promotion-close:hover {
    background: var(--border-gold-medium);
    color: var(--primary-color);
    /* Crimson */
    transform: rotate(90deg);
}

.custom-promotion-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px var(--shadow-light);
    z-index: 1;
    position: relative;
    line-height: 1.3;
    color: var(--text-color);
    /* Soft White */
}

.custom-promotion-body {
    padding: 24px;
    color: var(--text-color);
    overflow-y: auto;
    max-height: 65vh;
    scrollbar-width: thin;
    scrollbar-color: var(--border-gold-medium) transparent;
}

.custom-promotion-body::-webkit-scrollbar {
    width: 6px;
}

.custom-promotion-body::-webkit-scrollbar-thumb {
    background: var(--border-gold-medium);
    border-radius: 3px;
}

.custom-promotion-item {
    background: var(--bg-charcoal-light);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-gold-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.custom-promotion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-medium);
    border-color: var(--border-gold-medium);
}

.custom-promotion-item-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 30 / 8;
}

.custom-promotion-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-promotion-item-image:hover {
    transform: scale(1.05);
}

.custom-promotion-item-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-red-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    /* Soft White */
    box-shadow: 0 4px 8px var(--shadow-medium);
    animation: pulse 1.8s infinite;
}

.custom-promotion-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-color);
    line-height: 1.4;
}

.custom-promotion-item-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--muted-text);
}

.custom-promotion-item-dates {
    display: flex;
    justify-content: space-between;
    background: var(--bg-charcoal-light);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid var(--border-gold-light);
}

.custom-promotion-item-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.custom-date-label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 6px;
    color: var(--muted-text);
}

.custom-date-value {
    font-weight: 600;
    color: var(--primary-color);
    /* Crimson */
    font-size: 0.95rem;
}

.custom-promotion-item-actions {
    display: flex;
    gap: 12px;
}

.custom-promotion-button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.custom-promotion-button.primary {
    background: var(--gradient-gold-red, linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%));
    color: var(--text-color);
    /* Soft White */
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.custom-promotion-button.secondary {
    background: var(--bg-charcoal-light);
    color: var(--text-color);
    border: 1px solid var(--border-gold-medium);
}

.custom-promotion-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--border-gold-light), transparent);
    transition: 0.4s;
}

.custom-promotion-button:hover::before {
    left: 100%;
}

.custom-promotion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-medium);
}

.custom-promotion-button.primary:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 16px var(--shadow-red);
}

.custom-promotion-button.secondary:hover {
    background: var(--bg-gold-light);
    border-color: var(--border-gold-medium);
}

.custom-promotion-count {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-top: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 769px) {
    .custom-promotion-popup {
        width: 92%;
        border-radius: 12px;
        max-height: 85vh;
    }

    .custom-promotion-title {
        font-size: 1.5rem;
    }

    .custom-promotion-item {
        padding: 20px;
    }

    .custom-promotion-item-title {
        font-size: 1.2rem;
    }

    .custom-promotion-item-image-container {
        aspect-ratio: 4 / 3;
    }

    .custom-promotion-item-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .custom-promotion-header {
        padding: 20px 16px;
    }

    .custom-promotion-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .custom-promotion-body {
        padding: 16px;
    }

    .custom-promotion-item {
        padding: 16px;
    }

    .custom-promotion-item-badge {
        font-size: 10px;
        top: 8px;
        right: 8px;
    }

    .custom-promotion-item-dates {
        flex-direction: row;
        gap: 12px;
    }

    .custom-promotion-item-image-container {
        aspect-ratio: 3 / 2;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-promotion-item {
    animation: slideIn 0.5s ease forwards;
}