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

body {
    background-color: var(--nesthub-light-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    display: flex;
    flex-direction: column;
    overflow: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh !important;
} 

html {
    overflow: auto !important;
    height: auto !important;
}

/* Enable scrollbar */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    scrollbar-width: thin !important;
    display: block !important;
} 

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 100vh;
    overflow-y: visible !important;
    
}

/* 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;
}

/* Register route */

.bg-nesthub-primary {
    background-color: var(--nesthub-primary) !important;
}

.bg-nesthub-light {
    background-color: var(--nesthub-light) !important;
}

.text-nesthub-primary {
    color: var(--nesthub-primary) !important;
}

.text-nesthub-secondary {
    color: var(--nesthub-secondary) !important;
}

.text-nesthub-accent {
    color: var(--nesthub-accent) !important;
}

.btn-nesthub-primary {
    background-color: var(--nesthub-primary);
    border-color: var(--nesthub-primary);
    color: white;
}

.btn-nesthub-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
}

.border-dashed {
    border: 2px dashed #dee2e6;
    border-radius: 0.375rem;
}

.cursor-pointer {
    cursor: pointer;
}

.nav-pills .nav-link.active {
    background-color: var(--nesthub-primary);
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--nesthub-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step-icon.active {
    background-color: var(--nesthub-primary);
    color: white;
}

.form-section {
    transition: all 0.3s ease;
}

/* /Register route */