

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.steps li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    counter-increment: step-counter;
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.img-thumbnail {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Add to your style.css */
.golden-opportunity {
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.golden-offer {
    background: linear-gradient(rgba(0,0,0,0.8), url('../images/golden-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin: 2rem 0;
}

.countdown-timer {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

.countdown-item {
    display: inline-block;
    text-align: center;
    padding: 0 1rem;
}

.countdown-item .display-4 {
    font-weight: 700;
    color: #ffc107;
}


/* Add to your style.css */
.golden-opportunity-field {
    border: 2px solid #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
    font-weight: bold;
}

select option[value="GOLDEN_OPPORTUNITY"] {
    font-weight: bold;
    background-color: #fff3cd;
}