/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center;
    background: var(--primary); color: var(--white);
    border: none; border-radius: 30px; cursor: pointer;
    font-size: 14px; font-weight: 700; letter-spacing: .02em;
    line-height: 1; padding: 18px 18px 18px 22px;
    text-transform: uppercase; position: relative; z-index: 1;
    transition: all .3s ease; white-space: nowrap; text-align: center;
}
.btn::after {
    content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    margin-left: 45px; font-size: 12px;
}
.btn::before {
    content: ""; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); width: 50px; height: 50px;
    background: var(--blue); border-radius: 30px;
    z-index: -1; transition: all .3s ease;
}
.btn:hover::before { width: 100%; }
.btn:hover { color: var(--white); }
.btn.btn-two::after { display: none; }
.transparent-btn {
    border: 2px solid var(--primary); background: transparent; color: var(--primary);
}
.transparent-btn::before, .transparent-btn::after { display: none; }
.transparent-btn:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white::before { background: var(--secondary); }
.btn-white:hover { color: var(--white); }

/* ---------- Section Titles ---------- */
.section-title-two { margin-bottom: 30px; }
.section-title-two .sub-title {
    display: inline-block; color: var(--primary);
    font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; margin-bottom: 15px;
    position: relative; padding-left: 45px;
}
.section-title-two .sub-title::before {
    content: ""; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 30px; height: 2px;
    background: var(--primary);
}
.section-title-two .title {
    font-size: var(--fs-section-title); font-weight: 800; color: var(--secondary);
}
.section-title-two.white-title .title,
.section-title-two.white-title .sub-title { color: var(--white); }
.section-title-two.white-title .sub-title::before { background: var(--white); }
.section-padding { padding: var(--section-padding-y) 0; }
.section-bg { background: var(--section-bg); }
.section-dark { background: var(--secondary); }
.section-dark .section-title-two .title { color: var(--white); }
.section-dark .section-title-two .sub-title { color: var(--white); }
.section-dark .section-title-two .sub-title::before { background: var(--primary); }
.section-dark p { color: rgba(255,255,255,.75); }
.section-dark .features-item-two {
    background: var(--white); border-radius: 10px;
    padding: 25px 20px; box-shadow: 0 4px 15px rgba(0,0,0,.12);
}
.section-dark .features-content-two .title { color: var(--secondary); }
.section-dark .features-content-two p { color: var(--body-color); }
.section-dark .features-content-two p { width: 100%; }
.section-dark .elementor-icon-list-items li { color: rgba(255,255,255,.85); }
.section-dark .cta-progress-wrap .heading { color: var(--secondary); }
