/* 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;
}


/* Light Header Navigation styles for this page */
@media (min-width: 993px) {

    .light-header-page .site-header:not(.menu-open) .nav-link,
    .light-header-page .site-header:not(.menu-open) .dd-toggle {
        color: #111 !important;
        font-weight: 500;
    }

    .light-header-page .site-header:not(.menu-open) .dropdown:hover .dd-toggle,
    .light-header-page .site-header:not(.menu-open) .nav-link:hover {
        color: #0d6efd !important;
    }
}

/* Mobile Hamburger icon color */
.light-header-page .site-header:not(.menu-open) .hamburger,
.light-header-page .site-header:not(.menu-open) .hamburger::before,
.light-header-page .site-header:not(.menu-open) .hamburger::after {
    background-color: #111 !important;
}

/* Responsive Hero Section */
@media (max-width: 991px) {
    .sh-hero-section {
        padding-top: 130px;
        padding-bottom: 80px;
        background-color: #ffffff;
        background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/shared-hero-bg.png');
        background-position: center, center;
        background-size: cover, cover;
        background-repeat: no-repeat, no-repeat;
        text-align: left;
    }
    .sh-hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .sh-hero-subnav {
        display: none;
    }
    .sh-subnav-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .sh-hero-section {
        padding-bottom: 60px;
        background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/shared-hero-bg.png');
        background-size: cover, cover;
        background-position: center, center;
        background-repeat: no-repeat, no-repeat;
    }
    .sh-hero-title {
        font-size: 2.2rem;
    }
    .sh-hero-subtitle {
        font-size: 1rem;
    }
}


/* Hero Features List */
.sh-hero-features {
    list-style: none;
    padding: 0;
    margin: 30px 0 35px 0;
    color: #444;
    font-size: 16px;
    line-height: 1.5;
    max-width: 650px;
}
.sh-hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.sh-hero-features li img {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}
.sh-hero-features strong {
    font-weight: 700;
    color: #111;
}

@media (max-width: 767px) {
    .sh-hero-features {
        font-size: 14px;
        margin: 25px auto 30px auto;
        text-align: left;
    }
    .sh-hero-features li {
        margin-bottom: 15px;
    }
}
