
:root {
    --primary: #0066ff; /* Bolt-like blue */
    --primary-light: #e6f0ff;
    --text: #333333;
    --light-text: #777777;
    --bg: #ffffff;
    --header-height: 70px;
    --border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


body {
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    /* width: 90%;
    max-width: 1200px;
    margin: 0 auto; */
}

/* Header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ff6b6b;
}

/* New Hero section styles */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: #3d4853;
    display: flex;
    align-items: center;
    z-index: 0;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 5rem;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: #3d4853;
    display: flex;
    align-items: center;
    z-index: 0;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 5rem;
    overflow-y: auto;
    padding-bottom: 5rem;
}

.hero-container{
    width: 100%;
    color: #3d4853;
    display: flex;
    align-items: center;
    z-index: 0;
    flex-direction: column;
    justify-content: flex-start;
}
.hero-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-text {
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #3d4853;
    text-align: center;
    margin: 0 5%;
}

.hero p {
    font-size: 1.3rem;
    color: #3d4853;
    text-align: center;
    max-width: 450px;
    margin: 0 10%;
}

.cta-button {
    padding: 1rem 2.5rem;
    background-color: #2b8265;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #236e55;
    transform: translateY(-2px);
}

.hero-image {
    width: 50%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content wrapper styles */
.content-wrapper {
    position: relative;
    top: 100vh;
    background-color: white;
    z-index: 1;
}



#login-email:focus{
    pointer-events: none;
    touch-action: none;
}

/* Then enable it when user interacts */
#login-email:focus{
    pointer-events: none;
    touch-action: none;
}

.auth-buttons{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.auth-content{
    width: 100%;
    max-width: 600px;
}

.third-party-auth {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 13px;
}


.loading-indicator {
    background-color: var(--primary-light);
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(67, 97, 238, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Welcome image section - full screen image only */

/* Rest of your existing styles... */
/* [Previous styles for services, about, contact, footer sections remain the same] */

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        
    }
    
    .hero-image {
        width: 80%;
    }



}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 5rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* @media (max-height:700px) {
.hero-container {
        width: 100%;
        height: 100vh;
        color: #3d4853;
        display: flex;
        align-items: center;
        z-index: 0;
        flex-direction: row;
        justify-content: flex-start;
        max-width: 825px;
}
.hero h1,.hero p {
    text-align: left;
    margin: 0;
}
.hero-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-container {
    width: 100%;
    height: 100vh;
    color: #3d4853;
    display: flex;
    align-items: flex-start;
    z-index: 0;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 825px;
    margin: 0 auto;
}

.hero-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 0 2rem;
}

.auth-buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
}


} */


@media (min-width: 770px) and (max-height: 700px) {
    .hero-container {
        width: 100%;
        color: #3d4853;
        display: flex;
        align-items: center;
        z-index: 0;
        flex-direction: row;
        justify-content: flex-start;
        max-width: 825px;
    }
    
    .hero h1, .hero p {
        text-align: left;
        margin: 0;
    }
    
    .hero-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-container {
        width: 100%;
        color: #3d4853;
        display: flex;
        align-items: flex-start;
        z-index: 0;
        flex-direction: row;
        justify-content: flex-start;
        max-width: 825px;
        margin: 0 auto;
    }

    .hero-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0 0 2rem;
    }

    .auth-buttons {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
    }

    .card{
        width: 100%;
        max-width: 825px!important;
        margin: 0 auto;
    }

    .trusted-section {
        text-align: center;
        padding: 40px 20px;
        max-width: 900px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}