.hero-section {
    background: url('../images/index-banner.png');
    background-size: cover;
    background-position: center;
    min-height: 606px;
    display: flex;
    align-items: center;
    color: white;
}
.section-swiper{
    margin-top: 70px;
}
.bSwiper .swiper-slide{
    height:606px;
    position: relative;
}
.bSwiper .pos-swiper{
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#ffffff;
}
.bSwiper .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-green);
}

.section-title h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title .subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
}
.about-section{
    padding-top:60px;
    padding-bottom: 60px;
    background: url('../images/bg-company.png');
    background-size: 100% 100%;
    background-position: center;
}
.feature-card {
    /* background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%; */
    display: flex;
    align-items: center;
}
.feature-card .tit{
    padding-left:15px;
    font-weight: 700;
}
.feature-card .tit span{
    display: block;
    color: #1082c5;
}

#success-stories{
    background: url('../images/bg-company.png');
    background-size: 100% 100%;
    background-position: center;
}
#parter-section{
    background: url('../images/bg-parter.png');
    background-size: 100% 100%;
    background-position: center;
}
.business-card {
    background: var(--dark-blue);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.business-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-blue);
}

.success-story {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logo {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.btn-primary-custom {
    background: var(--primary-green);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #218838;
    transform: translateY(-2px);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.carousel-indicators .active {
    background-color: var(--primary-green);
}
.swiper-pagination-case {
    position: static !important;
    text-align: center;
    margin-top: 20px;
}
.swiper-pagination-bullet{
    width:12px;
    height:12px;
    margin:0 5px;
}

.pos-xdt{
    position: absolute;
    right:0;
    top:0;
}
