/* ── Featured Section ── */
.featured-section {
    padding: 70px 0 80px;
    background: #f8fbff;
}

.featured-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.featured-eyebrow {
    display: inline-block;
    background: rgba(41, 128, 175, 0.12);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.featured-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.featured-title-highlight {
    color: #2980af;
}

.featured-subtitle {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── Feature Card ── */
.feat-card {
    background: linear-gradient(135deg, #1a9e7a 0%, #2980af 100%);
    border: 1px solid rgba(41, 128, 175, 0.35);
    border-radius: 16px;
    padding: 28px 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 16px 40px rgba(137, 162, 176, 0.13);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
    will-change: transform;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(41, 128, 175, 0.13);
    border-color: rgba(41, 128, 175, 0.35);
}

/* Icon wrapper */
.feat-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    /* background: linear-gradient(135deg, #2980af 0%, #1a6a93 100%); */
    background-color: white;
    color: #0d1b2a;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.feat-card:hover .feat-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

/* Card body */
.feat-body {
    flex: 1;
}

.feat-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.feat-desc {
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* Card link */
.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2980af;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition:
        gap 0.2s,
        color 0.2s;
}

.feat-link:hover {
    gap: 9px;
    color: #1a6a93;
}

/* Responsive – 2 per row on tablet, 1 per row on small phones */
@media (max-width: 575px) {
    .feat-card {
        padding: 22px 18px 18px;
    }
    .featured-section {
        padding: 50px 0 60px;
    }
}

/* ════════════════════════════════════════════════
   About Section
   ════════════════════════════════════════════════ */

/* ── Wrapper ── */
.about-section {
    background: #fff;
}

/* ── Eyebrow pill ── */
.about-eyebrow-wrap {
    margin-bottom: 10px;
}

.about-eyebrow {
    display: inline-block;
    background: rgba(41, 128, 175, 0.12);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
}

/* ── Section heading ── */
.about-section-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.about-title-highlight {
    color: var(--primary-color);
}

.about-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 48px;
}

/* ════════ Image Card ════════ */
.about-img-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    display: inline-block;
    width: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 60px rgba(13, 27, 42, 0.14);
    transition: transform 0.45s ease;
}

.about-img-card:hover .about-img {
    transform: scale(1.02);
}

/* ── Floating experience badge (bottom-left) ── */
.about-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: #2980af;
    color: #fff;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 28px rgba(41, 128, 175, 0.38);
    animation: aboutBadgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.4s;
}

