/* General Styles */
:root {
    --primary-teal: #00A99D;
    --secondary-green: #009387;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #F8F9FA;
    --accent-color: #00796B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-teal);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-green);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-teal);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.top-bar .social-icons a {
    margin-right: 15px;
    font-size: 1.1rem;
}

.top-bar .contact-info span {
    margin-left: 20px;
}

/* Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    margin-right: 5px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin: 0;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--secondary-green);
    margin: 0;
}

#main-nav ul {
    display: flex;
}

#main-nav ul li {
    margin-left: 30px;
}

#main-nav ul li a {
    font-weight: 600;
    color: var(--dark-gray);
}

#main-nav ul li a:hover {
    color: var(--primary-teal);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 169, 157, 0.7), rgba(0, 147, 135, 0.7)), url('assets/images/hero.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-teal);
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.about-text p {
    margin-bottom: 20px;
}

.mission-vision {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.mission-vision .box {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    flex: 1;
}

.mission-vision .box h3 {
    margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--secondary-green);
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 30px;
}

#newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-teal);
}

.footer-col p {
    margin-bottom: 10px;
}
.footer-col p:hover{
    color: #009387;
    transform: scale(1.05);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(1) invert(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar{
        display: none;
    }
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .nav-container{
        padding: 0px 0px;
        padding-right: 25px;
    }
    header{
        padding: 0px 0px;
    }
    .logo-text h1{
        font-size: 1.2rem;
    }
    .top-bar .contact-info span {
        display: block;
        margin: 5px 0;
    }

    .menu-toggle {
        display: block;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    #main-nav.active {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
    }

    #main-nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    #main-nav ul li a {
        display: block;
        padding: 15px 20px;
    }

    .about-container {
        flex-direction: column;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    #newsletter-form {
        flex-direction: column;
    }
}
