/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background-image: url('/public/storage/files/exports/home_sweet_home.jpeg'); /* Replace with actual background image */
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

.banner-section {
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtT1yxx5o8tf4OTLpYYjSvDLNd8E66Irb0Ww&s');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 60vh;
}

.hero-section .display-4 {
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Feature Cards */
.feature-card {
    border: none;
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .card-title {
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #0069d9;
}

.testimonial-card {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.cta-section {
    background-color: #e9ecef; 
}

/* Footer */
.footer {
    font-size: 0.9rem;
    opacity: 0.8;
    background-color: green;
}

.text-orange {
    color: orange;
}
.text-green {
    color: green;
}