/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #c9ea7b, #f3eef5);
    color: #2d3436;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================
   Navbar
========================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #4b3f72;
}

.logo span {
    color: #bada55;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #4d3f87;
    transition: 0.3s ease;
}

/* Underline Effect */
.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #bada55;

    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links .active {
    color: #bada55;
}

/* =========================
   Hero Section
========================= */
.hero {
    min-height: 85vh;
    padding: 0 8%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;

    animation: fadeInUp 1s ease;
}

/* Badge */
.badge {
    display: inline-block;

    margin-bottom: 20px;
    padding: 8px 20px;

    border-radius: 50px;

    background: rgba(186, 218, 85, 0.15);

    color: #6c8e00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.hero h1 {
    margin-bottom: 25px;

    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;

    color: #2d3436;
}

.hero h1 span {
    background: linear-gradient(90deg, #4b3f72, #bada55);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.hero p {
    margin-bottom: 40px;

    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
}

/* =========================
   Buttons
========================= */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;

    padding: 15px 35px;

    border-radius: 50px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary {
    background: #bada55;
    color: #fff;

    box-shadow: 0 8px 15px rgba(186, 218, 85, 0.2);
}

.btn-primary:hover {
    background: #4b3f72;
}

/* Outline Button */
.btn-outline {
    border: 2px solid #4b3f72;
    color: #4b3f72;
}

.btn-outline:hover {
    background: #4b3f72;
    color: #fff;
}

/* Hover Effect */
.btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* =========================
   Animation
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 25px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}