/* Adrasa Hero Base */
.adrasa-hero {
    padding: 6rem 0 4rem;
    background: #f3f8fd; /* Light bluish background similar to design */
}

/* Content area */
.adrasa-hero__content {
    max-width: 580px;
}

/* Heading styles */
.adrasa-hero__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 0.92;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
}

.adrasa-hero__title-prefix {
    font-family: 'Instrument Serif', serif; /* Use a serif or script-like font in site */
    font-style: italic;
    font-weight: 500;
    margin-right: 0.25em;
    display: inline-block;
}

.adrasa-hero__title-main,
.adrasa-hero__title-suffix {
    font-family: inherit;
    font-weight: 700;
    display: inline-block;
}

.adrasa-hero__subheading {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 90%;
}

/* Badges row */
.adrasa-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.adrasa-hero__badge {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 42, 96, 0.08);
}

/* Buttons */
.adrasa-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.adrasa-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.adrasa-hero__btn-primary {
    background: #3fb6e2;
    color: #ffffff;
    border: none;
    box-shadow: 0 12px 24px rgba(63, 182, 226, 0.35);
}

.adrasa-hero__btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(63, 182, 226, 0.45);
}

.adrasa-hero__btn-secondary {
    background: transparent;
    border: 1px solid #1d2f66;
    color: #1d2f66;
}

.adrasa-hero__btn-secondary:hover {
    background: #1d2f66;
    color: #ffffff;
}

/* Right image */
.adrasa-hero__image-wrapper {
    text-align: right;
}

.adrasa-hero__image-wrapper img,
.adrasa-hero__image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 42, 96, 0.3);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .adrasa-hero {
        padding: 4rem 0 3rem;
    }

    .adrasa-hero__image-wrapper {
        text-align: center;
        margin-top: 2rem;
    }

    .adrasa-hero__title {
        font-size: 2.1rem;
    }

    .adrasa-hero__subheading {
        max-width: 100%;
    }
}
