/* Custom styles */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Hero section height */
main {
    min-height: 80vh;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Animation for sections */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    background: inherit; /* Ensure background is properly inherited */
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure background colors are properly set for each section */
section#about {
    background: white;
}

section#services {
    background: #f9fafb;
}

section#contact {
    background: #4f46e5;
}
/* Custom glow effect for buttons */
.btn-glow {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

/* Custom bullet points */
.custom-bullet {
    position: relative;
    padding-left: 1.5rem;
}

.custom-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #6366f1;
}