/*=====HTabsSection======*/

.adb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px
}

.adb-product-section {
    display: flex;
    gap: 50px;
    align-items: stretch
}

.adb-image-box {
    width: 50%
}

.adb-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block
}

.adb-content-box {
    width: 50%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .06)
}

.adb-content-box h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #222
}

.adb-content-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px
}

.adb-tabs {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.adb-tab {
    border: none;
    background: #fff;
    color: #ff7a00;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
    box-shadow: 0 5px 20px rgb(0 0 0 / .08);
    width: auto;
    flex: none
}

.adb-tab:hover {
    transform: translateY(-2px)
}

.adb-tab.active {
    background: #ff7a00;
    color: #fff
}

.adb-tab-content-wrap {
    background: #fafafa;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgb(0 0 0 / .05)
}

.adb-tab-content {
    display: none
}

.adb-tab-content.active {
    display: block
}

.adb-tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.adb-tab-content li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 22px;
    line-height: 1.8;
    color: #444
}

.adb-tab-content li:last-child {
    margin-bottom: 0
}

.adb-tab-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700
}

@media (max-width:991px) {
    .adb-product-section {
        flex-direction: column;
        gap: 35px
    }

    .adb-image-box,
    .adb-content-box {
        width: 100%
    }

    .adb-content-box {
        padding: 35px
    }

    .adb-content-box h2 {
        font-size: 36px
    }
}

@media (max-width:767px) {
    .adb-container {
        padding: 50px 15px
    }

    .adb-content-box {
        padding: 25px
    }

    .adb-content-box h2 {
        font-size: 30px
    }

    .adb-tabs {
        gap: 15px
    }

    .adb-tab {
        width: 100%;
        text-align: center
    }

    .adb-tab-content-wrap {
        padding: 25px
    }
}

/*=====HTabsSection======*/


/*=====StaticCards======*/

.adb-feature-section{
    max-width:1400px;
    margin:90px auto;
    padding:0 20px;
}

.adb-section-title{
    text-align:center;
    margin-bottom:60px;
}

.adb-section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.adb-section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*==================================================
Grid
==================================================*/

.adb-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*==================================================
Card
==================================================*/

.adb-feature-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
    text-align:center;
}

.adb-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.adb-feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff4ea;
    display:flex;
    align-items:center;
    justify-content:center;
}

.adb-feature-icon i{
    font-size:28px;
    color:#ff7a00;
}

.adb-feature-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#222;
}

.adb-feature-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/*==================================================
Responsive
==================================================*/

@media(max-width:991px){

    .adb-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .adb-section-title h2{
        font-size:32px;
    }

    .adb-feature-grid{
        grid-template-columns:1fr;
    }

    .adb-feature-card{
        padding:30px 25px;
    }

}
/*=====StaticCardsIcon======*/

/*=====StaticCardsImages======*/
.adb-feature-img{
    width:500px;
    height:300px;
    border-radius:80%;
    background:#fff4ea;
    display:flex;
    align-items:center;
    justify-content:center;
}
/*=====StaticCardsImages======*/