.anirban_service_section_1st_design_template_part {
    width: 100%;
    padding: 80px 20px 60px;
    background: #fff;
}

.anirban_service_section_1st_design_template_part .bbol_class_main {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.content-box {
    flex: 1;
}

.service-content {
    display: none;
    animation: fadeEffect .5s ease;
}

.service-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box h3 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    line-height: 1.2;
}

.content-box h3::before {
    content: "";
    width: 55px;
    height: 4px;
  background:var(--gredient-bg);
    border-radius: 30px;
}

.content-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 22px;
}

.features {
    list-style: none;
    margin-top: 25px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--gredient-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}



.menu-box {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-item {
    width: 100%;
    background: #f4f4f4;
    padding: 22px 25px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: .35s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

.menu-item:hover {
    background:var(--gredient-bg);
    color: #fff;
}

.menu-item.active {
    background:var(--gredient-bg);
    color: #fff;
}


.anirban_2nd_section_of_services_part {
    width: 100%;
    padding: 30px 20px 90px;
    background: #fff;
}

.anirban_2nd_section_of_services_part .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}


.left_side {
    flex: 1;
}

.slider_wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.image_gallery {
    display: flex;
    transition: 1s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    gap: 18px;
}

.slide img {
    width: 33.33%;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
}



.slider_dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: var(--gredient-bg);
    transform: scale(1.25);
}


.right_side {
    width: 340px;
}



.contact_box {
    margin-bottom: 55px;
}

.contact_box h2,
.brochure_box h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 28px;
    line-height: 1.2;
}

.contact_item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact_icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background:var(--gredient-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact_text {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}


.brochure_box p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 24px;
}
.anirban_bottom_ad_banner {
    background: var(--gredient-bg);
    margin: 40px 0px 0px 0px;
  }
.brochure_btn {
    width: 100%;
    background:var(--gredient-bg);
    border: 1px solid #ededed;
    border-radius: 6px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    cursor: pointer;
    transition: .35s;
    color: white;
}




.brochure_icon {
    font-size: 18px;
    transition: .35s;
}
.brochure_icon i{
    background: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brochure_btn span:last-child {
    font-size: 15px;
    font-weight: 600;
    /* color: #444; */
    transition: .35s;
}



@media(max-width:991px) {

    .anirban_service_section_1st_design_template_part .bbol_class_main,
    .anirban_2nd_section_of_services_part .container {
        flex-direction: column;
    }

    .menu-box,
    .right_side {
        width: 100%;
    }

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

    .slide img {
        height: 280px;
    }
}

@media(max-width:767px) {

    .anirban_service_section_1st_design_template_part {
        padding: 60px 15px 40px;
    }

    .anirban_2nd_section_of_services_part {
        padding: 20px 15px 70px;
    }

    .content-box h2,
    .contact_box h2,
    .brochure_box h2 {
        font-size: 30px;
    }

    .slide {
        flex-direction: column;
    }

    .slide img {
        width: 100%;
        height: 240px;
    }

    .menu-item {
        padding: 18px 20px;
        font-size: 15px;
    }
}

@media(max-width:480px) {

    .content-box h2,
    .contact_box h2,
    .brochure_box h2 {
        font-size: 26px;
    }

    .content-box p,
    .features li,
    .contact_text,
    .brochure_box p {
        font-size: 14px;
    }

    .slide img {
        height: 210px;
    }
}