body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #1a1a1a;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: white;
    position: sticky;
    top: 0;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
}

.auth .login {
    margin-right: 20px;
    text-decoration: none;
}

.signup {
    padding: 10px 18px;
    background: #252557;
    color: white;
    border: none;
    border-radius: 5px;
}


/* ============================
      RESPONSIVE MOBILE MENU
   ============================ */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

/* MOBILE SETTINGS */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Hide desktop menu and auth */
    nav,
    .auth {
        display: none;
    }

    /* When active (menu open) */
    nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: white;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .auth.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: white;
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
    }

    /* Reduce navbar padding on mobile */
    .navbar {
        padding: 15px 25px;
    }
}

/* HERO SECTION */
.hero {
    background: #65193D;
    padding: 80px 30px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #252557;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;  /* Allows wrapping on mobile */
}

.hero-images .img,
.hero-images .large {
    object-fit: cover;
    border-radius: 40px;
    transition: 0.3s ease;
}

.hero-images .img {
    width: 230px;
    height: 230px;
}

.hero-images .large {
    width: 260px;
    height: 260px;
    border-radius: 50%;
}

/* ===============================
      MOBILE FRIENDLY HERO
   =============================== */
@media (max-width: 768px) {

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;       /* Scale down smoothly */
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .hero-images {
        gap: 15px;
    }

    /* Scale images down for smaller screens */
    .hero-images .img {
        width: 150px;
        height: 150px;
    }

    .hero-images .large {
        width: 180px;
        height: 180px;
    }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

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

    .hero-images .img {
        width: 120px;
        height: 120px;
    }

    .hero-images .large {
        width: 150px;
        height: 150px;
    }
}


/* HOW IT WORKS */
.how-it-works {
    padding: 70px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    width: 260px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.orange { background: #ff9f50; }
.blue { background: #395b8c; }
.green { background: #3dbf7d; }

.learn-btn {
    text-decoration: none;
    color: #395b8c;
    font-weight: bold;
}

/* BOTTOM SECTION */
.bottom-section {
    display: flex;
    align-items: center;
    padding: 60px;
    gap: 50px;
}

.bottom-img img {
    width: 380px;
    border-radius: 40px;
}

.bottom-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.know-more {
    padding: 12px 20px;
    background: #252557;
    color: white;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 34px; }

    .bottom-section {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
    }
}
.features-section {
    padding: 80px 40px;
    text-align: center;
    background: #ffffff;
}

.features-title {
    font-size: 38px;
    margin-bottom: 10px;
    color: #252557;
}

.features-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 50px;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.feature-card {
    width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #252557;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin: 0 auto 20px;
}

/* Icon Colors */
.icon-purple { background: #7a56d8; }
.icon-orange { background: #ff9f50; }
.icon-blue   { background: #395b8c; }
.icon-green  { background: #3dbf7d; }
.icon-yellow { background: #f8d046; }
.icon-red    { background: #e94f4f; }
.icon-teal   { background: #2bb7a3; }

/* Responsive */
@media(max-width: 768px) {
    .feature-card {
        width: 90%;
    }
}
.pricing-section {
    padding: 80px 40px;
    text-align: center;
    background: #f9f9f9;
    
}

.pricing-title {
    font-size: 38px;
    margin-bottom: 10px;
    color: #252557;
}

.pricing-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

.pricing-container {

    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    width: 300px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    /* position: relative; */
}

.pricing-card.popular {
    border: 2px solid #252557;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #252557;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #252557;
}

.price {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #252557;
}

.price span {
    font-size: 14px;
    color: #555;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
    color: #333;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-features .disabled {
    color: #bbb;
}

.pricing-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: #395b8c;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.pricing-btn.primary {
    background: #252557;
}

.pricing-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media(max-width: 768px) {
    .pricing-card {
        width: 90%;
    }
}
.reviews-section {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.reviews-title {
    font-size: 38px;
    margin-bottom: 10px;
    color: #252557;
}

.reviews-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 50px;
}

/* Container */
.reviews-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* Review Card */
.review-card {
    width: 320px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: left;
}

/* User */
.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ddd;
}

.stars {
    color: #f8d046;
    font-size: 16px;
}

/* Review Text */
.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
    .review-card {
        width: 90%;
    }
}
