* {
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #435ebe, #3f5491);
    position: relative;
}


.hero-section::after {
    animation: waveSlide 1.2s ease-out forwards;
}

@keyframes waveSlide {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #f2f7ff;

    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
}

/* HEADER */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 40px 30px;
}

/* REGISTER LINK */
.register-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    transition: 0.3s;
}

.register-link:hover {
    background: #ffffff;
    color: #435ebe;
}

/* LOGO */
.logo img {
    height: 2rem;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-header {
        padding: 15px 0;
    }

    .register-link {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* IMAGE AREA */
.image-area {
    z-index: 2;
}

/* CONTENT AREA */
.content-area {
    z-index: 3;
    padding-left: 80px;
}

.content-box {
    max-width: 800px;
}

/* TITLE */
.title {
    font-size: 30px;
    font-weight: 500;
    color: #435ebe;
    line-height: 1.4;
}

.title span {
    font-size: 48px !important;
    font-weight: 600;
}

/* DESCRIPTION */
.description {
    font-size: 16px;
    color: #7a7a7a;
    margin: 25px 0 35px;
    line-height: 1.8;
    text-align: justify;
}

/* BUTTON */
.btn-start {
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 30px;
    margin-right: 8px;
    background: #435ebe;
    border: none;
    transition: 0.3s;
}

.btn-start:hover {
    background: #3950a2;
    transform: translateY(-2px);
}

.btn-second {
    padding: 12px 28px;
    font-size: 14px;
    color: #435ebe;
    border-radius: 30px;
    border: 1px solid #435ebe;
    transition: 0.3s;
}

.btn-second:hover {
    color: #ffffff;
    background: #3950a2;
    transform: translateY(-2px);
}

.legal-footer {
    position: fixed;
    bottom: 10px;
    left: 16.7%;
    width: 100%;
    text-align: start;
    font-size: 13px;
    z-index: 1000;
        color: #435ebe;
    background: transparent !important;
}

.legal-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 6px;
    opacity: 0.85;
    color: #435ebe;
}

.legal-footer a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .register-link {
        color: #3950a2;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        padding: 8px 20px;
        border: 1px solid #3950a2;
        border-radius: 20px;
        transition: 0.3s;
    }

    .register-link:hover {
        background: #435ebe;
        color: #435ebe;
    }
    .hero-section {
        background: #f2f7ff;
    }

    .hero-section::after {
        display: none;
    }

    .content-area {
        padding: 40px;
        margin-top: 50px;
        text-align: center;
    }

    .hero-image {
        width: 70%;
        margin-top:-100px;
    }

   .legal-footer {
        position: fixed;      
        bottom: 10px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        background: transparent;
         color: #435ebe; 
    }
}