@keyframes aboutBadgePop {
    from {
        transform: scale(0.7) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.about-badge-number {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-badge-number sup {
    font-size: 1rem;
}

.about-badge-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    opacity: 0.92;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Floating stat chip (top-right) ── */
.about-stat-chip {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #fff;
    border: 1px solid #e8f0f8;
    border-radius: 50px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0d1b2a;
    box-shadow: 0 6px 20px rgba(13, 27, 42, 0.1);
    white-space: nowrap;
    animation: aboutChipPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.55s;
}

@keyframes aboutChipPop {
    from {
        transform: scale(0.7) translateY(-8px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ════════ Content Section ════════ */
.about-content {
    padding-left: 12px;
}

/* Lead paragraph */
.about-lead {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ── Feature list ── */
.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(41, 128, 175, 0.1);
    color: #2980af;
    margin-top: 2px;
    transition:
        background 0.2s,
        color 0.2s;
}

.about-feature-list li:hover .about-feature-icon {
    background: #2980af;
    color: #fff;
}

.about-feature-list li div strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 3px;
}

.about-feature-list li div p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* ── Stats row ── */
.about-stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding: 22px 24px;
    background: #f8fbff;
    border: 1px solid #e8f0f8;
    border-radius: 16px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.about-stat + .about-stat {
    border-left: 1px solid #dde8f4;
}

.about-stat-number {
    font-size: 1.9rem;
    font-weight: 900;
    color: #2980af;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stat-number sup {
    font-size: 1rem;
}

.about-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 5px;
}

/* ── CTA row ── */
.about-cta-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2980af 0%, #1a6a93 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(41, 128, 175, 0.35);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        gap 0.2s;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(41, 128, 175, 0.45);
    gap: 12px;
    color: #fff;
}

.about-learn-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2980af;
    text-decoration: none;
    border-bottom: 2px solid rgba(41, 128, 175, 0.3);
    padding-bottom: 2px;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.about-learn-link:hover {
    color: #1a6a93;
    border-color: #1a6a93;
}

/* ════════ Responsive ════════ */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0 70px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-badge {
        bottom: -16px;
        left: -10px;
    }

    .about-stat-chip {
        top: -14px;
        right: -10px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 50px 0 60px;
    }

    .about-stats-row {
        gap: 16px;
        padding: 16px 14px;
    }

    .about-stat-number {
        font-size: 1.5rem;
    }

    .about-badge {
        bottom: -12px;
        left: -6px;
        padding: 12px 14px;
    }

    .about-badge-number {
        font-size: 1.5rem;
    }

    .about-stat-chip {
        font-size: 0.74rem;
        top: -12px;
        right: -6px;
        padding: 7px 12px;
    }

    .about-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ════════════════════════════════════════════════
   Service Section
   ════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.svc-section {
    background: #f4f6f0;
}

/* ── Section header ── */
.svc-header {
    max-width: 660px;
    margin: 0 auto 48px;
}

.svc-eyebrow {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.svc-title {
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.svc-title-highlight {
    color: var(--primary-color);
}

.svc-subtitle {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ── Header CTA button ── */
.svc-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 9px 22px;
    border-radius: 50px;
    transition:
        background 0.22s,
        color 0.22s,
        gap 0.2s;
}

.svc-header-btn:hover {
    background: var(--primary-color);
    color: #fff;
    gap: 11px;
}

/* ════════ Service Card ════════ */
.svc-card {
    background: #fff;
    border: 1px solid #e8f0f8;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 48px rgba(41, 128, 175, 0.14);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    will-change: transform;
}

.svc-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(41, 128, 175, 0.14);
    border-color: rgba(41, 128, 175, 0.35);
}

/* ── Image wrapper ── */
.svc-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
}

.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.svc-card:hover .svc-img {
    transform: scale(1.06);
}

/* ── "Most Popular" badge ── */
.svc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    pointer-events: none;
}

/* ── Card body ── */
.svc-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.svc-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0;
    line-height: 1.3;
}

.svc-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* ── Card link ── */
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.01em;
    margin-top: 6px;
    transition:
        gap 0.2s,
        color 0.2s;
}

.svc-link:hover {
    gap: 10px;
    color: #1a6a93;
}

/* ── Bottom CTA strip ── */
.svc-bottom-cta {
    margin-top: 52px;
    padding: 36px 24px;
    background: linear-gradient(135deg, #eaf4fb 0%, #f0f8f5 100%);
    border: 1px solid #d6eaf6;
    border-radius: 20px;
}

.svc-bottom-cta h4 {
    width: 50%;
    font-weight: bold;
}

.svc-bottom-cta p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 16px;
    font-weight: 500;
}

.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a6a93 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(41, 128, 175, 0.32);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        gap 0.2s;
}

.svc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(41, 128, 175, 0.42);
    gap: 12px;
    color: #fff;
}

/* ════════ Responsive ════════ */
@media (max-width: 991px) {
    .svc-header {
        margin-bottom: 36px;
    }

    .svc-bottom-cta h4 {
        width: 100%;
        font-weight: bold;
    }
}

@media (max-width: 575px) {
    .svc-title {
        font-size: 1.55rem;
    }

    .svc-body {
        padding: 18px 18px 22px;
    }

    .svc-bottom-cta {
        margin-top: 36px;
        padding: 28px 16px;
    }

    .svc-bottom-cta h4 {
        width: 100%;
        font-weight: bold;
    }
}

/* ════════════════════════════════════════════════
   Experience Dental Section
   ════════════════════════════════════════════════ */

/* ── Wrapper ── */
.exp-section {
    background: #fff;
}

/* ── Content side ── */
.exp-content {
    padding-right: 12px;
}

