/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navigation Bar */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

nav .menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav .menu li {
    position: relative;
}

nav .menu li a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    transition: color 0.3s;
}

nav .menu li a:hover {
    color: #00aaff;
}

/* Button */
.consult-button {
    background-color: #00aaff;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.consult-button:hover {
    background-color: #0077cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav .menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .consult-button {
        margin-top: 10px;
    }
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f4f4f9;
}

.hero-content {
    max-width: 50%;
    text-align: left;
    animation: slideIn 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #00aaff;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0077cc;
}

.hero-image {
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
    }
}
/* Who We Are Section */
.who-we-are {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 50px 20px;
    background-color: #ffffff;
}

.who-image {
    max-width: 45%;
    animation: fadeIn 1.5s ease-in-out;
}

.who-image img {
    width: 100%;
    border-radius: 10px;
}

.who-content {
    max-width: 50%;
    text-align: right;
}

.who-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.who-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-we-are {
        flex-direction: column;
        text-align: center;
    }

    .who-image, .who-content {
        max-width: 100%;
    }

    .who-content h2 {
        font-size: 1.8rem;
    }

    .who-content p {
        font-size: 1rem;
    }
}

/* Our Services Section */
.our-services {
    padding: 50px 20px;
    background-color: #f4f4f9;
    text-align: center;
}

.our-services h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px); /* Adjust to fit three cards in a row */
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0077cc;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #ffffff;
}

.choose-image {
    max-width: 45%;
    animation: fadeIn 1.5s ease-in-out;
}

.choose-image img {
    width: 100%;
    border-radius: 10px;
}

.choose-content {
    max-width: 50%;
    text-align: left;
}

.choose-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.choose-content ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.choose-content ul li {
    margin-bottom: 10px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us {
        flex-direction: column;
        text-align: center;
    }

    .choose-image, .choose-content {
        max-width: 100%;
    }

    .choose-content h2 {
        font-size: 1.8rem;
    }

    .choose-content ul {
        padding-left: 10px;
    }
}
/* Reviews Section */
.reviews-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.reviews-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 20px;
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex-shrink: 0;
}

.review-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #0077cc;
}

.client-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.client-info p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Carousel Controls */
.carousel-controls {
    margin-top: 20px;
}

.carousel-controls button {
    background-color: #0077cc;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-controls button:hover {
    background-color: #005fa3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }

    .carousel {
        flex-direction: column;
    }
}
/* Contact Form Section */
.contact-form-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    margin-top: 50px; /* Creates space between this section and the footer */
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form-text {
    flex: 1;
    min-width: 300px;
}

.contact-form-text h2 {
    font-size: 28px;
    font-weight: bold;
}

.contact-form-text p {
    font-size: 16px;
    color: #333;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form form button:hover {
    background-color: #45a049;
}

/* Footer Section */
.footer {
    background-color: #333; /* Dark background color */
    color: #fff;
    padding: 40px 0;
    width: 100%;
    margin-top: 50px; /* Ensures there is space between the form and footer */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact,
.footer-hours {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact p,
.footer-hours p {
    font-size: 16px;
}

.footer-contact a,
.footer-hours a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-hours a:hover {
    text-decoration: underline;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo h1 {
        font-size: 22px;
    }

    .footer-links ul li a,
    .footer-contact p,
    .footer-hours p {
        font-size: 14px;
    }

    .contact-form-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-text,
    .contact-form {
        flex: 1;
        min-width: 300px;
    }
}

html {
    scroll-behavior: smooth;
}

