.page-header-custom {
    background: #0d1e3f;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;

}

.page-header-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,184,169,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244,167,66,0.08) 0%, transparent 40%);
}

.page-header-custom h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header-custom p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.feature-section {
    padding: 100px 0;
    background: white;
}

.feature-section .img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-section .img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-section .img-wrap:hover img {
    transform: scale(1.04);
}

.feature-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.feature-body {
    padding: 40px 0 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgb(196, 191, 191);
    font-size: 15px;
    color: var(--text-mid);
}

.feature-list li .icon {
    width: 36px;
    height: 36px;
    background: rgba(0,184,169,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

    .feature-section {
    background: var(--white);
    padding: 60px 0; 
}


.feature-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.feature-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.20);
}

.feature-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}


.feature-text {
    color: rgb(0, 0, 0);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.feature-text.text-margin-large {
    margin-bottom: 28px;
}


.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  display: block;
  margin-bottom: 12px;
}


@media (max-width: 991px) {
    .feature-row {
        display: block;
    }
    .feature-img-wrapper {
        margin-bottom: 40px; 
    }
    .stats-number {
        font-size: 22px; 
    }
}