/**
 * Jasmine RMS - Homepage Styles
 * =============================
 *
 * Homepage-specific styles for Default.aspx
 * These styles are unique to the homepage and not reusable elsewhere.
 *
 * Usage:
 *   <link href="/assets/css/homepage.css" rel="stylesheet" type="text/css" />
 *
 * Components included:
 *   - .hero-section      : Hero section padding
 *   - .badge-trust       : Trust badge pill styling
 *   - .trusted-client-slider : Logo slider grayscale effect
 *   - .testimonial-card  : Testimonial card with quote icon
 *
 * Dependencies:
 *   - Bootstrap 5
 *   - CSS custom property: --vz-primary (from Velzon theme)
 *   - Swiper CSS (for sliders)
 *
 * Note: Reusable components like .feature-icon-box, .video-thumbnail,
 *       .play-button, and .module-link-item are in jasmine-components.css
 *
 * Author: Jasmine RMS Team
 * Version: 1.0.0
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* ==========================================================================
   Trust Badge
   ========================================================================== */

/**
 * Pill-shaped badge used in hero section
 * Shows trust indicators like "Trusted Since 2016"
 */
.badge-trust {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(35, 88, 122, 0.1);
    border: 1px solid var(--vz-primary);
    border-radius: 50px;
    color: var(--vz-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* ==========================================================================
   Trusted Client Logo Slider
   ========================================================================== */

/**
 * Logo carousel with grayscale-to-color hover effect
 * Used to display client logos in trust section
 */
.trusted-client-slider .swiper-slide img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trusted-client-slider .swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   Testimonial Card
   ========================================================================== */

/**
 * Card component for customer testimonials
 * Features a large quote icon with reduced opacity
 */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card .quote-icon {
    font-size: 48px;
    color: var(--vz-primary);
    opacity: 0.2;
    line-height: 1;
}
