* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --max-width: 1200px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
}

.container-custom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.bg-white-subtle {
    background-color: #f9fafb;
}

.bg-white {
    background-color: #ffffff;
}

.section-pd-y {
    padding: 110px 0px;
}

.hero {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    /* Never bigger than 500px */
    height: auto;
    border-radius: 40px;
}

.fs-2-4rem {
    font-size: 2.4rem;
}

.fs-2-5rem {
    font-size: 2.5rem;
}

.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-20px {
    margin-bottom: 20px;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
        margin: 0 auto;
    }

    .btn-hire {
        display: inline-block;
        margin-top: 10px;
    }
}

.border-brand-yellow {
    border: 1px solid #facc15;
}

.btn-hire {
    background-color: #facc15;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
}

.btn-hire:hover {
    background-color: #eab308;
}

.services-subtitle {
    max-width: 600px;
    margin: 15px auto 0;
    color: #6b7280;
    font-size: 1rem;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.projects-subtitle {
    max-width: 620px;
    margin: 15px auto 0;
    color: #6b7280;
    font-size: 1rem;
}

.project-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.project-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #e5e7eb;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.project-stack {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #374151;
}

.project-links {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-project {
    background-color: #facc15;
    border: none;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    color: #000;
}

.btn-project:hover {
    background-color: #eab308;
}

.project-note {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #6b7280;
}

.about-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
}

.about-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.skills-subtitle {
    max-width: 600px;
    margin: 15px auto 0;
    color: #6b7280;
    font-size: 1rem;
}

.tech-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.experience-subtitle {
    max-width: 620px;
    margin: 15px auto 0;
    color: #6b7280;
}

.experience-item {
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-year {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.experience-item h5 {
    font-weight: 700;
    margin: 6px 0 10px;
}

.experience-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.contact-box h2 {
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-box p {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-contact {
    background-color: #facc15;
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    color: #000;
}

.btn-contact:hover {
    background-color: #eab308;
}

.contact-email {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #6b7280;
}