/* Eyebrow */
.exp-eyebrow {
    display: inline-block;
    background: rgba(41, 128, 175, 0.12);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* Heading */
.exp-title {
    font-size: clamp(1.65rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.exp-title-highlight {
    color: var(--primary-color);
}

/* Body paragraphs */
.exp-text {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 14px;
}

/* ── Credential chips ── */
.exp-cred-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.exp-cred {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.855rem;
    font-weight: 600;
    color: #0d1b2a;
    background: #f8fbff;
    border: 1px solid #e0edf7;
    border-radius: 10px;
    padding: 10px 14px;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.exp-cred:hover {
    background: #eaf4fb;
    border-color: rgba(41, 128, 175, 0.4);
}

.exp-cred-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--secondary-color);
    color: #fff;
}

/* ── CTA row ── */
.exp-cta-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.exp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a6a93 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(41, 128, 175, 0.32);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        gap 0.2s;
}

.exp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(41, 128, 175, 0.42);
    gap: 12px;
    color: #fff;
}

.exp-learn-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid rgba(41, 128, 175, 0.3);
    padding-bottom: 2px;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.exp-learn-link:hover {
    color: #1a6a93;
    border-color: #1a6a93;
}

/* ════════ Image Card ════════ */
.exp-img-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    width: 100%;
}

.exp-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 60px rgba(13, 27, 42, 0.13);
    transition: transform 0.45s ease;
}

.exp-img-card:hover .exp-img {
    transform: scale(1.02);
}

/* ── Floating stats card (bottom-left) ── */
.exp-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border: 1px solid #e0edf7;
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 32px rgba(13, 27, 42, 0.1);
    animation: expFloatPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.35s;
}

