* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    background: #002ceb;
    min-height: 100vh;
}

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

.cta-btn {
    background: #002ceb;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

.hero {
    padding: 130px 0 180px;
    text-align: center;
    color: white;
    background: transparent;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    color: #fff;
}

.hero p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #fff;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: white;
    color: #1e3c72;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
}

.workflow {
    background: white;
    padding: 80px 0;
    position: relative;
    z-index: -1;
}

.workflow::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 50px 50px 0 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e0e4f7;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #002ceb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.workflow-step h3 {
    font-size: 20px;
    margin: 1rem 0;
    color: #333;
    font-weight: 600;
}

.workflow-step p {
    color: #666;
    line-height: 1.6;
}

.features {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15);
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 1rem;
    background: #002ceb;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* background-clip: text; */
    line-height: normal;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.ai-highlight {
    background: white;
    padding: 80px 0;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.ai-text .highlight {
    color: #1e3c72;
    font-weight: 600;
}

.ai-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0px;
}

.ai-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    /* font-size: 1.1rem; */
    color: #000;
}

.ai-features li::before {
    content: '🤖';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.stats {
    background: #1e3c72;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.testimonial {
    background: #f8f9ff;
    padding: 80px 0;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

.cta-section {
    background: #002ceb;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-weight: 700;
    color: #fff;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    .nav-links {
        display: none;
    }

    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .workflow-steps {
        grid-template-columns: 1fr;
    }
}

.hero-body {
    margin-bottom: 40px;
    margin: 15px auto;
}

.ai-visual h3 {
    margin-bottom: 30px !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.hero-cta .dropdown-menu {
    width: 100%;
    z-index: 111111;
    border: 1px solid #0000004a;
    padding: 0px;
    background: transparent;
    overflow: hidden;
}

.hero-cta button#dropdownMenuButton1, .hero-cta button#dropdownMenuButton1:hover {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-cta .btn-primary {
    font-size: 16px;
    font-weight: 500;
}


.hero-cta .dropdown-menu .dropdown-item {
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #00000059;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    color: #000;
    font-family: var(--default-font);
    overflow: hidden;
}

.hero-cta .dropdown-menu li:last-child .dropdown-item {
    border: 0px;
}