/* Home Page Styles */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-image: linear-gradient(to right, rgba(var(--bs-light-rgb), 0.9), rgba(var(--bs-light-rgb), 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-features {
    margin: 30px 0;
}

/* Services Section */
.icon-box {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.card:hover .icon-box {
    transform: scale(1.1);
    background-color: rgba(var(--bs-primary-rgb), 0.2);
}

/* Testimonials Section */
.testimonial-card {
    transition: transform 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-avatar img {
    border: 3px solid var(--bs-primary);
}

.testimonial-rating {
    margin-bottom: 15px;
}

/* RTL adjustments */
html[dir="rtl"] .card-body {
    text-align: right;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 50px 0;
    }
}