/* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 100%);
    color: #1F2937;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 48px; /* 15px 70px */
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
    font-family: Arial, Helvetica, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; 
}

.logo img {
    height: 30px;
    width: 70px;
    border-radius: 50%;
    object-fit: fill;
    /*height: 40px; /* 30px */
   /* width: 40px; /* 30px */
   /* border-radius: 50%;
    object-fit: fill; /* cover */
}

.logo h2 {
    color: #ff69b4; /* bluevoilet then most recent: #4B2E83*/
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

.logo span {
    color: #8A00C4;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.nav-links a:hover {
    color: #ff69b4;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    list-style-type: none;
    position: absolute; 
    display: none;
    background-color: #ff69b4;
    color: #333;
    min-width: 190px; /*190px */
    padding: 20px 0;
    /*top: 38px;*/
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.dropdown-content a {
    color: white;
}

.dropdown-content li {
    padding: 10px 20px;
}

.dropdown-content a:hover {
    color: #333; 
}  

.dropdown:hover .dropdown-content {
    display: block;
}
 
.btn {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    border-radius: 6px;
    margin-left: 15px;
}

.btn-sign-in {
    border: 1px solid #8A00C4;
    color: #8A00C4;
    padding: 5px 12px;
}

.btn-sign-in:hover {
    border: 1px solid #ff69b4;
    background-color: #ff69b4;
    color: white;
}

.btn-get-started {
    background-color: #8A00C4;
    color: white;
    padding: 7px 20px; 
}

.btn-get-started:hover {
    background-color: #ff69b4;
}

.bars {
    display: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links, .nav-buttons, .dropdown-content {
        display: none;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 20px 0;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .bars {
        display: block;
        color: #8A00C4;
    }

    .show {
        display: flex !important;
        gap: 20px;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .nav-buttons a {
        font-weight: lighter;
    }
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

/* Hero Buttons */
.btn-primary {
    /*background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);*/
    background-color: #8A00C4;
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
    /*box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);*/
}

.btn-primary:hover {
    transform: translateY(-3px);
    /*box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);*/
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background-color: #ff69b4;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #8A00C4;
    border: 1px solid #8A00C4;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary a{
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #ff69b4;
    color: #FFFFFF;
    background-color: #ff69b4;
    transform: translateY(-3px);
}
.btn-secondary a:hover{
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0 8rem 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    /*border: 2px solid rgba(124, 58, 237, 0.2);*/
    border: 1px solid #8A00C4;
    border-radius: 50px;
    width: fit-content;
    font-weight: 600;
    /*color: #7C3AED;*/
    color: #8A00C4;
    font-size: 1rem;
}

.hero-badge svg {
    width: 24px;
    height: 24px;
}

.hero-title {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.1;
    /*color: #111827;*/
    color: #000;
    letter-spacing: -0.02em;
}

.active {
    color: #ff69b4;
    font-weight: bold;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    /*color: #4B5563;*/
    color: #333;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Metrics */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #8A00C4;;
}

.metric-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}


.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Success Card */
.success-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-content {
    flex: 1;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.success-text {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-link {
        display: none;
    }

    .hero {
        padding: 3rem 0 5rem 0;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .success-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.25rem;
    }

    .success-title {
        font-size: 1.125rem;
    }

    .success-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .metric-number {
        font-size: 1.75rem;
    }
}

/* For the dynamic text content  */
.dynamic-quote-container {
    position: relative;
    width: 100%;
    height: 2rem; /* adjust based on your font size */
    overflow: hidden;
}

.dynamic-quote {
    position: absolute;
    top: 0;
    left: 100%; /* start off-screen right */
    transition: left 1s ease;
}

.dynamic-quote.active {
    left: 0; /* slide into view */
}

.dynamic-quote.exit {
    left: -100%; /* slide out left */
}