/* Section */
.hb-hero-section{
    padding: 100px 20px;
    background: #f7f7f7;
    overflow: hidden;
}

/* Container */
.hb-container{
    max-width: 1250px;
    margin: auto;
}

/* Layout */
.hb-hero-wrapper{
    display: flex;
    align-items: center;
    gap: 70px;
}

/* Content */
.hb-hero-content{
    flex: 1;
}

.hb-subtitle{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #003366;
    margin-bottom: 15px;
}

.hb-hero-content h1{
    font-size: 52px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
    font-weight: 700;
}

.hb-hero-content p{
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 620px;
    margin-bottom: 30px;
}

/* Buttons */
.hb-hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hb-btn-primary{
    display: inline-block;
    padding: 14px 32px;
    background: #003366;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
    font-weight: 500;
}

.hb-btn-primary:hover{
    background: #111;
}

.hb-btn-outline{
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #003366;
    color: black;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
    font-weight: 500;
}

.hb-btn-outline:hover{
    background: #003366;
    color: #fff;
}

/* Image */
.hb-hero-image{
    flex: 1;
}

.hb-hero-image img{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    transition: 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hb-hero-image img:hover{
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 991px){

    .hb-hero-wrapper{
        flex-direction: column;
        gap: 40px;
    }

    .hb-hero-content h1{
        font-size: 38px;
    }

    .hb-hero-content{
        text-align: center;
    }

    .hb-hero-content p{
        margin-left: auto;
        margin-right: auto;
    }

    .hb-hero-buttons{
        justify-content: center;
    }
}

/* =========================
   WHY CHOOSE SECTION
========================= */

.hb-why-section{
    padding: 110px 20px;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.hb-container{
    max-width: 1280px;
    margin: auto;
}

/* =========================
   HEADING
========================= */

.hb-why-heading{
    text-align: center;
    max-width: 950px;
    margin: auto;
    margin-bottom: 70px;
}

.hb-small-title{
    display: inline-block;
    padding: 10px 22px;
    background: rgba(177,35,35,0.08);
    color: #b12323;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hb-why-heading h2{
    font-size: 48px;
    color: #111827;
    font-weight: 800;
    margin-bottom: 25px;
}

.hb-why-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #5b6470;
}

/* =========================
   GRID
========================= */

.hb-why-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* =========================
   CARD
========================= */

.hb-why-card{
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid #ececec;
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    position: relative;
}

.hb-why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* top hover border */

.hb-why-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#b12323,#d63a3a);
    border-radius: 24px 24px 0 0;
}

/* =========================
   ICON
========================= */

.hb-icon{
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg,#b12323,#d63a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(177,35,35,0.25);
}

.hb-icon i{
    font-size: 28px;
    color: #fff;
}

/* =========================
   TEXT
========================= */

.hb-why-card p{
    font-size: 17px;
    line-height: 1.9;
    color: #5b6470;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .hb-why-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .hb-why-heading h2{
        font-size: 38px;
    }

}

@media(max-width:768px){

    .hb-why-grid{
        grid-template-columns: 1fr;
    }

    .hb-why-heading h2{
        font-size: 30px;
    }

    .hb-why-section{
        padding: 80px 15px;
    }

}