.main-banner {
    padding: 0 0 80px;
    background: url(../image/bg.png) top center;
    background-size: cover;
    margin-top: -70px;
}

.left-content.header-text {
    padding-top: 0;
}

.header-text h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #03a4ed;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.header-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-text h2 em {
    font-style: normal;
    color: #03a4ed;
}

.header-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-slider {
    display: inline-block;
    margin-top: 0px;
    height: 45px;
    overflow: hidden;
}

.hero-slider__words {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #03a4ed;
    animation: slide-words 10s infinite;
}

.hero-slider__words li {
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 0;
    height: 50px;
    line-height: 50px;
}

@keyframes slide-words {
    0%, 18% { transform: translateY(0); }
    20%, 38% { transform: translateY(-50px); }
    40%, 58% { transform: translateY(-100px); }
    60%, 78% { transform: translateY(-150px); }
    80%, 98% { transform: translateY(-200px); }
    100% { transform: translateY(0); }
}

.hero-section__btns {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.sps-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sps-btn#btn1 {
    background: #03a4ed;
    color: white;
}

.sps-btn#btn2 {
    background: transparent;
    border: 2px solid #03a4ed;
    color: #03a4ed;
}

.sps-btn#btn1:hover {
    background: #0288c5;
    transform: translateY(-2px);
}

.sps-btn#btn2:hover {
    background: #03a4ed;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .main-banner {
        padding: 120px 0 60px;
    }

    .header-text h2, .hero-slider__words li {
        font-size: 36px;
    }

    .header-text p {
        font-size: 14px;
    }

    .hero-section__btns {
        flex-direction: column;
    }

    .sps-btn {
        text-align: center;
    }
}