/* style.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

.gold {
    color: #d4af37;
}

.bg-gradient-luxury {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2333 100%);
}

.profile-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(212 175 55 / 0.25);
}

section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
}

    /* Agar aur tight chahiye */
    /* section { padding-top: 40px !important; padding-bottom: 40px !important; } */

 #profiles, #gallery, #pricing {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
 }


/* Color when a user hovers over the link */
a:hover {
  color: #d4af37; 
}