@keyframes expFloatPop {
    from {
        transform: scale(0.75) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.exp-float-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.exp-float-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.exp-float-num sup {
    font-size: 0.85rem;
}

.exp-float-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.exp-float-divider {
    width: 1px;
    height: 40px;
    background: #e0edf7;
    flex-shrink: 0;
}

/* ── Rating badge (top-right) ── */
.exp-rating-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #0d1b2a;
    color: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 6px 20px rgba(13, 27, 42, 0.22);
    animation: expRatingPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.5s;
}

@keyframes expRatingPop {
    from {
        transform: scale(0.75) translateY(-8px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.exp-rating-num {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
}

.exp-rating-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ════════ Responsive ════════ */
@media (max-width: 991px) {
    .exp-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .exp-float-card {
        bottom: -14px;
        left: -10px;
    }

    .exp-rating-badge {
        top: -12px;
        right: -10px;
    }
}

@media (max-width: 767px) {
    .exp-cred-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .exp-title {
        font-size: 1.5rem;
    }

    .exp-float-card {
        bottom: -10px;
        left: -6px;
        padding: 12px 14px;
        gap: 12px;
    }

    .exp-float-num {
        font-size: 1.3rem;
    }

    .exp-rating-badge {
        top: -10px;
        right: -6px;
        padding: 8px 12px;
    }

    .exp-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ════════════════════════════════════════════════
   Step Section
   ════════════════════════════════════════════════ */

/* ── Wrapper ── */
.step-section {
    background: linear-gradient(160deg, #eaf4fb 0%, #f0f8f4 100%);
}

/* ── Section header ── */
.step-header {
    max-width: 620px;
    margin: 0 auto 52px;
}

.step-eyebrow {
    display: inline-block;
    background: rgba(41, 128, 175, 0.12);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.step-title {
    font-size: clamp(1.65rem, 3.8vw, 2.25rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.step-title-highlight {
    color: var(--primary-color);
}

.step-subtitle {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ════════ Steps grid ════════ */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 52px;
}

/* ── Individual card ── */
.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px 32px;
    background: #fff;
    border: 1px solid #e0edf7;
    border-right: none;
    transition:
        transform 0.26s ease,
        box-shadow 0.26s ease;
}

.step-card:first-child {
    border-radius: 20px 0 0 20px;
}

.step-card--last {
    border-right: 1px solid #e0edf7;
    border-radius: 0 20px 20px 0;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(41, 128, 175, 0.13);
    z-index: 1;
}

/* ── Step number badge ── */
.step-num-wrap {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(41, 128, 175, 0.38);
}

.step-num-wrap--accent {
    background: var(--secondary-color);
    box-shadow: 0 4px 14px rgba(58, 167, 112, 0.38);
}

.step-num {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* ── Icon circle ── */
.step-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(41, 128, 175, 0.08);
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 20px;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.25s;
}

.step-icon-wrap--accent {
    background: rgba(58, 167, 112, 0.1);
    color: var(--secondary-color);
}

.step-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
}

.step-card:hover .step-icon-wrap--accent {
    background: var(--secondary-color);
}

/* ── Step body ── */
.step-body {
    flex: 1;
}

.step-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.855rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── Arrow connector (between cards) ── */
.step-connector {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #d0e8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-connector::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg) translateX(-1px);
}

/* ── Bottom CTA ── */
.step-cta {
    margin-top: 0;
}

.step-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a6a93 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(41, 128, 175, 0.32);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        gap 0.2s;
}

.step-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(41, 128, 175, 0.42);
    gap: 12px;
    color: #fff;
}

/* ════════ Responsive ════════ */
@media (max-width: 1023px) {
    .step-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .step-card {
        border: 1px solid #e0edf7;
        border-radius: 20px !important;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 575px) {
    .step-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .step-header {
        margin-bottom: 36px;
    }

    .step-icon-wrap {
        width: 60px;
        height: 60px;
    }
}

/* ════════════════════════════════════════════════
   Why Section
   ════════════════════════════════════════════════ */

/* ── Full section ── */
.why-section {
    overflow: hidden;
}

/* ── Top block (gradient bg) ── */
.why-top {
    background: linear-gradient(135deg, #1a9e7a 0%, #2980af 100%);
    position: relative;
}

/* ── Decorative tooth blobs ── */
.why-deco {
    position: absolute;
    top: 20px;
    pointer-events: none;
    opacity: 0.7;
}

.why-deco--left {
    left: 24px;
}
.why-deco--right {
    right: 24px;
}

/* ── Section heading ── */
.why-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.why-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin: 0;
}

/* ════════ Cards grid ════════ */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* ── Card ── */
.why-card {
    background: #f0f7e8;
    border-radius: 20px;
    padding: 28px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        transform 0.26s ease,
        box-shadow 0.26s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

/* ── Card icon ── */
.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: white;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.25s;
}

.why-card:hover .why-card-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
}

/* ── Card text ── */
.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 0.845rem;
    color: #3d5266;
    line-height: 1.7;
    margin: 0;
}

/* ── Stats 4×2 grid ── */
.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 48px;
}

.why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.why-stat:nth-child(4n) {
    border-right: none;
}

.why-stat:nth-child(n + 5) {
    border-bottom: none;
}

.why-stat-num {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.why-stat-num sup {
    font-size: 1.1rem;
    font-weight: 700;
}

.why-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.35;
    text-align: center;
}

/* ── CTA pill ── */
.why-cta {
    padding-top: 8px;
}

.why-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0f7e8;
    color: #1a9e7a;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 16px 44px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s,
        color 0.2s;
}

.why-cta-btn:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #17896a;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.18),
        0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ════════ Responsive ════════ */
@media (max-width: 1023px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-stat:nth-child(4n) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .why-stat:nth-child(2n) {
        border-right: none;
    }

    .why-stat:nth-child(n + 5) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .why-stat:nth-child(n + 7) {
        border-bottom: none;
    }

    .why-deco {
        display: none;
    }
}

@media (max-width: 767px) {
    .why-top {
        padding: 52px 0 60px;
    }

    .why-title {
        font-size: 1.9rem;
    }

    .why-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 575px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-title {
        font-size: 1.65rem;
    }

    .why-stat-num {
        font-size: 1.8rem;
    }
}

/* ════════════════════════════════════════════════
   Footer Styles
   ════════════════════════════════════════════════ */

.ft-main {
    background-color: #eaf4e1; /* Very light green background as per reference */
    padding: 80px 0 30px;
    color: #475569;
    font-family: inherit;
}

.ft-top-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
}

/* Phone Pill Button */
.ft-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.ft-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ft-phone-icon {
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-phone-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1b2a;
}

/* Column Titles */
.ft-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d1b2a;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    position: relative;
}

/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-links li {
    margin-bottom: 12px;
}

.ft-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition:
        color 0.2s,
        padding-left 0.2s;
}

.ft-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Address & Email */
.ft-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.ft-email {
    color: #0d1b2a;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    transition: color 0.2s;
}

.ft-email:hover {
    color: var(--primary-color);
}

/* Working Hours */
.ft-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ft-hours .day {
    color: #64748b;
}

.ft-hours .time {
    color: #0d1b2a;
    font-weight: 600;
}

