/* Banner Section */
.hero-banner {
    position: relative;
    background: #0d47a1;
    height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Pattern (Ripples/Curves) */
.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, transparent 40%, rgba(255, 255, 255, 0.02) 41%, transparent 42%);
    background-size: 100% 100%, 200px 200px;
    z-index: 1;
    pointer-events: none;
}

.banner-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

/* Left Content */
.banner-content {
    max-width: 650px;
    color: white;
}

.banner-content h1 {
    font-size: 48px;
    /* Exact size requested */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.banner-content p {
    font-size: 16px;
    /* Exact size requested */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #00bcd4; /* Example primary color */
    border: 1.5px solid #00bcd4;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
     background: white;
    color: #0d47a1;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border: 1.5px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: white;
    color: #0d47a1;
}

.trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.trust-bar .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Right Image with Curved Transition */
.banner-image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 2;
}

.banner-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This creates the smooth curved edge */
    clip-path: ellipse(85% 100% at 95% 50%);
}

/* Overlay to blend image with blue */
.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0d47a1 0%, rgba(13, 71, 161, 0) 40%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        height: auto;
        padding: 100px 0;
    }

    .banner-container {
        padding: 0 30px;
    }

    .banner-content h1 {
        font-size: 48px;
    }

    .banner-image-area {
        width: 100%;
        opacity: 0.4;
        z-index: 1;
    }

    .banner-image-area img {
        clip-path: none;
    }
}
