
/* Reset default styles */
body, h1, h2, h3, p, ul, li, form {
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%; /* Ensure both html and body elements cover viewport height */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}
/* Global styles */
body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #f7f7f7;
    padding: 1rem 0;
    text-align: center;
}

/* ... Your existing CSS code ... */

/* Sticky Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    position: fixed; /* Change from sticky to fixed */
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar.sticky {
    background-color: #fff; /* Change color when sticky */
}

.navbar ul {
    list-style: none;
    text-align: center;
}

.navbar li {
    display: inline;
    margin-right: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #007bff;
}

/* ... Your existing CSS code ... */


/* ... Your existing CSS code ... */

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    /* Add some styling for better visibility */
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff; /* White color for the menu icon bars */
    margin: 3px 0;
}

/* Adjust styles for small screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.9);
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin-bottom: 10px;
    }
}

/* ... Your existing CSS code ... */






.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 8rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}


/* ... Your existing CSS code ... */

/* Features section styles */
.features {
    background-color: #f7f7f7;
    padding: 5rem 0;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon img {
    max-width: 64px;
}

/* ... Your existing CSS code ... */



.testimonials {
    padding: 5rem 0;
    text-align: center;
    background-color: #f2f2f2;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial .author {
    font-size: 1rem;
    color: #555;
}

.contact {
    padding: 5rem 0;
    text-align: center;
    background-color: #f7f7f7;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button.btn {
    display: block;
    margin: 0 auto;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #333;
    color: #fff;
}

/* ... Add more CSS rules as needed ... */

/* ... Your existing CSS code ... */

/* ... Your existing CSS code ... */

/* ... Your existing CSS code ... */

/* ... Your existing CSS code ... */

/* ... Your existing CSS code ... */

/* ... Your existing CSS code ... */

/* Hero section with background image covering the section */
.hero {
    background: url('images/merakist-jyoSxjUE22g-unsplash.jpg') no-repeat center center;
    background-size: cover;
    color: rgb(49, 49, 49); 
    text-align: center;
    padding: 8rem 0;
    /* Other styles for the hero section */
}

/* Adjust styles for small screens */
@media (max-width: 768px) {
    .hero {
        background-size: contain; /* Change background-size for smaller screens */
        background-repeat: no-repeat; /* Prevent repeating the background image */
        padding: 6rem 0; /* Adjust padding for smaller screens */
    }
}
