﻿:root {
    --primary-blue: #0055FF;
    --secondary-blue: #E8F0FF;
    --dark-blue: #003399;
    --light-blue: #A7CBFE;
    --gradient-1: #4158D0;
    --gradient-2: #C850C0;
    --gradient-3: #FFCC70;
    --gradient-4: #4158D0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--light-blue);
    color: #2C3E50;
}

.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 85, 255, 0.1);
    z-index: 1000;
}

.navbar-brand {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-section {
    background: linear-gradient(-45deg, #4158D0, #C850C0, #FFCC70, #4158D0, #0055FF, #E8F0FF, #C850C0 );
    background-size: 400% 400%;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    animation: gradientAnimation 60s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: soft-light;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lead {
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 85, 255, 0.1);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 85, 255, 0.1);
    }

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 85, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.doc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: white !important;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 85, 255, 0.1);
}

    .doc-button:hover,
    .doc-button:focus {
        background-color: var(--dark-blue);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 85, 255, 0.2);
    }

    .doc-button:active {
        transform: translateY(0);
    }

    .doc-button i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

.icon-circle {
    width: 48px;
    height: 48px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .icon-circle i {
        color: var(--primary-blue);
        font-size: 1.5rem;
    }

.animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
}

.flying-email {
    position: absolute;
    font-size: 48px;
    opacity: 0;
    animation: flyEmail 16s linear infinite; 
    z-index: 10000;
    color: black;
}

    .flying-email::after {
        content: '\f0e0'; 
        position: absolute;
        left: 1px;
        top: 1px;
        color: var(--primary-blue);
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }
@keyframes flyEmail {
    0% {
        transform: translate(120vw, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
        transform: translate(100vw, 0) rotate(0deg);
    }

    80% {
        opacity: 0.9;
    }

    100% {
        transform: translate(-120px, 100vh) rotate(-45deg);
        opacity: 0;
    }
}
