.hero-section{
    position:relative;
    overflow:hidden;
    padding:110px 0 80px;
    background:linear-gradient(135deg,#f7fbff 0%,#eef5ff 60%,#ffffff 100%);
}

.hero-subtitle{
    display:inline-block;
    color:#0F4C81;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-title{
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    color:#1E293B;
    margin-bottom:25px;
}

.hero-description{
    font-size:18px;
    line-height:1.8;
    color:#64748B;
    margin-bottom:35px;
}

.btn-primary-custom{
    background:#0F4C81;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary-custom:hover{
    background:#0b3c66;
    color:#fff;
}

.btn-outline-custom{
    margin-left:15px;
    border:2px solid #0F4C81;
    color:#0F4C81;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-outline-custom:hover{
    background:#0F4C81;
    color:#fff;
}

.hero-image-wrapper{
    position:relative;
}

.hero-image{
    border-radius:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:16px;
    padding:18px 24px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.card-1{
    top:30px;
    left:-30px;
}

.card-2{
    right:-20px;
    top:180px;
}

.card-3{
    bottom:30px;
    left:50px;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    opacity:.12;
}

.hero-shape-1{
    width:350px;
    height:350px;
    background:#0F4C81;
    top:-150px;
    right:-120px;
}

.hero-shape-2{
    width:220px;
    height:220px;
    background:#F4B400;
    bottom:-80px;
    left:-60px;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    background: linear-gradient(
        135deg,
        #f7fbff 0%,
        #eef5ff 60%,
        #ffffff 100%
    );
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    position: relative;
    z-index: 2;
}

/* Subtitle */

.hero-subtitle {
    display: inline-block;
    color: #0F4C81;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Title */

.hero-title {
    font-size: clamp(42px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: #1E293B;
    margin: 0 0 25px;
    max-width: 100%;

    /* IMPORTANT for mobile */
    overflow-wrap: anywhere;
    word-break: normal;
}

/* Description */

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #64748B;
    margin: 0 0 35px;
    max-width: 600px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.btn-primary-custom {
    background: #0F4C81;
    color: #fff;
}

.btn-primary-custom:hover {
    background: #0b3c66;
    color: #fff;
}

.btn-outline-custom {
    margin-left: 0;
    border: 2px solid #0F4C81;
    color: #0F4C81;
}

.btn-outline-custom:hover {
    background: #0F4C81;
    color: #fff;
}

/* =========================================
   HERO IMAGE
========================================= */

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

/* Floating cards */

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    z-index: 3;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.card-1 {
    top: 30px;
    left: -30px;
}

.card-2 {
    right: -20px;
    top: 180px;
}

.card-3 {
    bottom: 30px;
    left: 50px;
}

/* =========================================
   DECORATIVE SHAPES
========================================= */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
}

.hero-shape-1 {
    width: 350px;
    height: 350px;
    background: #0F4C81;
    top: -150px;
    right: -120px;
}

.hero-shape-2 {
    width: 220px;
    height: 220px;
    background: #F4B400;
    bottom: -80px;
    left: -60px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .hero-section {
        padding: 90px 0 70px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 17px;
    }

    .card-1 {
        left: -15px;
    }

    .card-2 {
        right: -10px;
    }

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 70px 0 60px;
        text-align: center;
    }

    .hero-section .row {
        row-gap: 45px;
    }

    .hero-section .col-lg-6:first-child {
        width: 100%;
    }

    .hero-section .col-lg-6:last-child {
        width: 100%;
    }

    .hero-subtitle {
        margin-bottom: 12px;
        font-size: 14px;
        letter-spacing: 1.8px;
    }

    .hero-title {
        font-size: clamp(38px, 7vw, 48px);
        line-height: 1.12;
        margin-left: auto;
        margin-right: auto;
        max-width: 700px;

        /* Prevent long words from overflowing */
        overflow-wrap: anywhere;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 650px;
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 5px;
    }

    .floating-card {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .hero-section {
        padding: 55px 0 45px;
    }

    .hero-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section .row {
        margin-left: 0;
        margin-right: 0;
        row-gap: 32px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 40px);
        line-height: 1.12;
        margin-bottom: 20px;

        /* Critical */
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* Buttons */

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn,
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        margin: 0;
        min-height: 50px;
        padding: 13px 20px;
    }

    /* Image */

    .hero-image-wrapper {
        width: 100%;
        margin-top: 0;
    }

    .hero-image {
        width: 100%;
        height: auto;
        border-radius: 22px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
    }

    /* Shapes */

    .hero-shape-1 {
        width: 230px;
        height: 230px;
        top: -110px;
        right: -100px;
    }

    .hero-shape-2 {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -70px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero-section {
        padding: 45px 0 40px;
    }

    .hero-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-subtitle {
        font-size: 12px;
    }

}