﻿/* Reset and Base Styles */
:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
    --green: #1BBD36;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Loader Styles */
.east-flicker-loader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform-origin: center center;
}

.logo-wrapper {
    text-align: center;
}

.logo span {
    font-size: 2.8rem;
    font-weight: bold;
    opacity: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo .black {
    color: #000000;
}

.logo .green {
    color: #1BBD36;
}

.tagline {
    font-size: 2rem;
    color: #1BBD36;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.underline {
    width: 0;
    height: 4px;
    background-color: #0077B5;
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: 0;
}

/* Main Site Styles */
#main-site {
    opacity: 0;
    transition: opacity 1s ease-in;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#app-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

/* Section Styles */
.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 2rem;
}

    .section.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

.section-content {
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn-enter {
    margin-top: 2rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    margin-bottom:1rem;
}

    .btn-enter:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-enter:active {
        transform: translateY(1px);
    }

.btn-enter-primary {
    background-color: #1BBD36;
    color: white;
}

/* Features Section Styles */
.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin: 2rem 0;
    padding-bottom: 1rem;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

    .features-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.feature-card {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    font-size: 2.5rem;
    color: #1bbd36;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-text {
    color: #64748b;
    line-height: 1.6;
}

/* Lottie Animation Styles */
.lottie-animation {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
}

/* Progress Bar Styles */
.progress-container {
    width: 100%;
    max-width: 300px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin: 2rem auto 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary);
    width: 0%;
    transition: width 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-content {
        padding: 1.5rem;
        width: 95%;
    }

    .lottie-animation {
        width: 180px;
        height: 180px;
    }

    .feature-card {
        width: 260px;
        padding: 1.5rem;
    }

    .logo span {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-content {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-enter {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }

    .feature-card {
        width: 240px;
        padding: 1.2rem;
    }
}
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

    .btn-primary:hover {
        background-color: var(--dark-green);
        border-color: var(--dark-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    }

.progress {
    max-width: 500px;
    max-height: 10px;
    margin-left: 20%;
}