/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #212B38;
    background: #ffffff;
}


/* Container */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* Header */

header {
    background: #08C6AB;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

header nav {
    margin-top: 10px;
    text-align: center;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

header nav a:hover {
    text-decoration: underline;
}


/* Intro Section */

#intro {
    padding: 60px 0;
    text-align: center;
}

#intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #212B38;
}

#intro p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #08C6AB;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn:hover {
    background: #06a891;
}


/* Portfolios Section */

#portfolios {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

#portfolios h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.portfolio-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: 250px;
    text-decoration: none;
    color: #212B38;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.portfolio-card h3 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.portfolio-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #555;
}


/* Contact Section */

#contact {
    padding: 60px 0;
    text-align: center;
}

#contact h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}


/* Footer */

footer {
    background: #212B38;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}


/* Responsive */

@media(max-width: 768px) {
    .portfolio-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}