.service-hero{
    padding:30px 0px;
    border-bottom:10px solid var(--accent-gold);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom-right-radius:25%;
    /*background: linear-gradient(135deg, #0D2B4D, #1E3A5F);*/
    /*background: linear-gradient(135deg, #0D2B4D, #F5A623);*/
    /*background: linear-gradient(135deg, #16213E, #0F3460);*/
    /*background: linear-gradient(135deg, #1E3A5F, #3A6EA5);*/
    /*background: linear-gradient(135deg, #0D2B4D, #2A9D8F);*/
    background: linear-gradient(135deg, #0D2B4D, #3F51B5);
}
.service-features{
    display: flex;
    flex-wrap: wrap;
    gap:15px;
}

.service-features span{
    color:#ffffff;
}
.service-highlight{
    color:var(--accent-gold);
}
.services-user-avatar{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}
#overview .overview-heading{
    color: var(--accent-gold);
    margin-bottom: 15px;
}
#overview .overview-check-icon{
    color: var(--accent-gold);
    margin-right: 10px;
}
#overview .overview-content{
    color: #555;
    line-height: 1.8;
}
#overview .overview-list{
    background:var(--primary-blue);
    color:#ffffff;
    padding: 25px;
    border-left:5px solid var(--accent-gold);
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;"
}

.ch-breakdown-number{
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 86, 179, 0.1);
    line-height: 1;"
}
.ch-breakdown-number-circle{
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: -30px auto 0;
    border: 4px solid var(--accent-gold);
}

.ch-card-left{
    border-left: 4px solid var(--accent-gold);
    background: white;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ch-card-right{
    border-right: 4px solid var(--accent-gold);
    background: white;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: right;"
}
.ch-heading{
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.ch-p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}
.ch-p span{
    font-weight: 600;
    color: var(--primary-blue);
}
.addtional-element-cards{
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.qassurance-number{
    width: 70px;
    height: 70px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: bold;
}




.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11,43,79,0.1);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fff3e0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(245, 176, 30, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}


/* steps */
.process-section .process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px;
}

.process-section .step-wrapper {
    flex: 1;
    position: relative;
    min-width: 0; /* Prevents overflow */
}

.process-section .step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin:0px 20px;
    gap:20px;
}

.process-section .step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: #0b2b4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.process-section .step-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}


.process-section .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11,43,79,0.1);
    border-color: #f5b01e;
}

.process-section .step-icon {
    width: 60px;
    height: 60px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #f5b01e;
}
.process-section .step-arrow {
    position: absolute;
    top:50%;
    /*top: 50px;*/
    /*right: -20px;*/
    right: -20px;
    font-size: 1.8rem;
    color: #f5b01e;
    opacity: 0.5;
    z-index: 10;
}

.process-section .step-card h4 {
    color: #0b2b4f;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-section .step-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.process-section .step-time {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #0b2b4f;
    font-weight: 500;
    margin-top: auto;
    align-self: center;
}

.process-section .step-time i {
    color: #f5b01e;
    margin-right: 5px;
}

/* Hide arrow on last step */
.process-section .step-wrapper:last-child .step-arrow {
    display: none;
}

/* Mobile Arrows (hidden on desktop) */
.process-section .step-arrow-down {
    display: none;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin: 0;
}

.faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    display: none;
}

.faq-answer.show {
    display: block;
}