/* CSS (assets/css/index.css) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #5A2A9B;
    --secondary-color: #c69fff;
    --other-color: #ff00e1;
    --third-color: #ff9f03;
    --gradient-color: linear-gradient(to right, #5A2A9B, #ff00e1);
    --text-color: #2f0025;
    --light-text: #303030;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-color);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
nav {
    background: var(--primary-color);
    padding: 20px 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar_img img {
    width: 8rem;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--other-color);
}

#navbar_btn .btn {
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

#navbar_btn .btn:hover {
    background-color: var(--other-color);
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header */
header {
    padding: 110px 50px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.header_content {
    flex: 1;
    max-width: 600px;
}

.header_content h1 {
    margin-top: 20px;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.header_content p {
    margin-top: 20px;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.cta-primary {
  background: var(--gradient-color);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-secondary {
    color: var(--light-text);
    font-weight: 500;
}

.cta-secondary span {
    color: var(--primary-color);
    font-weight: 700;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.header_img {
    flex: 1;
    text-align: center;
}

.header_img img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    background: var(--gradient-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    color: var(--light-text);
    font-size: 0.95rem;
}



/* Earn Money */
.earn-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.earn-option {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 330px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.earn-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: rgba(90, 42, 155, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.earn-option h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.earn-option p {
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 550;
    margin-bottom: 10px;
}

.earn-option a {
    font-size: 1rem;
    font-weight: 600;
    background-image: var(--gradient-color);
    padding: 4px 10px;
    border-radius: 10px;
    color: white;
}

.earn-option a:hover {
    background-color: var(--other-color);

}


/* Testimonials */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial p {
    color: var(--light-text);
    font-style: italic;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: normal;
}


/* FAQ */
.faq-container {
    max-width: 90%;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--light-text);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* Call to Action */
#call-to-action {
    text-align: center;
    background: var(--light-bg);
    padding: 80px 0;
    margin: 80px 0;
}

#call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

#call-to-action p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
#footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-about {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    min-width: 200px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.footer-contact ul li i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
    }
    
    .header_content {
        margin-bottom: 50px;
    }
    
    .stats {
        justify-content: center;
    }
    

    .cta-buttons {
        align-items: center;
    }

    .cta-primary {
        text-align: center;
        margin: 0 auto; 
    }


    #download-app {
        flex-direction: column;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }

        .navbar_content {
        display: none;
    }
    
    #navbar_btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

}

@media (max-width: 768px) {

    
    .header_content h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        align-items: center;
    }

    .cta-primary {
        text-align: center;
        margin: 0 auto; 
    }


    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 15px 20px;
    }
    
    .header_content h1 {
        font-size: 1.8rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
}




































/* Add these new styles to your existing index.css file */

/* Page Header Styles */
.page-header {
    padding: 120px 0 10px;
    display: block;
    background: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}





.cta-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  
}

.cta-btn-primary {
  background: var(--gradient-color);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  width: fit-content;
  text-align: center;   
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary {
    color: var(--light-text);
    font-weight: 500;
}

.cta-btn-secondary span {
    color: var(--primary-color);
    font-weight: 700;
}






/* Content Section Styles */
.content-section {
    padding: 60px 0;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-block {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-block h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.content-block p, .content-block ul {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-block ul {
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 10px;
}

/* Pricing Table Styles */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: white;
}

.pricing-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.pricing-table tr:hover {
    background-color: rgba(90, 42, 155, 0.05);
}

/* Earn Options Grid */
.earn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.earn-grid-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.earn-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.earn-grid-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.earn-grid-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.earn-grid-item p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.earn-grid-item .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 20px 10px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .pricing-table {
        display: block;
        overflow-x: auto;
    }
}