.hero {
    /* Updated with a copyright-free image */
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), 
                url('/sites/default/files/images/home-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    /* min-height: 100vh; */
    padding: 80px 0 60px;
    color: var(--bg-light);
}
.home-heo .container {
    display: flex;
    width: 60%;
    text-align: center;
}
.home-heo h1 .highlight {
    font-size: 6rem;
}
.home-heo  .features {
    margin: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.home-heo .features .feature-item {
    text-align: left;
    width: 80%;
    margin: auto;
}

.hero-content-form {
    padding-right: 4rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0rem;
    line-height: 1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.sub-heading {
    font-size: 40px;
}

h3 {
    font-size: 25px;
    margin-bottom: 1rem;
}


.hero .feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    line-height: 27px;
}

.hero .title-highlight {
    font-family: var(--font-primary-bold);
}

/* #main-content{
    background: #f8f9fa;

} */

/* .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0.7;
} */



/* Programs section */

.programs-container {
    margin: 0 auto;
    padding: 0 !important;
    display: grid;
    grid-template-columns: 1fr 35rem;
    gap: 4rem;
    max-width: 1600px !important;
}


/* Left Side Styles */
.left-content {
    padding: 2rem 2rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.left-content h2 {
    line-height:1.2;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-primary-extra-bold);
}

.intro-text {
    margin-bottom: 1rem;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.audience-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.audience-icon {
    color: var(--primary);
    font-size: 1.5rem;
    width: 24px;
}

.audience-item h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary-medium);
}

.audience-item p {
    color: #333;
}

.explore-btn {
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--bg-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.explore-btn:hover {
    background-color: #b83e3f;
}

/* Right Side Styles */
.right-content {
    background-color: var(--bg-light);
    overflow: hidden;
}

.programs-header {
    background-color: var(--primary);
    padding: 2rem;
}

.programs-header h2 {
    color: var(--bg-light);
    font-size: 2rem;
    margin: 0;
}

.programs-container-tabs{
    display: flex;
    height: 100%;
}


.programs-container .tabs {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-primary-light)
}



.tab {
    padding: 2.5rem;
    color: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--bg-light);
    font-size: 1.45rem;
    font-family: var(--font-primary-medium);
}

.tab:hover {
    background-color: rgba(255,255,255,0.1);
}

/* .tab.active {
    background-color: var(--primary);
} */

.tab i {
    transition: transform 0.3s ease;
}

.tab.active i {
    transform: rotate(90deg);
}

.tab .tab-link {
    text-decoration: none;
    color: var(--text-primary-light);
}

.tab .tab-link:hover {
    color: var(--primary);
}

.tab-content {
    flex-grow: 1;
    background-color: var(--bg-light);
}

.content-panel {
    display: none;
    padding: 2rem;
}

.content-panel.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-link {
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.program-link:hover {
    color: var(--primary);
}

.right-icon {
    display: none;
}

.right-icon.active{
    display: block;
}

@media (max-width: 1390px){ 

    .home-heo .container {
        width: 90%;
    }
}

@media (max-width: 1370px) and (orientation : landscape) {
    
    .hero .container {
        padding: 2rem;
        grid-template-columns: 1fr 600px !important;
        gap: 2rem;
    }

    .programs-container {
        grid-template-columns: 1fr 25rem;
    }
}

@media (max-width: 1180px) and (orientation : landscape) {
    .hero .container {
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


@media (max-width: 1024px)  and (orientation : portrait) {
    /* section .container, */
     .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .home-heo .container {
        width: 100%;
    }
    .hero-content {
        padding-right: 0;
    }
    
    .nav-links {
        display: none;
    }

    .home-heo .hero-content {
        text-align: center;
    }
}

@media (max-width: 1024px)  and (orientation : portrait) {
    .programs-container {
        grid-template-columns: 1fr;
    }

    .cta-container .cta-right {
        padding: 4rem 2rem;
    }
    .cta-container .cta-items {
        grid-template-columns: repeat(2, 1fr);
    }
 }

@media (max-width: 768px) {
    

    .home-heo .container,
    .home-heo .features {
        width: 100%;
        text-align: left;
    }
    .home-heo .container h1 {
        font-size: 24px;
    }

    .home-heo .container h1 .highlight {
        font-size: 36px;
        margin-top: 10px;
    }

    .home-heo .container .sub-heading {
        font-size: 22px;
    }
    .home-heo .container .main-heading {
        margin-top: 10px;
    }

    .home-heo .features {
        font-size: 16px;
        margin: 1rem;
    }
    .home-heo .features .feature-item {
        width: 95%;
    }
    .btn-wrapper {
        display: flex;
    }

    .programs-section .left-content h2 {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    .right-icon svg{
        transform: rotate(90deg);
    }
    
}

@media (max-width: 500px) {
    

    .home-heo .container,
    .home-heo .features {
        width: 100%;
        text-align: left;
    }
    .home-heo .container h1 {
        font-size: 24px;
    }

    .home-heo .container h1 .highlight {
        font-size: 34px;
        margin-top: 10px;
    }

    .home-heo .container .sub-heading {
        font-size: 22px;
    }
    .home-heo .container .main-heading {
        margin-top: 10px;
    }

    .home-heo .features {
        font-size: 16px;
        margin: 1rem;
    }
    .home-heo .features .feature-item {
        width: 95%;
    }
    .btn-wrapper {
        display: flex;
    }

    .programs-section .left-content h2 {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    .right-icon svg{
        transform: rotate(90deg);
    }
    
}

@media only screen and (max-width: 500px) and (orientation : portrait) {

    .hero .container .hero-content {
        padding: 1rem;
    }
    .programs-container .left-content {
        padding: 1rem;
    }
    .programs-container-tabs {
        flex-direction: column;
    }
    .programs-container .tabs {
        width: 100%;
    }
    .cta-container{
        gap: 0rem;
    }
    .cta-container .cta-left {
        padding: 4rem 0 2rem 4rem;
    }
    .cta-container .cta-right {
        padding: 4rem 2rem;
    }
    .cta-container .cta-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .tab {
        padding: 2.5rem 2rem;
        font-size: 18px;
    }
}