* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fffaff;
    color: #302a35;
    line-height: 1.7;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 250, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0ddea;
}

.navbar {
    max-width: 1100px;
    margin: auto;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    color: #b85c91;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a414c;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #b85c91;
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 25px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    max-width: 1100px;
    margin: auto;
    padding: 130px 25px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    max-width: 600px;
}

.hello {
    color: #b85c91;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 65px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.hero h1 span {
    color: #b85c91;
}

.hero h2 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text > p:not(.hello) {
    color: #756b78;
    max-width: 550px;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    text-decoration: none;
    background: #b85c91;
    color: white;
    padding: 13px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.hero-image {
    width: 330px;
    height: 330px;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 10px;
    background: #f2d5e5;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.section {
    padding: 100px 25px;
    max-width: 1100px;
    margin: auto;
}

.soft {
    max-width: none;
    background: #fff1f8;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: #b85c91;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 35px;
    margin-top: 5px;
}

.about-card {
    max-width: 850px;
    margin: auto;
    background: white;
    border: 1px solid #f0ddea;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(150, 80, 120, 0.06);
}

.about-icon {
    font-size: 45px;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.about-card p {
    color: #756b78;
    margin-bottom: 12px;
}

.cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid #f0ddea;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #756b78;
}

.timeline {
    max-width: 800px;
    margin: auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 7px;
    border-radius: 50%;
    background: #b85c91;
    box-shadow: 0 0 0 6px #f7dfeb;
}

.timeline-content {
    background: white;
    border: 1px solid #f0ddea;
    padding: 25px;
    border-radius: 18px;
    flex: 1;
}

.timeline-content span {
    color: #b85c91;
    font-size: 13px;
    font-weight: 600;
}

.timeline-content h3 {
    margin: 5px 0;
}

.timeline-content p {
    color: #756b78;
}

.future-box {
    max-width: 800px;
    margin: 20px auto;
    padding: 25px;
    background: white;
    border: 1px solid #f0ddea;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.future-number {
    font-size: 25px;
    font-weight: 700;
    color: #b85c91;
}

.future-box h3 {
    margin-bottom: 8px;
}

.future-box p {
    color: #756b78;
}

.contact {
    text-align: center;
}

.contact > p {
    color: #756b78;
}

.contact-list {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-list a {
    text-decoration: none;
    color: #b85c91;
    background: #fff1f8;
    border: 1px solid #f0ddea;
    padding: 12px 25px;
    border-radius: 30px;
}

footer {
    background: #302a35;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
}

footer p:first-child {
    margin-bottom: 5px;
}


/* RESPONSIVE HP */
@media (max-width: 800px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fffaff;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 25px;
        border-bottom: 1px solid #f0ddea;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }

    .hero-image {
        width: 240px;
        height: 240px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-icon {
        text-align: center;
    }
}


@media (max-width: 500px) {

    .section {
        padding: 75px 18px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .future-box {
        flex-direction: column;
        gap: 5px;
    }

    .timeline-item {
        gap: 15px;
    }
}