/* General Styling */
body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(
        to right,
        #b3e5fc,
        #e3f2fd
    ); /* Biru muda ke putih kebiruan */
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 60%;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    text-align: center;
    background: linear-gradient(
        to right,
        #64b5f6,
        #1976d2
    ); /* Gradasi biru lebih menarik */
    color: white;
    padding: 30px;
    border-radius: 10px 10px 0 0;
}

.profile img {
    width: 120px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
}

.profile h1 {
    font-size: 24px;
    margin: 10px 0;
}

.profile p {
    font-size: 18px;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

h2 {
    color: #1565c0;
}

/* Information Cards */
.info {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.card {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 10px;
    width: 30%;
}

.card i {
    font-size: 24px;
    color: #1976d2;
    margin-bottom: 10px;
}

.card p {
    font-weight: bold;
}

/* Skills */
.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #64b5f6;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 45%;
}

/* Education */
.edu-item {
    margin-bottom: 10px;
}

.edu-item h3 {
    color: #1565c0;
}

/* Certifications */
.certifications ul {
    list-style: none;
    padding: 0;
}

.certifications li {
    background: #e3f2fd;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
}

/* Experience */
.exp-card {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Contact Button */
.contact {
    text-align: center;
    padding: 20px;
}

.btn {
    background: #1976d2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #0d47a1;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .info {
        flex-direction: column;
    }

    .card {
        width: 100%;
        margin-bottom: 10px;
    }

    .skill {
        width: 100%;
    }
}
