.custom_slider {
    width: 100%;
    height: 100vh;
    padding: 20px;
}

.slider_box {
    display: flex;
    width: 80%;
    height: 500px;
    background-color: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.slider_left, .slider_right {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider_left h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.slider_left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button_group {
    display: flex;
    gap: 15px;
}

.bg_btn, .wihtout_bg_btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}

.bg_btn {
    background-color: #4caf50;
    color: #fff;
}

.wihtout_bg_btn {
    border: 2px solid #4caf50;
    color: #4caf50;
}

.slider_right img {
    width: 100%;
    height: auto;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    color: #4caf50;
}

.swiper-pagination-bullet {
    background: #4caf50;
}
