/* Custom styles for Bansi Gold Private Limited */

/* Custom font styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Gold accent for links on hover */
a:hover {
    color: #AF9239;
    transition: color 0.3s ease;
}

/* Button hover effects */
.rounded-full:hover, .rounded-lg:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card hover effects */
.shadow-md:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

/* Custom styling for headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Gold underline for section headings */
.text-center.text-primary {
    position: relative;
    display: inline-block;
}

.text-center.text-primary::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #AF9239;
}

/* Custom styling for the form inputs */
input:focus, textarea:focus {
    border-color: #AF9239;
    box-shadow: 0 0 0 3px rgba(175, 146, 57, 0.2);
}

/* WhatsApp button pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(175, 146, 57, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(175, 146, 57, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(175, 146, 57, 0);
    }
}

.bg-secondary {
    animation: pulse 2s infinite;
}

/* Footer link hover effect */
footer a:hover {
    color: #AF9239;
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #AF9239;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #11153C;
}
