/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    font-family: Arial, sans-serif;
    background-color: #838383; /* Replace with your desired background color */
    color: #141313;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the page takes at least the full viewport height */
}





/* Style the header */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2em;
}

#navbar {
    background-color: #141414; /* Navbar background color */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure the navbar is above other elements */
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}



/* Style sections */
section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #050505;
}



@media (max-width: 768px) {
    /* Styles for screens up to 768px wide */
}

@media (max-width: 480px) {
    /* Styles for screens up to 480px wide */
}


/* Style the services section */
#services {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

#services h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

/* Style the services container */
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-column-gap: 20px; /* Space between columns */
    justify-content: center;
}

/* Style each service item */
.service-item {
    width: 100%; /* Each item takes the full width of its container */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    background-color: #828d94; /* Nice blue color */
    text-align: center;
    color: #fff; /* Text color */
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: #2980b9; /* Slightly darker blue color on hover */
}





/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .service-item {
        font-size: 16px; /* Increase font size for smaller screens */
        padding: 10px; /* Reduce padding to create more space for text */
        width: auto; /* Allow items to expand based on content */
        text-align: center; /* Center align text for small screens */
    }

    .service-item h3 {
        font-size: 1.2em; /* Reduce the font size for headings */
        margin-bottom: 10px; /* Add some space between heading and description */
    }

    .service-item p {
        font-size: 14px; /* Reduce the font size for descriptions */
    }
}




/* Style the testimonials section */
#testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

#testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.testimonial img {
    width: 100px;
    border-radius: 50%;
}

.testimonial p {
    color: #666;
}

/* Style the stars container */
.stars {
    color: #f1c40f; /* Star color (yellow) */
    font-size: 24px;
    margin-bottom: 10px;
}

/* Style individual stars */
.star {
    display: inline-block;
    margin-right: 5px;
}



/* Style the About Us section */
#about {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image img {
    width: 300px; /* Set a fixed width for the image */
    height: auto; /* Allow the height to adjust proportionally */
}

.about-text {
    flex-basis: calc(100% - 320px); /* Adjust the width of the text section */
    text-align: left;
}






.about-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}



.contact-form {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}




/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

#projects {
    padding: 40px 0;
}

.project {
    margin-bottom: 30px;
}

.project img {
    max-width: 100%;
    height: auto;
}

.project h3 {
    font-size: 20px;
    margin-top: 10px;
}

.project p {
    font-size: 16px;
}
