/* /*====================================
        BOND HERO
====================================

.bond-hero{

    padding:90px 0;
    background:#ffffff;

}

.bond-content h1{

    font-size:48px;
    font-weight:700;
    color:#123a74;
    line-height:1.3;
    margin-bottom:25px;

}

.bond-content h1 span{

    color:#0d6efd;

}

.bond-content p{

    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;

}

.bond-btn{

    display:inline-block;
    margin-top:15px;
    padding:15px 38px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.bond-btn:hover{

    background:#0b5ed7;
    color:#fff;
    transform:translateY(-4px);

}


.bond-image{
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:30px;
    overflow:hidden;
}

.bond-image img{
    width:100%;
    max-width:650px;
    height:480px;
    object-fit:cover;
    display:block;
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:transform .4s ease, box-shadow .4s ease;
    cursor:pointer;
}


@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

=========================
        Tablet
=========================

@media(max-width:991px){

.bond-hero{

    padding:70px 0;

}

.bond-content{

    text-align:center;
    margin-bottom:40px;

}

.bond-content h1{

    font-size:38px;

}
.bond-image{
    margin-top:35px;
}

.bond-image img{
    max-width:500px;
    height:380px;
    border-radius:25px;
}
}

=========================
        Mobile
=========================

@media(max-width:768px){

.bond-hero{

    padding:60px 0;

}

.bond-content h1{

    font-size:30px;

}

.bond-content p{

    font-size:15px;

}

.bond-btn{

    padding:13px 30px;
    font-size:15px;

}

.bond-image{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
        margin:35px auto 0;
        text-align:center;
    }

    .bond-image img{
        width:95%;
        max-width:95%;
        height:340px;
        object-fit:cover;
        display:block;
        margin:0 auto;
        border-radius:22px;
    }
} */
/*====================================
        BOND FEATURES
====================================*/

.bond-features{

    padding:90px 0;
    background:#f8fbff;

}

.bond-feature-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:55px;

}

.bond-card{

    background:#ffffff;
    border:1px solid #dbeafe;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.bond-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(13,110,253,.15);

}

.bond-icon{

    width:75px;
    height:75px;
    margin:0 auto 22px;
    border-radius:50%;
    background:#eaf3ff;
    display:flex;
    justify-content:center;
    align-items:center;

}

.bond-icon i{

    font-size:34px;
    color:#0d6efd;

}

.bond-card h3{

    font-size:24px;
    color:#123a74;
    font-weight:700;
    margin-bottom:18px;

}

.bond-card p{

    color:#666;
    font-size:15px;
    line-height:1.9;
    margin-bottom:15px;

}

.bond-card p:last-child{

    margin-bottom:0;

}

/*====================
      Tablet
====================*/

@media(max-width:991px){

.bond-feature-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/*====================
      Mobile
====================*/

@media(max-width:768px){

.bond-features{

    padding:70px 0;

}

.bond-feature-grid{

    grid-template-columns:1fr;

}

.bond-card{

    padding:28px;

}

.bond-card h3{

    font-size:21px;

}

.bond-card p{

    font-size:14px;

}

.bond-icon{

    width:65px;
    height:65px;

}

.bond-icon i{

    font-size:30px;

}

}
/*====================================
        HOW IT WORKS
====================================*/

.bond-work{

    padding:90px 0;
    background:#ffffff;

}

.bond-work-box{

    max-width:1100px;
    margin:auto;
    background:#f3f8ff;
    border:1px solid #dbeafe;
    border-radius:22px;
    padding:50px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.work-intro{

    text-align:center;
    font-size:22px;
    color:#123a74;
    font-weight:600;
    margin-bottom:35px;

}

/* Two Cards */

.bond-methods{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:40px;

}

.method-card{

    width:320px;
    background:#ffffff;
    border:1px solid #dbeafe;
    border-radius:15px;
    padding:22px;
    text-align:center;
    transition:.3s;

}

.method-card:hover{

    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(13,110,253,.15);

}

.method-card h4{

    font-size:24px;
    color:#0d6efd;
    margin-bottom:10px;
    font-weight:700;

}

.method-card p{

    font-size:16px;
    color:#555;
    margin:0;

}

/* Content */

.work-content{

    text-align:left;

}

.work-content p{

    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:22px;

}

.work-content strong{

    color:#123a74;

}

/*====================
        Tablet
====================*/

@media(max-width:991px){

.bond-work-box{

    padding:35px;

}

.method-card{

    width:280px;

}

}

/*====================
        Mobile
====================*/

@media(max-width:768px){

.bond-work{

    padding:70px 0;

}

.bond-work-box{

    padding:25px 20px;

}

.work-intro{

    font-size:19px;

}

.bond-methods{

    flex-direction:column;
    align-items:center;
    gap:18px;

}

.method-card{

    width:100%;
    max-width:320px;

}

.method-card h4{

    font-size:21px;

}

.method-card p{

    font-size:14px;

}

.work-content p{

    font-size:14px;
    line-height:1.8;

}

}
/* Section Heading */

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    color:#123a74;
    font-weight:700;
    margin:0;
}
@media(max-width:768px){

.section-title{
    margin-bottom:30px;
}

.section-title h2{
    font-size:30px;
}

}
/*==========================
      BEST BONDS
==========================*/

.best-bonds{

    padding:90px 0;
    background:#ffffff;

}

.best-bonds .section-title{

    text-align:center;
    margin-bottom:45px;

}

.best-bonds .section-title h2{

    font-size:42px;
    color:#123a74;
    font-weight:700;

}

.best-bonds-box{

    max-width:1100px;
    margin:auto;

    background:#f3f8ff;

    border:1px solid #dbeafe;

    border-radius:22px;

    padding:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.best-bonds-box p{

    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:22px;
    text-align:left;

}

.best-bonds-box strong{

    color:#123a74;

}

.best-bonds-box ul{

    padding-left:22px;
    margin:0;

}

.best-bonds-box ul li{

    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;

}

/*==========================
      Responsive
==========================*/

@media(max-width:991px){

.best-bonds-box{

    padding:35px;

}

}

@media(max-width:768px){

.best-bonds{

    padding:70px 0;

}

.best-bonds .section-title h2{

    font-size:30px;

}

.best-bonds-box{

    padding:25px 20px;

}

.best-bonds-box p{

    font-size:15px;

}

.best-bonds-box ul li{

    font-size:15px;

}

}