
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    overflow: hidden; /* Prevent scrolling during preloader */
}

/* Preloader Styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#preloader img {
    width: 100px;
    animation: rollShakeDance 3s infinite;
}

@keyframes rollShakeDance {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    100% { transform: rotate(0deg) translate(0, 0) scale(1); }
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #388E3C !important;
    font-weight: bold;
}

.nav-link {
    color: #333 !important;
    font-weight: bold;
}

.nav-link:hover {
    color: #43A047 !important;
}

/* Hero Section */
.hero-section {
    background: url('hero-banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    animation: fadeInDown 1s ease-in-out;
}

.hero-section p, .hero-section .btn {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out;
}

.btn {
    background-color: #43A047; /* Vibrant green */
    border: none;
    color: #fff;
    border-radius: 5px;
    width: 100%; /* Full width on smaller devices */
    max-width: 200px;
    font-size: 1rem;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.btn:hover {
    background-color: #2E7D32; /* Slightly darker green */
    color: #FFD700; /* Soft yellow for hover text */
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    background-color: #e8f5e9;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #43A047; /* Match button green */
}

.service-card {
    border: none;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h5 {
    font-size: 1.2rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* About Us Section */
.about-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #43A047;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.about-section img {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #43A047;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial h5 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #388E3C;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #FFD700;
}
