/* Home Landing Page Styling */

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Navbar transparency on home */
.navbar-home {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-home .nav-link {
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-home .nav-link:hover {
    color: #ffffff;
}

/* Info Cards */
.feature-card {
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    background-color: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.stat-counter-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.stat-desc {
    color: #64748b;
    font-size: 0.9rem;
}

/* Testimonial Cards */
.testimonial-card {
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-role {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}
