
/* ====================== HERO SECTION ====================== */
.qh-hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: 
        linear-gradient(var(--qh-gradeint1),var(--qh-gradeint2)),
        url("../../uploads/images/st7.jpg") center/cover no-repeat;
}

/* Better overlay for text readability */
.qh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Optional subtle animated gradient blobs */
.qh-hero::before,
.qh-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    z-index: 2;
    animation: floatBlob 18s ease-in-out infinite;
}

.qh-hero::before {
    background: #2563eb;
    top: -150px;
    left: -150px;
}

.qh-hero::after {
    background: #16a34a;
    bottom: -180px;
    right: -180px;
    animation-delay: 4s;
}

/* Main Content Container */
.qh-hero .container {
    position: relative;
    z-index: 3;
}

/* Title Styling */
.qh-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.qh-hero-title span {
    color: var(--qh-primary);
    position: relative;
}

.qh-hero-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background: var(--qh-primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 2.2s ease forwards;
}

/* Subtitle */
.qh-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

/* Buttons */
.qh-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.qh-hero-btn {
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.qh-hero-btn.primary {
    background: var(--qh-primary);
    color: white;
    border: none;
}

.qh-hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.qh-hero-btn.outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
}

.qh-hero-btn.outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-4px);
}

/* Trust Items */
.hero-trust .trust-item {
    font-size: 1.1rem;
    color: white;
    text-align: center;
}

.hero-trust .trust-item strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 4px;
}

/* Badge */
.hero-badge .badge-pill {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Animations */
@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.08); }
}

@keyframes underline {
    to { transform: scaleX(1); }
}
