/* Base styles for body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Navbar styling */
.navbar {
    background-color: #070707; /* Dark background */
    padding: 10px;
}

.navbar a {
    color: rgb(255, 255, 255) !important; /* Ensure the link text is white */
    text-decoration: none;
    margin: 0 15px;
    font-size: 20px; /* Increased font size */
}

.navbar a:hover {
    color: #f4f4f4; /* Slightly lighter color on hover */
    text-decoration: underline;
}

/* Hero Section Styles */
.hero {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: black;
}

.hero-overlay {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5em; /* Increased font size */
    margin-bottom: 20px;
    color: black;
}

.hero p {
    font-size: 1.8em; /* Increased font size */
    margin-bottom: 20px;
    color: black;
}

/* Buttons in Hero Section */
.hero .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* About Us Section */
.about-us {
    padding: 40px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-us .featured-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-us h2 {
    font-size: 3em; /* Increased font size */
    margin-bottom: 20px;
    color: #333;
}

.about-us p {
    font-size: 1.8em; /* Further increased font size */
    line-height: 2; /* Improved line spacing */
    color: #555;
}

/* Our Values Section */
.section-title {
    font-size: 3em; /* Larger headings for sections */
    margin-bottom: 20px;
    color: #333;
}

.section-content p {
    font-size: 3em; /* Increased paragraph font size */
    line-height: 1.8;
    color: #555;
}

/* Why Choose Us Section */
.why-choose-us img {
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-us h4 {
    font-size: 2em; /* Increased title size */
    margin-top: 10px;
    color: #333;
}

.why-choose-us p {
    font-size: 1.4em; /* Balanced paragraph size */
    line-height: 1.8;
    color: #555;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 1.2em;
    color: #555;
}

.form-control {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn {
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Buttons and Links */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        text-align: center;
    }

    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.4em;
    }

    .about-us h2 {
        font-size: 2.5em;
    }

    .about-us p {
        font-size: 1.4em;
    }

    .why-choose-us h4 {
        font-size: 1.8em;
    }

    .why-choose-us p {
        font-size: 1.2em;
    }
}
