/* RLI Wheel Section */

.rli-wheel-section {
    padding: 70px 20px;
    text-align: center;
    background: #f8f9fc;
}

.rli-wheel-section h2 {
    color: #005daa;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #555;
}

.wheel-image {
    max-width: 750px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}

.wheel-image img {
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.wheel-image:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Features Section */

.features-section {
    padding: 80px 20px;
    background: #ffffff;
}

.features-section h2 {
    text-align: center;
    color: #005daa;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #005daa;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,93,170,0.2);
}

.feature-card h3 {
    color: #005daa;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* Impact Section */

.impact-section {
    background: linear-gradient(135deg,#005daa,#003d73);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.impact-section h2 {
    margin-bottom: 20px;
}

.impact-section p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    margin-bottom: 30px;
}

.impact-section .btn {
    background: #ffd200;
    color: #003d73;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.impact-section .btn:hover {
    background: #ffffff;
}

/* Mobile */

@media (max-width:768px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .wheel-image img {
        border-radius: 15px;
    }

}