/* General Reset for consistent styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    body {
    /* background: url('WhatsApp Image 2025-02-25 at 12.16.16_5b623cf1.jpg') no-repeat center center fixed; */
    background-size: cover;
    opacity: 10; /* Adjust for washout effect */
}

}

/* Navbar Styles */
.navbar {
    background-color: #7bbf7b; /* Soft green background for the navbar */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.navbar .nav-links {
    list-style-type: none;
    display: flex;
}

.navbar .nav-links li {
    margin: 0 1rem;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #f1f1f1; /* Light white color when hovering */
}

/* Home Page Content */
.home-content {
    margin-top: 100px;
    padding: 2rem 3rem;
   /* background-color: #f9f9f9; /* Light background color */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: bold;
}

.home-content p {
    margin-top: 100px;
    font-size: 1.15rem;
    color: #333;
    font-family: 'Georgia', serif; /* Elegant font for body text */
    text-align: justify;
}

.home-content p::first-letter {
    font-size: 2rem;
    font-weight: bold;
    color: #7bbf7b; /* Color to highlight the first letter */
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .navbar .logo {
        font-size: 1.5rem;
    }
    
    .navbar .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar .nav-links li {
        margin: 0.5rem 0;
    }

    .home-content {
        padding: 1rem;
    }
}
footer {
    text-align: center;
    padding: 1rem;
    background-color: #7bbf7b; /* Soft green background for the footer */
    color: white;
    margin-top: 260px;
}
.image-hand {
    margin-top: 10px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 90px;
    border-radius: 100px 100px 100px 100px;
    width: 250px;
    height: 250px;
    position: absolute;
    opacity: 5; /* Makes image slightly transparent */
    z-index: 0; /* Ensures image is behind text */
}