.hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%);
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}


/* ── PROFESSIONAL SERVICES OVERVIEW STYLING ── */
.cov-section {
    padding: 100px 0;
    background: #ffffff;
}

.cov-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cov-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00143c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cov-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Highlight Box */
.cov-cta-text {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f7ff;
    padding: 20px;
    border-left: 4px solid #004a99;
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}

.cov-cta-text i {
    font-size: 1.5rem;
    color: #004a99;
}

.cov-cta-text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #00143c;
    margin: 0;
}

/* Right Side Pillar Items */
.cov-right-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 20px;
}

.cov-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.cov-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #004a99;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.1);
}

.cov-item-icon {
    color: var(--blue);
}

/* Responsive Grid */
@media (max-width: 991px) {
    .cov-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .cov-heading {
        font-size: 1.75rem;
    }

    .cov-section {
        padding: 60px 0;
    }
}












/* ── SOLUTIONS GRID STYLING ── */
.ccs-section {
    padding: 90px 0;
    background: #f8fafc;
    /* Light background for section separation */
}

.ccs-header {
    margin-bottom: 50px;
    text-align: left;
}

.ccs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ccs-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

/* Hover Effect: Blue accent border */
.ccs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 74, 153, 0.1);
    border-color: #004a99;
}

.ccs-card-icon {
    width: 55px;
    height: 55px;
    background: #f0f7ff;
    color: #004a99;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ccs-card:hover .ccs-card-icon {
    background: #004a99;
    color: #ffffff;
}

.ccs-card-body {
    flex: 1;
}

.ccs-card-body h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #00143c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ccs-card-body p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ccs-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #004a99;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.ccs-link:hover {
    gap: 12px;
    color: #00143c;
}

/* Responsive Grid Adjustments */
@media (max-width: 1199px) {
    .ccs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ccs-section {
        padding: 60px 0;
    }

    .ccs-grid {
        grid-template-columns: 1fr;
    }

    .ccs-card {
        padding: 30px 25px;
    }
}





/* ── BENEFITS SECTION STYLING ── */
.ccb-section {
    padding: 100px 0;
    background: #ffffff;
}

.ccb-header {
    margin-bottom: 50px;
}

.ccb-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Benefit Items */
.ccb-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ccb-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ccb-item:hover {
    background: #ffffff;
    transform: translateX(10px);
    border-color: #004a99;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.05);
}

.ccb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #004a99;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ccb-item:hover::before {
    transform: scaleY(1);
}

.ccb-item-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #004a99;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ccb-item:hover .ccb-item-icon {
    background: #004a99;
    color: #ffffff;
}

.ccb-item-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #00143c;
    margin-bottom: 8px;
}

.ccb-item-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Right Side CTA Card */
.ccb-cta-card {
    background: linear-gradient(135deg, #00143c 0%, #004a99 100%);
    border-radius: 15px;
    padding: 45px 35px;
    position: sticky;
    top: 100px;
    color: #ffffff;
}

.ccb-cta-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ccb-cta-inner h3 {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ccb-cta-inner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .ccb-layout {
        grid-template-columns: 1fr;
    }

    .ccb-cta-card {
        position: static;
    }
}

@media (max-width: 575px) {
    .ccb-section {
        padding: 60px 0;
    }

    .ccb-item {
        padding: 20px;
    }
}



/* ── SINGLE TESTIMONIAL STYLING ── */
.tst-section {
    padding: 100px 0;
    background: #f8fafc;
    /* Subtle grey to make the white card pop */
}

.tst-wrap {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 74, 153, 0.05);
    overflow: hidden;
}

/* Accent Side Border */
.tst-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #004a99, #00143c);
}

.tst-quote-mark {
    font-size: 3.5rem;
    color: #004a99;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 10px;
}

.tst-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #00143c;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

.tst-divider {
    width: 60px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 30px;
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tst-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #004a99, #00143c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.tst-author-info strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #00143c;
    margin-bottom: 2px;
}

.tst-author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

.tst-stars {
    margin-left: auto;
    color: #f59e0b;
    /* Amber/Gold color */
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .tst-wrap {
        padding: 40px 30px;
    }

    .tst-quote {
        font-size: 1.15rem;
    }

    .tst-stars {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
}