body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

header {
    background-color: #e0f7fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: #0097a7;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00bcd4;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
    color: #0097a7;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

.hero-content {
    max-width: 500px;
    flex: 1 1 300px;
}

.hero-content h1 {
    font-size: 3em;
    color: #0097a7;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 400px;
}

.btn {
    background-color: #00bcd4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0097a7;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #00bcd4;
    color: #00bcd4;
    padding: 13px 30px;
}

.secondary-btn:hover {
    background-color: #e0f7fa;
}

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 80px 20px;
}



.about-content h2 {
    color: #0097a7;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 400px;
}

.services,
.testimonials {
    padding: 80px 20px;
    text-align: center;
}

.services h2,
.testimonials h2 {
    color: #0097a7;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card h3 {
    color: #0097a7;
    margin-bottom: 15px;
}

.testimonials {
    background-color: #e0f7fa;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.slide {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.slide p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.slide span {
    font-weight: 600;
    color: #0097a7;
}

footer {
    text-align: center;
    padding: 40px 0;
    background-color: #e0f7fa;
    color: #0097a7;
}

@media (max-width: 1024px) {

    .hero-content,
    .about-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-image img,
    .about-image img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #e0f7fa;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hero,
    .about {
        flex-direction: column;
    }

    .hero-image,
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
}

/* style.css (Shared CSS for all pages) */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

header {
    background-color: #e0f7fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: #0097a7;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00bcd4;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
    color: #0097a7;
}

.btn {
    background-color: #00bcd4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0097a7;
}

footer {
    text-align: center;
    padding: 40px 0;
    background-color: #e0f7fa;
    color: #0097a7;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #e0f7fa;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }
}

/* About Page CSS */
.about-page {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-page h2 {
    color: #0097a7;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-section {
    margin-top: 50px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Services Page CSS */
.services-page {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-page h2 {
    color: #0097a7;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card h3 {
    color: #0097a7;
    margin-bottom: 15px;
}

/* Contact Page CSS */
.contact-page {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-page h2 {
    color: #0097a7;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #0097a7;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form h3 {
    color: #0097a7;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
}