/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
}

.logo {
    margin-right: auto;
}

.logo h1 {
    margin: 0;
}

.navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
}

.contact-info {
    margin-left: auto;
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

nav ul li {
    margin-right: 1rem;
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section Styles */
.hero {
    /* background: url('hero-background.jpg') no-repeat center center/cover; */
    background: linear-gradient(135deg, #007bff, #28a745);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

/* .hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
} */


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to improve text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero .btn, .hero .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.hero .btn {
    background-color: #28a745;
    color: white;
    margin-right: 1rem;
}

.hero .btn:hover {
    background-color: #218838;
}

.hero .btn-secondary {
    background-color: #007bff;
    color: white;
}

.hero .btn-secondary:hover {
    background-color: #0056b3;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}


.btn, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    margin-top: 1rem;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.cta {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: white;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta .btn {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
}

.btn {
    background-color: #28a745;
    color: white;
}

.btn-secondary {
    background-color: #007bff;
    color: white;
}

.testimonials {
    background-color: #f8f9fa;
    padding: 2rem;
}

.testimonial {
    max-width: 600px;
    margin: 1rem auto;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer nav ul {
    justify-content: center;
    display: flex;
}

footer nav ul li {
    margin-left: 1rem;
}

footer nav ul li a {
    color: white;
}

/* Services Page Styles */
.services {
    padding: 2rem;
    text-align: center;
    background-color: #f4f4f4;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-item {
    background-color: white;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    flex-basis: 30%;
    text-align: left;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Industries Page Styles */
.industries {
    padding: 2rem;
    text-align: center;
    background-color: #f4f4f4;
}

.industries h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.industry-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.industry-item {
    background-color: white;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    flex-basis: 30%;
    text-align: left;
}

.industry-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.industry-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info {
    margin-left: auto;
    padding-right: 20px;
    color: white;
}
.contact-info p {
    margin: 0;
    font-size: 1rem;
}

/* About Us Page Styles */
.about-us, .leadership, .values {
    padding: 2rem;
    background-color: #f4f4f4;
    margin-bottom: 2rem;
}

.about-us h2, .leadership h2, .values h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-us p, .leadership p, .values p, .values ul {
    font-size: 1.2rem;
    line-height: 1.6;
}

.leader {
    background-color: white;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.values ul {
    list-style-type: none;
    padding-left: 0;
}

.values ul li {
    margin-bottom: 1rem;
}

.values ul li strong {
    color: #007bff;
}

/* Contact Page Styles */
.contact {
    padding: 2rem;
    text-align: center;
    background-color: #f4f4f4;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: #007bff;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form button[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

form button[type="submit"]:hover {
    background-color: #218838;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    form {
        padding: 1rem;
    }

    .contact-info {
        text-align: center;
        margin-top: 1rem;
    }
}

/* Thank You Page Styles */
.thank-you {
    padding: 3rem;
    text-align: center;
    background-color: #f4f4f4;
    min-height: 80vh;
}

.thank-you h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.thank-you p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.thank-you .btn {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.thank-you .btn:hover {
    background-color: #0056b3;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .thank-you {
        padding: 1.5rem;
    }

    .thank-you h2 {
        font-size: 2rem;
    }

    .thank-you p {
        font-size: 1.1rem;
    }
}
