html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

:root {
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --light: #F5F3FF;
    --background: #FAFAFA;
    --text: #111827;
    --muted: #6B7280;
}

body {
    background: var(--background);
    font-family: 'Poppins',sans-serif;
}

 HERO 

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 8%;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    text-align: center;
}

    .hero-right img {
        width: 100%;
        max-width: 600px;
    }

.hero-badge {
    background: var(--light);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 25px;
    color: var(--text);
}

.hero-left p {
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.hero-buttons {
    margin-top: 35px;
}

.btn-primary-custom {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    margin-right: 15px;
}

.btn-secondary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
}

 STATS 

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    padding: 60px 8%;
}

.stat-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .stat-card h2 {
        color: var(--primary);
    }

 FEATURES 

.features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    padding: 0 8% 80px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .feature-card h3 {
        color: var(--primary);
    }

@media(max-width:992px) {

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .stats,
    .features {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

 Floating Shapes 

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .15;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: #7C3AED;
    top: -100px;
    right: -80px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: #A855F7;
    bottom: 50px;
    left: -80px;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: #C084FC;
    top: 50%;
    right: 20%;
}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wave-divider {
    margin-top: -50px;
}

    .wave-divider svg {
        display: block;
        width: 100%;
    }

.image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 650px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(124,58,237,.25);
    transition: .4s;
}

    .hero-image:hover {
        transform: translateY(-8px);
    }

