/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Navigation Menu */
nav {
    background: #2c3e50;
    color: #fff;
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #1abc9c;
}

/* Hero Section */
.hero-section {
    background: url('hero.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    background-blend-mode: overlay;
    background-color: rgba(44, 62, 80, 0.7);
}

.hero-content {
    max-width: 800px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    background: #1abc9c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #16a085;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background: #ecf0f1;
    color: #333;
    text-align: center;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.service {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #333;
}

/* About Us Section */
.about-section {
    padding: 4rem 2rem;
    background: #fff;
    color: #333;
    text-align: center;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.team-member {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: 45%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: #ecf0f1;
    color: #333;
    text-align: center;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.contact-form input, 
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #1abc9c;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #16a085;
}

/* Login Section */
.login-section {
    padding: 4rem 2rem;
    background: #fff;
    color: #333;
    text-align: center;
}

.login-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.login-form input {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    background: #1abc9c;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-form button:hover {
    background: #16a085;
}

/* Footer Section */
.footer-section {
    background: #2c3e50;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.social-media a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #1abc9c;
}
/* Services Page CSS */

/* General Styles for the Services Section */
.services-section {
    padding: 4rem 2rem;
    background: #f0f4f8;
    color: #333;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

/* Service Card Styles */
.service {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #1abc9c;
}

.service p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Footer Styles */
.footer-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.social-media a {
    color: #ffffff;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #1abc9c;
}
/* Additional Info Section CSS */
.additional-info-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    color: #333;
    text-align: center;
}

.additional-info-section h3 {
    font-size: 2rem;
    color: #1abc9c;
    margin-bottom: 1.5rem;
}

.additional-info-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.additional-info-section p:last-child {
    margin-bottom: 0;
}

/* Styling for better visual consistency */
.contact-form-container {
    margin-top: 2rem;
}

.contact-section {
    padding-bottom: 3rem;
}

.contact-form button {
    background: #1abc9c;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #16a085;
}
/* About Us Section CSS */
.about-section {
    padding: 5rem 3rem;
    background: linear-gradient(to bottom, #e3fdfd, #ffffff);
    color: #333;
    text-align: center;
}

.about-section h2 {
    font-size: 3rem;
    color: #1abc9c;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 3rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
}

.about-content h3 {
    font-size: 2rem;
    color: #16a085;
    margin-bottom: 1.5rem;
}

/* Highlight paragraphs for readability */
.about-content p:hover {
    background-color: #e8f8f5;
    border-left: 4px solid #1abc9c;
    padding-left: 1.5rem;
}

/* Add smooth transition effect for hover */
.about-content p {
    transition: background-color 0.3s, padding-left 0.3s;
}

/* Responsive styling for smaller devices */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-section h2 {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 2rem;
    }

    .about-content h3 {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}


