/* Custom Styles */
.hero-section {
    background: linear-gradient(to right, #0d6efd, #6610f2);
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* About Section Background */
.services-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Services Section Background */
.testimonials-section {
    background-color: #e9ecef;
    padding: 60px 0;
}

/* Why Choose Us Section Background */
.cta-section {
    background-color: #0d6efd;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Footer Background */
footer {
    background-color: #212529;
    color: white;
    padding: 20px 0;
    text-align: center;
}


 /* Custom background colors */


/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out both;
}

/* General hover effect for cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3), 0 4px 10px rgba(40, 167, 69, 0.3);
}

/* Adding theme-specific border and text colors */
.card:hover .card-title {
    color: #007bff; /* Bootstrap primary color */
    text-decoration: underline;
}

.card:hover .card-text {
    color: #28a745; /* Bootstrap success color */
}

/* Anchor styling to avoid text-decoration */
a.text-decoration-none:hover {
    text-decoration: none;
}

