.hero-banner {
    position: relative;
     min-height:550px;
    padding:70px 0;
    background: linear-gradient(90deg,
            #edf7ff 0%,
            #f5f0ff 100%);
    overflow: hidden;
}

/* Large Center Circle */
.hero-banner::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 450px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
}

/* Right Top Purple Circle */
.hero-banner::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(161, 97, 255, 0.12);
    border-radius: 50%;
    right: 80px;
    top: 180px;
}

.hero-container {
    width:100%;
    margin: 0 auto;
    padding: 42px 15px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px !important;
    line-height: 1.12;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    color: #2f2f2f;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Outline Button */
.btn-outline {
    padding: 16px 35px;
    border: 2px solid #0d6efd;
    border-radius: 50px;
    text-decoration: none;
    color: #0d6efd;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.btn-outline:hover {
    background: #0d6efd;
    color: #fff;
}

/* Blue Button */
.btn-primary {
    padding: 16px 35px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .25);
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {

    .hero-banner {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-banner::before,
    .hero-banner::after {
        display: none;
    }
}