
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Inter:wght@400;700&family=Nunito+Sans:wght@400;700&display=swap');

:root {
    --primary-midnight-blue: #1E3A8A;
    --secondary-vibrant-teal: #14B8A6;
    --accent-golden-amber: #FBBF24;
    --neutral-light-soft-sand: #F5F5F4;
    --neutral-dark-charcoal-gray: #374151;
    --danger-red: #EF4444;
    --gradient-motion: linear-gradient(135deg, #1E3A8A, #14B8A6);
}

body {
    font-family: 'Inter', 'Nunito Sans', sans-serif;
    margin: 0;
    background-color: var(--neutral-light-soft-sand);
    color: var(--neutral-dark-charcoal-gray);
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-midnight-blue);
}

nav {
    background: var(--primary-midnight-blue);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo-group {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    border-radius: 50%; /* Make logo circular if it fits */
}

.nav-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--neutral-light-soft-sand);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links span {
    color: var(--neutral-light-soft-sand);
    margin-right: 1.5rem;
}


.nav-links a {
    margin-left: 1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--neutral-light-soft-sand);
}

.hero {
    width: 100vw;
    background: var(--gradient-motion);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1,
.hero p {
    color: var(--neutral-light-soft-sand);
}

.hero-full {
    height: 100vh;
}

.hero-half {
    height: 50vh;
}

.hero .logo {
    color: var(--neutral-light-soft-sand);
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.hero .tagline {
    color: var(--neutral-light-soft-sand);
    font-size: 1.5rem;
}

.cta-hero {
    background: var(--accent-golden-amber);
    color: var(--primary-midnight-blue);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    display: inline-block;
    border: none;
}

.cta-primary {
    background-color: var(--accent-golden-amber);
    color: var(--primary-midnight-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    font-weight: bold;
}

.cta-secondary {
    background-color: transparent;
    color: var(--secondary-vibrant-teal);
    border: 2px solid var(--secondary-vibrant-teal);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

nav .cta-secondary {
    color: var(--neutral-light-soft-sand);
    border-color: var(--neutral-light-soft-sand);
}


.info-section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-text {
    flex: 1;
    padding-right: 3rem;
    text-align: left;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.pathway-section {
    padding: 4rem 2rem;
    background-color: var(--neutral-light-soft-sand);
}

.pathway {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pathway-stage {
    width: 150px;
    height: 150px;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.pathway-arrow {
    font-size: 2.5rem;
    color: var(--secondary-vibrant-teal);
    margin: 0 1.5rem;
}

.stage-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-vibrant-teal);
    margin-bottom: 0.5rem;
}

.stage-title {
    font-size: 1rem;
    color: var(--neutral-dark-charcoal-gray);
    text-align: center;
}

.keywords-section {
    background: var(--gradient-motion);
    padding: 5rem 2rem;
    text-align: center;
}

.keywords span {
    color: var(--neutral-light-soft-sand);
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 2rem;
}


/* Form styling */
.form-container {
    max-width: 450px;
    margin: 5rem auto;
    padding: 3rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--neutral-dark-charcoal-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-vibrant-teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}


.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #ccc;
}

.google-signin-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #4285F4;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
}

/* Dashboard & Financials */
.progress-section {
    padding: 3rem 2rem;
}

.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 1rem;
}

.progress-bar {
    height: 24px;
    background-color: var(--secondary-vibrant-teal);
    border-radius: 5px;
    text-align: center;
    color: white;
    line-height: 24px;
}

.progress-bar-container.negative .progress-bar {
    background-color: var(--danger-red);
}

.financial-cards {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.financial-cards .card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.financial-cards .card h3 {
    margin-top: 0;
    color: var(--primary-midnight-blue);
}

.financial-cards .card p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-vibrant-teal);
}

.financials-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.financials-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 45%;
}

/* FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.fab {
    background-color: var(--secondary-vibrant-teal); /* Original WhatsApp green: #25D366 */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.fab:hover {
    background-color: #0F766E; /* Darker Teal */
}

.fab-text {
    visibility: hidden;
    width: 160px; /* Increased width */
    background-color: var(--neutral-dark-charcoal-gray);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px; /* Adjusted margin */
    opacity: 0;
    transition: opacity 0.3s;
}

.fab-container:hover .fab-text {
    visibility: visible;
    opacity: 1;
}


/* Responsive Design */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        width: 100%;
    }

    body {
        padding-top: 70px; 
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        background: var(--primary-midnight-blue);
        position: absolute;
        top: 100%;
        left: 0;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links a, .nav-links span {
        margin: 0.5rem 0;
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(245, 245, 244, 0.2);
    }
    
    .feature {
        flex-direction: column;
    }

    .feature-text {
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

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

    .pathway-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .financials-grid {
        flex-direction: column;
    }
}
