/* ======== News Section ======== */
#rs-blog {
    background: #f8f9fb;
}

.sec-title .sub-title {
    color: #ff6600;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sec-title .title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

/* ======== News Card ======== */
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    object-fit: cover;
    transition: 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/* ======== Content ======== */
.news-content {
    padding: 20px;
}

.news-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    color: #888;
    font-size: 14px;
}

.news-meta li {
    display: inline-block;
}

.news-meta i {
    color: #ff6600;
    margin-right: 6px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin-bottom: 10px;
}

.news-title a {
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

.news-title a:hover {
    color: #ff6600;
}

/* ======== Read More Button ======== */
.readon-arrow {
    display: inline-block;
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.readon-arrow::after {
    content: " →";
    transition: margin-left 0.3s;
}

.readon-arrow:hover::after {
    margin-left: 4px;
}

/* ======== Responsive ======== */
@media (max-width: 991px) {
    .news-image img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .news-title {
        font-size: 16px;
    }

    .news-image img {
        height: 180px;
    }
}

#rs-banner {
    position: relative;
    overflow: hidden;
    height: 600px;
    color: white;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay for better text visibility */
#rs-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Keep content above slider */
.banner-content {
    position: relative;
    z-index: 2;
}

/* Fix for overlap issue below banner */
#rs-banner {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 600px;
}

/* Reduce bottom padding to avoid covering next section */
.rs-banner.style1 {
    padding: 125px 0 100px; /* was 425px */
}

/* Ensure next section starts clearly below banner */
#rs-about {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: -5px; /* space above About section */
}

/* Optional: add subtle separation between banner and about */
#rs-about::before {
    content: "";
    display: block;
    height: 10px;
    background: transparent;
}

