* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #222;
}


nav {
    background: #111;
    color: white;
    padding: 15px 0;
}

nav .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #00adb5;
}

/* =====================
   HERO SECTION
===================== */
.hero {
    background: #00adb5;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

/* =====================
   ABOUT
===================== */
.about p {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* =====================
   SERVICES
===================== */
.services .service-box {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service {
    background: white;
    padding: 20px;
    flex: 1 1 30%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* =====================
   PARTNERS
===================== */
.partners .logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.logos div {
    background: white;
    padding: 20px;
    flex: 1 1 150px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* =====================
   PORTFOLIO
===================== */
.portfolio .projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project {
    background: white;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials .testimonial {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* =====================
   CTA
===================== */
.cta {
    background: #222;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #00adb5;
    color: white;
    cursor: pointer;
}

.cta button:hover {
    background: #007f85;
}

a{
    text-decoration: none;
    color: white;
    font-size: bold;
}

.btn{ 
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #1d484b;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}
 .btn:hover {
    background: #007f85;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* =====================
   MEDIA QUERIES
===================== */

/* Tablets */
@media (max-width: 992px) {
    .portfolio .projects {
        grid-template-columns: repeat(2, 1fr);
    }

    .services .service-box {
        flex-direction: column;
    }
}


@media (max-width: 600px) {
    nav .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .portfolio .projects {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }
}
