/* ==== GLOBAL ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffffff;
    color: #111;
    scroll-behavior: smooth;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* ==== NAVBAR (Glass White Version) ==== */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 18px 30px 18px 30px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(200, 200, 200, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #f10707;
    font-size: 28px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
}

.nav-links a:hover {
    color: #ff4f4f;
}

/* BUTTONS */
.btn {
    background: #ff4f4f;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: linear-gradient(45deg, #ff6f61, #ff9a8b);
}


.btn-secondary {

    border: 2px solid #ff4f4f;
}

.btn-secondary:hover {
    background: #e03939;
}

/* ==== HERO SECTION ==== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
}

.hero-buttons {
    margin: 14px 0;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.deal {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
}

/* ==== FEATURES ==== */
.features {
    margin-top: 80px;
    padding: 40px 0;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ==== HELP SECTION ==== */
.help-section {
    margin-top: 90px;
    padding: 80px 30px;
    background: #fafafa;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eee;
}

.help-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-subtext {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.help-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 8px;
    background: #ff4f4f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.help-footer-text {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

/* FAQ */
.faq-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    background: #f7f7f7;
    font-size: 16px;
    border: none;
    outline: none;
}

.faq-question:hover {
    background: #ececec;
}

.faq-answer {
    font-size: small;
    font-weight: normal;
    color: black;
    display: none;
    padding: 15px;
    background: white;
    border-top: 1px solid #ddd;
}


/* ==== CONTACT ==== */
.contact {
    margin-top: 100px;
    padding: 40px 0;
    background: #fafafa;
    /* optional light background */
    border-radius: 12px;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    font-size: 18px;
}

.contact-info p {
    margin-bottom: 12px;
    color: #333;
}

.contact-image {
    flex: 1;
    text-align: right;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-image {
        /* display: none; */
        text-align: center;
        /* margin-top: 20px; */
    }
}


/* CTA */
.cta {
    margin-top: 90px;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #000;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta {
    margin-top: 90px;
    padding: 70px 20px 80px;
    /* bottom padding बढ़ाया */

    color: #050101;
    text-align: center;
    border-radius: 14px;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 35px;
    /* Extra spacing for button नीचे */
}

.cta-btn {
    margin-top: 20px;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 8px;
}



/* FOOTER */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 25px;
    background: #111;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- GENERAL STYLES ---------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #1a1a1a;
}

.features {
    padding: 4rem 1rem;
    background-color: #fff;
}

/* ---------- FEATURE BOXES ---------- */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.box {
    background-color: #f1f1f1;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.box h3 {
    margin: 0;
    font-size: 1.1rem;
}

/* Hover effect */
.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }

    .feature-boxes {
        gap: 1rem;
    }

    .box h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

/* ===== GENERAL UPDATES ===== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f2f2f8;
    color: #111;
}

/* ==== HERO SECTION === */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ff6f61, #ff9a8b);
    color: #fff;
    border-radius: 20px;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Hero buttons */
.hero-buttons .btn {
    margin-right: 15px;
}


/* ==== DYNAMIC STYLING ==== */
#problems {
    background: #ffe6e6;
}

#solutions {
    background: #e6fff0;
}

#artist-benefits {
    background: #e6f0ff;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    border-left: 6px solid #ff4f4f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.box h3 {
    font-size: 1.1rem;
    margin-top: 15px;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.box::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: -20px;
    left: calc(50% - 30px);
    background: rgba(255, 79, 79, 0.2);
    z-index: 0;
}

/* Colored circles for Solution & Artist Benefits */
#solutions .box::before {
    background: rgba(0, 200, 100, 0.2);
}

#artist-benefits .box::before {
    background: rgba(0, 120, 255, 0.2);
}

/* ==== HELP SECTION ==== */
.help-section {
    padding: 80px 30px;
    background: #fff8e6;
    border-radius: 20px;
    border: 1px solid #ffe6b3;
    text-align: center;
    margin: 80px 0;
}

/* ==== CONTACT ===== */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.contact-info {
    flex: 1 1;
}

.contact-image {
    flex: 1 1;
}

.contact-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* ==== CTA ==== */
.cta {
    background: linear-gradient(135deg, #ff9a8b, #ff6f61);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    margin: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* ==== FOOTER ==== */
.footer {
    text-align: center;
    padding: 30px;
    background: #111;
    color: #fff;
    border-radius: 20px 20px 0 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .feature-boxes {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* -------------------- HAMBURGER MENU -------------------- */
#menu-toggle {
    display: none;
}

.hamburger {
    font-size: 28px;
    color: #ff4f4f;
    display: none;
    cursor: pointer;
}

/* -------------------- RESPONSIVE NAV (MOBILE/TABLET) -------------------- */
@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 99;
    }

    #menu-toggle:checked~.nav-links {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .navbar {
        position: relative;
    }
}

/* -------------------- RESPONSIVE HERO SECTION -------------------- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 300px;
    }
}

/* -------------------- SMALL DEVICES -------------------- */
@media (max-width: 500px) {
    .hero-text h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}