.main-header .header-top {
    background-color: #ffffff;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
    color: var(--sub-color);
}

.banner-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

#headSection .title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
}

#headSection .title {
    font-weight: bold;
    font-size: 80px;
    color: #ffffff;
    line-height: 94px;
    text-align: center;
}

/* ==============================
   Funding Programs Section Styles
   ============================== */

.funding-programs-section {
    position: relative;
    padding: 100px 0px 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.programs-container {
    margin-top: 60px;
}

.program-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(31, 69, 113, 0.15);
}

.program-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.program-card.easy-bud .program-header {
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
}

.program-card.tvp .program-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.program-card.emf .program-header {
    background: linear-gradient(135deg, #ffc107 0%, #ffca28 100%);
}

.program-card.bud .program-header {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i {
    font-size: 28px;
    color: #ffffff;
}

.program-name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.program-content {
    padding: 30px;
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
}

.value {
    font-size: 18px;
    font-weight: 700;
    color: #495057;
    line-height: 1.4;
}

.value.highlight {
    font-size: 24px;
    color: #ff6b35;
}

.value.success {
    color: #28a745;
}

/* ==============================
   Suitable Companies Section Styles
   ============================== */

.suitable-companies-section {
    position: relative;
    padding: 100px 0px 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.companies-container {
    margin-top: 60px;
}

.company-type-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.company-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(31, 69, 113, 0.15);
}

.company-type-card .card-header {
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    padding: 30px;
    text-align: center;
}

.type-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.type-icon i {
    font-size: 36px;
    color: #ff6b35;
}

.company-type-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.card-content {
    padding: 30px;
}

.applicable-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.program-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.easy-bud-tag {
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
}

.tvp-tag {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.emf-tag {
    background: linear-gradient(135deg, #ffc107 0%, #ffca28 100%);
    color: #495057;
}

.bud-tag {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.description p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ==============================
   Free Assessment Section Styles
   ============================== */

.free-assessment-section {
    position: relative;
    padding: 80px 0px;
    /* background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%); */
    background-image: url(../images/bg-4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.program-column {
    margin-bottom: 60px;
}

.assessment-cta-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 36px;
    color: #ff6b35;
}

.cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.cta-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.assessment-btn {
    min-width: 200px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.assessment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #ffffff;
}