*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #F5F5F5;
    color:#222222;
}

/* SCROLL PROGRESS */
.scroll-progress{
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #C13584;
    z-index: 2000;
}

/* STICKY NAVBAR */
.navbar{
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
}

/* HAMBURGER MEUN */
.menu-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Navbar */

.navbar{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: white;
}

.navbar ul{
    display: flex;
    list-style: none;
    gap: 25px;
}

.navbar a{
    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

.navbar a.active{
    color: #C13584;
    font-weight: bold;
}

.logo{
    font-size: 24px;
    font-weight: bold;
    color: #C13584;
}

/* Hero */

.hero{
    padding: 100px 10%;
    background: #F5F5F5;
}

.hero-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text{
    flex: 1;
}

.hero-text h1{
    font-size: 48px;
    margin-bottom: 20px;
    color: #222;
}

.hero-text p{
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.hero-button{
    display: flex;
    gap: 20px;
}

.btn-primary{
    background: #C13584;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary{
    border: 2px solid #C13584;
    color: #C13584;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-image{
    flex: 1;
    text-align: center;
}

.hero-image img{
    width: 300px;
    max-width: 100%;
}

/* Features Section */
.features{
    padding:80px 10%;
    text-align:center;
    background: white;
}

.features h2{
    font-size: 36px;
    margin-bottom: 40px;
}

.feature-container{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.feature-card{
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card h3{
    margin-bottom: 15px;
    color:#C13584;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* How it works */
.how-it-works{
    padding: 80px 10%;
    text-align: center;
    background: #F5F5F5;
}

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

.steps{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.step{
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.step h3{
    color: #C13584;
    margin-bottom: 15px;
}

/* Waitlist section */
.waitlist{
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #C13584, #833AB4);
    color: white;
}

.waitlist h2{
    font-size: 32px;
    margin-bottom: 10px;
}

.waitlist p{
    margin-bottom: 30px;
    font-size: 18px;
}

.waitlist-form{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.waitlist-form input{
    padding: 14px;
    width: 280px;
    border: none;
    border-radius: 30px;
}

.waitlist-form button{
    background: white;
    color: #C13584;
    font-weight: bold;
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.waitlist-form button:hover{
    transform: scale(1.05);
}

/* Footer*/
.footer{
    background: #333333;
    color: white;
    padding: 60px 10% 20px;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h2{
    color: #C13584;
    margin-bottom: 10px;
}

.footer-links h3{
    margin-bottom: 10px;
}

.footer-links{
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    background: #111;
}

.footer-links ul{
    list-style: none;
}

.footer-links a{
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover{
    color: #C13584;
}


.footer-social h3{
    margin-bottom: 10px;
}

.footer-social a{
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-social a:hover{
    color: #C13584;
}

.footer-copy{
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/*Mobile Responsive Design*/
@media (max-width: 768px) {

    #navbar{
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #111;
        padding: 20px 0;
    }

    #navbar.active{
        display: block;
    }

    .nav-links{
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links li{
        margin: 15px;
    }

    .menu-toggle{
        display: block;
    }

    .nav-links.active{
        display: flex;
    }

    .navbar{
        flex-direction: column;
        align-items: center;
    }

    .navbar ul{
        flex-direction: column;
        gap: 10px;
    }

    .hero-container{
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons{
        justify-content: center;
    }

    .feature-container{
        flex-direction: column;
    }

    .step{
        flex-direction: column;
    }

    .video-container{
        flex-direction: column;
        align-items: center;
    }

    .video-card{
        width: 90%;
    }

    .waitlist-form{
        flex-direction: column;
        align-items: center;
    }

    .waitlist-form input{
        width: 90%;
    }

    .about-grid{
        flex-direction: column;
        align-items: center;
    }

    .investor-grid{
        flex-direction: column;
        align-items: center;
    }
}

.section{
    padding: 80px 10%;
}

h2{
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.video-profiles{
    background: #F5F5F5;
    padding: 80px 10%;
    text-align: center;
}

.video-container{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-card{
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.video-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-card video{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-card h3{
    margin-top: 15px;
}

.video-card p{
    padding: 10px 20px 20px;
    color: #555;
}

.about-hero{
    background: linear-gradient(135deg, #C13584, #833AB4);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1{
    font-size: 40px;
    margin-bottom: 10px;
}

.about-content{
    padding: 80px 10%;
}

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

.about-grid div{
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
}

/* INVESTOR PAGE */
.investor-hero{
    background: linear-gradient(135deg, #C13584, #833AB4);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.investor-content{
    padding: 80px 10%;
    text-align: center;
}

.investor-grid{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.investor-grid div{
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 300px;
}

.investor-contact{
    text-align: center;
    padding: 80px 20px;
    background: #F5F5F5;
}

.investor-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #C13584;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* CONTACT PAGE */
.contact-hero{
    background: linear-gradient(135deg, #C13584, #833AB4);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.investors-section{
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-section{
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form button{
    padding: 12px;
    background: #C13584;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover{
    background: #a92c72;
}

/* FAQ PAGE */
.faq-hero{
    background: linear-gradient(135deg, #C13584, #833AB4);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.faq-section{
    padding: 80px 10%;
    max-width: 900px;
    margin: auto;
}

.faq-question{
    color: white;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover{
    background: rgba(255,255,255,0.05);
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #d1d5db;
    transition: all 0.4s ease;
}

.faq-answer.active{
    max-height: 300px;
    padding: 20px;
}

.no-results{
    text-align: center;
    margin-top: 20px;
    color: white;
}

.faq-feedback{
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.faq-feedback button{
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    background: #2563eb;
    color: white;
    transition: 0.3s;
}

.faq-feedback button:hover{
    transform: scale(1.05);
}

.faq-item{
    background: #111827;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.faq-item h3{
    margin-bottom: 10px;
}

/* STATISTIC SECTION */
.stats-section{
    padding: 80px 10%;
    text-align: center;
    background: #ffffff;
}

.stats-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat{
    background: #F5F5F5;
    padding: 30px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat h3{
    font-size: 36px;
    color: #C13584;
}


/* PHONE FLOAT ANIMATION */
@keyframes floatphone {
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

.hero-image img{
    width: 300px;
    max-width: 100%;
    animation: floatphone 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* LEGAL PAGE STYLING */
.page-header-guidelines{
    background: #C13584;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header-guidelines h1{
    font-size: 40px;
}

.page-header{
    background: #C13584;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1{
    font-size: 40px;
}

.content{
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.8;
    font-size: 17px;
    color: #333;
}

.content h2{
    margin-top: 30px;
    color: #C13584;
}

.content p{
    margin-top: 10px;
    text-align: center;
}

.download-section{
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
}

.download-section h2{
    font-size: 36px;
    margin-bottom: 10px;
}

.download-section p{
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.download-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-buttons img{
    width: 180px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-buttons img:hover{
    transform: scale(1.05);
}

/* TESTIMONIALS */
.testimonials{
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.testimonials h2{
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card{
    background: #f5f5f5;
    padding: 25px;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card p{
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card h4{
    color: #C13584;
}

html{
    scroll-behavior: smooth;
}

.suggested-searches{
    margin: 20px 0;
}

.suggestion-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.suggestion-btn{
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    background: #2563eb;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.suggestion-btn:hover{
    transform: scale(1.05);
    background: #1d4ed8;
}