  .footer {
            background: linear-gradient(135deg, #000000, rgba(212, 175, 55, 0.1));
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }

        .footer-title {
            color: var(--primary-gold);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-link:hover {
            color: var(--primary-gold);
        }

        .social-icons a {
            color: var(--text-gray);
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--primary-gold);
        }

          .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
            color: var(--dark-bg);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        select option{
            color:var(--primary-gold) !important
        }
        
       a{
        color: #D4AF37 !important;
        text-decoration: none;
       }
       a.platform-btn {
    color:#000 !important;
}
        
        @media(max-width:767px){
            footer.footer .justify-content-end {
    justify-content:center !important;
    margin-top:10px;
}
.copyright{
    text-align: center !important;
}
        }