/* Refactored Hero Section Styles */
.sh-hero-section {
    background-image: url('../images/shared-boy.png'), linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../images/shared-hero-bg.png');
    background-size: auto 75%, cover, cover;
    background-position: right 2% bottom, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 160px;
}

.sh-hero-container {
    padding-top: 0px;
}

.sh-hero-subnav {
    margin-top: -10px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sh-subnav-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.sh-subnav-divider {
    width: 1px;
    height: 18px;
    background-color: #94a3b8;
    opacity: 0.5;
    display: inline-block;
}

.sh-subnav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.sh-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sh-nav-link:hover {
    color: #0d6efd;
}

.sh-nav-link.active {
    color: #0d6efd;
    font-weight: 700;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 2px;
}

.sh-hero-content {
    padding-left: 0;
    padding-right: 15px;
    margin-bottom: 40px;
}

.sh-hero-pretitle {
    font-weight: 600;
    font-size: clamp(13px, 3vw, 15px);
    margin-bottom: 15px;
    color: #0d6efd;
}

.sh-hero-title {
    font-weight: 700;
   /* font-size: clamp(2.5rem, 6vw, 3.5rem);*/
   font-size: 64px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #111;
    /* Changed to dark for light background */
    font-family: 'Poppins', sans-serif;
}

.sh-highlight {
    color: #0d6efd;
}

.sh-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 40px;
    color: #444;
    /* Changed to dark for light background */
    max-width: 100%;
}

.sh-hero-btn {
    background-color: #0d6efd;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.sh-hero-btn:hover {
    background-color: #0b5ed7;
    color: #fff;
}