/* Bottom Strip */
.ft-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ft-copy {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.ft-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ft-legal a {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
}

.ft-legal a:hover {
    color: var(--primary-color);
}

.ft-managed {
    font-size: 0.85rem;
    color: #64748b;
}

.ft-managed a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

/* Social Icons */
.ft-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ft-socials a {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.2s;
}

.ft-socials a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Grid */
@media (max-width: 991px) {
    .ft-main {
        padding: 60px 0 30px;
    }

    .ft-top-title {
        text-align: center;
    }

    .ft-phone-wrap {
        display: flex;
        justify-content: center;
    }

    .ft-socials {
        justify-content: center;
    }

    .ft-col-title {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .ft-bottom .row > div {
        margin-bottom: 20px;
    }
    .ft-bottom .row > div:last-child {
        margin-bottom: 0;
    }
}

/* ════════════════════════════════════════════════
   FAQ Section Styles
   ════════════════════════════════════════════════ */

.faq-section {
    background-color: #fff;
    overflow: hidden;
}

/* Left Info Card */
.faq-info-card {
    background: linear-gradient(135deg, #7be7df 0%, #3aa770 100%);
    padding: 60px 40px;
    border-radius: 30px;
    color: #0d1b2a;
    height: 100%;
    position: relative;
}

.faq-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.6);
    display: block;
    margin-bottom: 15px;
}

.faq-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* Satisfaction Box */
.faq-satisfaction-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.satisfaction-check {
    width: 24px;
    height: 24px;
    background: #3aa770;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satisfaction-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d1b2a;
}

.satisfaction-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

/* Accordion Pill Style */
.faq-accordion .accordion-item {
    border: none;
    background: #f4f6f0;
    border-radius: 20px !important;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    background: #e9ede2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button {
    background: transparent;
    border-radius: 20px !important;
    padding: 20px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
}

.faq-accordion .faq-num {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Custom Icon (Plus) */
.faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.8rem;
    font-weight: 300;
    color: #64748b;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        background 0.3s,
        color 0.3s;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background: var(--secondary-color);
    color: #fff;
}

.faq-accordion .accordion-body {
    padding: 0 35px 25px 65px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .faq-info-card {
        padding: 40px 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    .faq-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

/* Testimonial Section */
#testimonials-section {
    background-color: #f4f6f0;
}

.testimonial-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-card {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: white;
    /* border: 1px solid red; */
}

.testimonial-card .testimonial-card-wrapper .testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-card .testimonial-card-wrapper .testimonial-img img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ════════════════════════════════════════════════
   Blog Section Styles
   ════════════════════════════════════════════════ */

.blog-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.blog-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-eyebrow {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
}

.eyebrow-accent {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.blog-main-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-thumb-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.08);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.8rem;
}

.author-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.blog-date {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.blog-title {
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card:hover .blog-title a {
    color: var(--secondary-color);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Button More Tips */
.btn-more-tips {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 800;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(26, 158, 122, 0.2);
}

.btn-more-tips:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(58, 167, 112, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0;
    }
    .blog-header {
        margin-bottom: 40px;
        text-align: center;
    }
    .eyebrow-wrapper {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 1.2rem;
    }
    .blog-content {
        padding: 20px;
    }
}

/* ════════════════════════════════════════════════
   Who We Are / Hero Section (Image Style)
   ════════════════════════════════════════════════ */
.who-we-are-section {
    padding: 80px 0;
    background-color: #f8fbff;
}

.who-we-are-wrapper {
    background-color: #f4f6f0;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.who-label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.who-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.who-slashes {
    color: #1a9e7a;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 400;
}

.who-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.15;
    margin-bottom: 30px;
}

.who-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-desc strong {
    color: #0d1b2a;
    font-weight: 700;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.who-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.who-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.who-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: #2980af;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(41, 128, 175, 0.25);
    font-size: 1.05rem;
}

.who-btn:hover {
    background-color: #1a6a93;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(41, 128, 175, 0.35);
    color: #fff;
}

.who-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.who-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.who-img-wrap:hover .who-img {
    transform: scale(1.03);
}

@media (max-width: 1199px) {
    .who-we-are-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 991px) {
    .who-we-are-wrapper {
        padding: 40px 30px;
    }
    .who-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .who-img-wrap {
        margin-top: 40px;
    }
    .who-title {
        font-size: 2.1rem;
    }
    .who-we-are-section {
        padding: 50px 0;
    }
}
