/* ================= Variables & Reset ================= */
:root {
    --bs-primary: #0061cf; 
    --bs-dark-blue: #142240; 
    --bs-light-bg: #f3f7fd; 
    --bs-text-gray: #555c6b;
    --bs-gold: #bfa15f; 
    --bs-gold-dark: #a38a4f;
    --ease-premium: cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-soft: 0 10px 40px -10px rgba(0,64,128,0.1);
    --shadow-hover: 0 20px 50px -10px rgba(0,64,128,0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: var(--bs-text-gray);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ================= Premium Animations ================= */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1.2s var(--ease-premium);
    will-change: transform, opacity;
}
.reveal { transform: translateY(40px); }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { transform: translateX(-40px); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { transform: translateX(40px); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

@keyframes float-premium {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
.floating-anim { animation: float-premium 6s ease-in-out infinite; }

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ================= Logo Animation ================= */
@keyframes logo-entrance {
    0% { opacity: 0; transform: translateY(-20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.navbar-brand img {
    animation: logo-entrance 1.2s var(--ease-premium) forwards;
    transition: transform 0.4s var(--ease-premium), filter 0.4s ease;
    will-change: transform;
}

.navbar-brand:hover img {
    transform: scale(1.08) translateY(2px);
    filter: drop-shadow(0 8px 15px rgba(0, 97, 207, 0.2));
}

/* ================= Sticky Social Sidebar ================= */
.social-sidebar {
    position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 1060;
    display: flex; flex-direction: column; gap: 15px; background: transparent; border: none; box-shadow: none; padding: 0;
}

.social-link {
    width: 45px; height: 45px; border-radius: 50%; background: #fff;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.1rem; color: var(--bs-dark-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s var(--ease-premium);
    text-decoration: none; border: 1px solid rgba(0,0,0,0.05);
}

.social-link:hover {
    transform: translateX(-5px) scale(1.1) rotate(360deg); color: #fff; border-color: transparent; box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.social-link.linkedin:hover { background: #0077b5; }
.social-link.twitter:hover { background: #000000; }
.social-link.facebook:hover { background: #1877F2; }
.social-link.telegram:hover { background: #229ED9; }
.social-link.whatsapp:hover { background: #25D366; }
.social-link.youtube:hover { background: red; }

/* ================= Navigation Bar ================= */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem; padding-bottom: 1rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: padding 0.3s;
}

.nav-link { position: relative; font-weight: 500; color: var(--bs-dark-blue) !important; transition: color 0.3s; }
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 5px; left: 50%;
    background-color: var(--bs-primary); transition: all 0.4s var(--ease-premium); transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.nav-link.active { color: var(--bs-primary) !important; }

/* NOTE: Class name kept as btn-book-now to maintain compatibility with other pages, 
   even though text is now "Apply Now" */
.btn-book-now {
    border-radius: 50px; padding: 0.6rem 2.2rem; font-weight: 600;
    background: linear-gradient(135deg, var(--bs-primary), #0050b3);
    border: none; box-shadow: 0 4px 15px rgba(0, 97, 207, 0.3);
    position: relative; overflow: hidden; transition: transform 0.3s; color: #fff;
    text-decoration: none;
}
.btn-book-now::before, .btn-gold::before, .hero-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.6s;
}
.btn-book-now:hover::before, .btn-gold:hover::before, .hero-btn:hover::before { left: 100%; }
.btn-book-now:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 97, 207, 0.4); }

/* ================= Hero Section ================= */
.hero-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 20px;
}
.hero-heading {
    font-size: 1.45rem; line-height: 1.1; font-weight: 800; color: var(--bs-dark-blue); margin-bottom: 1.5rem;
}
.hero-text { font-size: 1.05rem; line-height: 1.8; color: #5a6476; width: 95%; }
.hero-btn {
    background-color: var(--bs-primary); color: white; padding: 14px 35px; font-weight: 600; border-radius: 8px; border: none; position: relative; overflow: hidden;
}
.hero-btn-outline {
    color: var(--bs-primary); border: 1px solid #dbe4f3; background: transparent; padding: 14px 35px; font-weight: 600; border-radius: 8px; transition: all 0.3s;
}
.hero-btn-outline:hover { border-color: var(--bs-primary); background-color: #f0f7ff; color: var(--bs-primary); }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(16, 91, 216, 0.2); }
.promoter-text { font-size: 0.85rem; color: #8898aa; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; }
.hero-img { max-width: 100%; height: auto; }

/* ================= Stats Bar (Sleek) ================= */
.stats-container { margin-top: 0; margin-bottom: 20px; }
.stats-bar {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border-radius: 20px; padding: 2rem 1rem; position: relative; z-index: 10;
    border-top: 4px solid var(--bs-gold); box-shadow: 0 10px 40px rgba(0,64,128,0.08);
    transition: transform 0.4s var(--ease-premium);
}
.stats-bar:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(0,64,128,0.12); }
.stat-number {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.2rem; margin-bottom: 0; line-height: 1;
    color: var(--bs-dark-blue);
}
.stat-label { 
    font-size: 0.9rem; color: var(--bs-text-gray); font-weight: 600; 
    text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; margin-bottom: 0; 
}
.border-end-sleek { border-right: 1px solid rgba(0,0,0,0.08); position: relative; }

/* ================= Features, Highlights, Eligibility ================= */
.features-section { padding-bottom: 3rem; }
.feature-card {
    background: #fff; border-radius: 12px; transition: all 0.5s var(--ease-premium); border: 1px solid transparent;
}
.hover-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(0, 97, 207, 0.1); }
.text-primary-custom { color: #556c87; transition: color 0.3s; }
.hover-card:hover .text-primary-custom { color: var(--bs-primary); }
.icon-box i { transition: transform 0.5s var(--ease-premium), color 0.3s; }
.feature-card:hover .icon-box i { transform: scale(1.15) rotate(5deg); color: var(--bs-primary); }
.feature-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--bs-dark-blue); }
.feature-list { color: #555; font-size: 0.95rem; line-height: 1.8; }

.highlights-section { background-color: #fff; position: relative; }
.highlight-card {
    border-radius: 12px; color: #fff; transition: all 0.5s var(--ease-premium);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; overflow: hidden; border: none;
}
.card-blue { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.card-green { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.card-purple { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.highlight-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.icon-circle {
    width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px);
}
.highlight-text { font-size: 0.95rem; line-height: 1.6; opacity: 0.9; }

.eligibility-section { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); padding-bottom: 6rem; }
.eligibility-card {
    background: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease; border: none; border-top-width: 5px; border-top-style: solid;
}
.eligibility-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.eligibility-icon-box {
    width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease;
}
.eligibility-card:hover .eligibility-icon-box { transform: scale(1.1) rotate(5deg); }
.border-top-blue { border-top-color: #3b82f6; } .bg-light-blue { background-color: #eff6ff; } .text-blue { color: #3b82f6; }
.border-top-purple { border-top-color: #a855f7; } .bg-light-purple { background-color: #f3e8ff; } .text-purple { color: #a855f7; }
.border-top-green { border-top-color: #10b981; } .bg-light-green { background-color: #ecfdf5; } .text-green { color: #10b981; }

/* ================= Framework ================= */
.framework-section {
    background: radial-gradient(circle at 50% 50%, #f4f9ff 0%, #eef5fc 100%);
    position: relative; padding: 6rem 0; margin-top: 3rem;
}
.framework-heading {
    font-family: 'Merriweather', serif; font-weight: 700; color: var(--bs-dark-blue); font-size: 2.2rem; margin-bottom: 1rem;
}
.heading-underline {
    width: 60px; height: 3px; background-color: var(--bs-gold); margin-bottom: 3rem; transition: width 0.5s var(--ease-premium);
}
.framework-section:hover .heading-underline { width: 120px; }
.framework-card {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-radius: 12px;
    box-shadow: var(--shadow-soft); transition: all 0.5s var(--ease-premium); border: 1px solid rgba(255, 255, 255, 0.6);
}
.framework-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); background: #fff; }
.hover-lift-more:hover .card-icon-wrapper i { color: var(--bs-dark-blue); animation: pulse-icon 1s infinite; }
.card-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--bs-dark-blue); }
.bullet-custom { color: #999; font-size: 0.4rem; vertical-align: middle; margin-top: -2px; }

/* ================= Sub-Page Styles (Updated) ================= */
.page-banner {
    background: linear-gradient(135deg, var(--bs-dark-blue) 0%, #1e3a66 100%);
    padding: 140px 0 80px; margin-bottom: 0;
}
.animated-gradient {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.page-title { font-family: 'Merriweather', serif; font-weight: 700; font-size: 2.8rem; animation: fadeInDown 1s var(--ease-premium); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.sub-page-section { background-color: #fff; }
.about-title, .chairman-main-title { font-family: 'Merriweather', serif; font-weight: 700; color: var(--bs-dark-blue); font-size: 2.5rem; }
.mission-lead { font-size: 1.35rem; font-weight: 500; line-height: 1.6; }
.chairman-img { border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); transition: transform 0.6s var(--ease-premium); }
.chairman-img:hover { transform: scale(1.02); }
.text-gold { color: var(--bs-gold); }
.letter-spacing-2 { letter-spacing: 2px; }

/* About Grid Cards */
.about-grid-card {
    background: #fff; padding: 2rem; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--bs-gold); /* Accent */
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-premium);
}
.about-grid-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(0,0,0,0.05); border-left-color: var(--bs-primary); }
.icon-circle-small {
    width: 50px; height: 50px; background: rgba(191, 161, 95, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s ease;
}
.about-grid-card:hover .icon-circle-small { transform: rotate(15deg) scale(1.1); background: rgba(0, 97, 207, 0.1); color: var(--bs-primary) !important; }

/* ================= Advisors, Partners, Participation ================= */
.advisors-partners-section { background: #fcfdff; }
.advisor-card {
    background: #fff; padding: 25px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s var(--ease-premium); box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.advisor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(0, 97, 207, 0.1); }
.advisor-img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.5s var(--ease-premium);
}
.advisor-card:hover .advisor-img { transform: scale(1.08); border-color: var(--bs-gold); }
.partner-logo { max-height: 45px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all 0.4s; cursor: pointer; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.partner-circle {
    width: 100px; height: 100px; background: rgba(255, 255, 255, 0.5); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-align: center;
    font-size: 0.7rem; color: #999; border: 1px solid rgba(255, 255, 255, 0.8);
    font-weight: 600; transition: all 0.4s; cursor: pointer;
}
.hover-spin-border:hover { border-color: var(--bs-gold); color: var(--bs-dark-blue); transform: rotate(360deg); }

.participation-detailed-section, .participation-cta-section { background: radial-gradient(circle at center, #f0f8ff 0%, #ddeaf6 100%); }
.participation-card {
    background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); border: none; transition: all 0.5s var(--ease-premium);
}
.participation-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); }
.participation-card .card-img-top { height: 220px; object-fit: cover; transition: transform 0.8s var(--ease-premium); }
.participation-card:hover .card-img-top { transform: scale(1.08); }
.btn-gold {
    background-color: var(--bs-gold); color: #fff; border: none; padding: 12px 35px;
    font-weight: 600; border-radius: 6px; position: relative; overflow: hidden; transition: transform 0.3s;
}
.btn-gold:hover { background-color: var(--bs-gold-dark); transform: translateY(-2px); }
.btn-gold::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.6s;
}
.btn-gold:hover::before { left: 100%; }

.cta-card {
    background: rgba(255, 255, 255, 0.6); border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.5); transition: all 0.3s ease;
}
.hover-border-anim:hover { background: rgba(255, 255, 255, 0.95); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: var(--bs-gold); }
.icon-bounce { transition: transform 0.3s; }
.hover-border-anim:hover .icon-bounce { transform: translateY(-5px); }
.text-dark-blue { color: var(--bs-dark-blue); }

/* ================= Footer (Premium Dark) ================= */
.footer-custom { background-color: var(--bs-dark-blue); color: #fff; padding-bottom: 2rem; position: relative; }
.footer-heading {
    text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 1.5rem; color: var(--bs-gold); font-weight: 700;
}
.venue-img-placeholder {
    height: 160px; background: #112240; border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem;
}
.footer-custom input, .footer-custom textarea {
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #ffffff !important; caret-color: var(--bs-gold); border-radius: 4px;
    padding: 12px; font-size: 0.9rem; transition: all 0.3s ease;
}
.footer-custom input::placeholder, .footer-custom textarea::placeholder { color: rgba(255, 255, 255, 0.7) !important; opacity: 1; }
.footer-custom input:focus, .footer-custom textarea:focus {
    background: rgba(255, 255, 255, 0.15); border-color: var(--bs-gold);
    box-shadow: 0 0 0 3px rgba(191, 161, 95, 0.2); outline: none; color: #ffffff !important;
}
.footer-custom input:-webkit-autofill, .footer-custom input:-webkit-autofill:hover, 
.footer-custom input:-webkit-autofill:focus, .footer-custom textarea:-webkit-autofill,
.footer-custom textarea:-webkit-autofill:hover, .footer-custom textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff; -webkit-box-shadow: 0 0 0px 1000px #142240 inset;
    transition: background-color 5000s ease-in-out 0s;
}
.btn-submit {
    background-color: var(--bs-gold); color: var(--bs-dark-blue); font-weight: 700; border-radius: 4px; padding: 10px; width: 100%; border: none; text-transform: uppercase; transition: all 0.3s;
}
.btn-submit:hover { background-color: #fff; color: var(--bs-dark-blue); transform: translateY(-2px); }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 10px; transition: all 0.3s; }
.footer-links a:hover { color: var(--bs-gold); transform: translateX(5px); }
.footer-bottom-bar {
    background-color: #0b162a; width: 100%; padding: 20px 0; margin-top: 4rem; border-top: 1px solid rgba(255,255,255,0.05);
}
.text-light-gray { color: #adb5bd; }

/* Responsive */
@media (max-width: 991px) {
    .hero-section { padding-top: 120px; } 
    .hero-heading { font-size: 2rem; text-align: center; }
    .hero-text, .promoter-text { text-align: center; }
    .d-flex.gap-3 { justify-content: center; }
    .hero-img { margin-top: 3rem; }
    .navbar { backdrop-filter: none; background: #fff; }
    .signature-block { display: flex; flex-direction: column; align-items: center; }
    .chairman-message-part { text-align: center; }
    .footer-heading { margin-top: 1.5rem; text-align: center; }
    .text-start { text-align: center !important; }
    .footer-links a { display: inline-block; margin: 0 10px 10px 0; }
    .stats-bar { padding: 1.5rem; margin-top: 2rem; }
    .border-end-sleek { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 1rem; margin-bottom: 1rem; }
    .mission-lead { text-align: center; }
    .section-title { font-size: 2rem; text-align: center; }
}

/* ================= COMMITTEE PAGE STYLES (UPDATED - COMPACT 50%) ================= */
.committee-grid-section { position: relative; z-index: 2; }
.committee-card {
    background: #fff; padding: 20px 15px; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.4s var(--ease-premium); position: relative; overflow: hidden;
    height: 100%; max-width: 250px; margin: 0 auto;
}
.committee-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 97, 207, 0.12); border-color: rgba(191, 161, 95, 0.3); }
.committee-img-box { width: 80px; height: 80px; margin: 0 auto 15px; position: relative; }
.committee-img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    border: 3px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.4s ease;
}
.committee-card:hover .committee-img { transform: scale(1.05); border-color: var(--bs-light-bg); }
.role-badge {
    display: inline-block; background: linear-gradient(135deg, rgba(191, 161, 95, 0.15), rgba(191, 161, 95, 0.05));
    color: var(--bs-dark-blue); font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; padding: 4px 12px; border-radius: 30px; margin-bottom: 10px; border: 1px solid rgba(191, 161, 95, 0.2);
}
.committee-name { font-family: 'Merriweather', serif; font-weight: 700; color: var(--bs-dark-blue); font-size: 1.05rem; margin-bottom: 4px; }
.committee-card p.text-muted { font-size: 0.8rem; line-height: 1.4; margin-bottom: 12px; }
.committee-card .small i { font-size: 0.9rem; }
.committee-card.featured { padding: 30px 20px; border-top: 4px solid var(--bs-gold); background: linear-gradient(to bottom, #fff 0%, #fcfcfc 100%); max-width: 280px; }
.committee-card.featured .committee-img-box { width: 100px; height: 100px; }
.committee-card.featured .committee-name { font-size: 1.2rem; }

/* ================= NEW APPLY PAGE STYLES ================= */
.nav-pills .nav-link {
    color: var(--bs-dark-blue); background-color: #fff; border: 1px solid #e0e0e0;
    margin-right: 10px; margin-bottom: 10px; border-radius: 50px; padding: 10px 25px;
    font-weight: 600; transition: all 0.3s ease;
}
.nav-pills .nav-link:hover { border-color: var(--bs-gold); transform: translateY(-2px); }
.nav-pills .nav-link.active {
    background-color: var(--bs-gold); color: #fff; border-color: var(--bs-gold);
    box-shadow: 0 4px 15px rgba(191, 161, 95, 0.4);
}
.form-control, .form-select {
    padding: 12px; border-radius: 8px; border: 1px solid #dee2e6; margin-bottom: 1rem; color: var(--bs-text-gray);
}
.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary); box-shadow: 0 0 0 0.25rem rgba(0, 97, 207, 0.15); outline: none;
}
.form-label { font-weight: 500; color: var(--bs-dark-blue); margin-bottom: 0.5rem; }

/* Styles for the section headers in forms */
.form-section-header {
    background-color: var(--bs-gold);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.form-check-input:checked {
    background-color: var(--bs-gold);
    border-color: var(--bs-gold);
}