/*
Theme Name: CSE
Author: Mozliweb
Description: A theme designed for CSE firm
Tested up to: 7.0
Requires PHP: 8.4
Version: 1.0
License: Proprietary
License URI: #
*/

@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('assets/fonts/Inter18pt-Regular.woff2') format('woff2');
}
@font-face {
    font-family: "Inter";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('assets/fonts/Inter18pt-Medium.woff2') format('woff2');
}
@font-face {
    font-family: "Inter";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('assets/fonts/Inter18pt-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: "Inter";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('assets/fonts/Inter18pt-Bold.woff2') format('woff2');
}
:root {
    --blue-card-bckgd: #F9FBFE;
    --green: #3a9a3a;
    --green-text: #52900E;
    --green-card-stroke: #E9EDDE;
    --green-card-bckgd: #FAFBF9;
    --green-card-sc-bckgd: #EDF4E0;
    --orange: #F89A0A;
    --orange-card-bckgd: #FDFDFB;
    --orange-card-stroke: #FDF7EC;
    --orange-card-sc-bckgd: #FEF0D4;
}
.section-title {
    font-size: 2rem;
    font-size: clamp(1.6rem, 3vw + 1rem, 2rem);
    line-height: 1.2;
}
.btn:focus-visible {
    outline: 3px solid #0f3fa8aa;
    outline-offset: 2px;
}
.btn-green {
    color: #fff;
    padding: 14px;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(#52900E 0%, #A3CE74 100%);
}
.btn-blue {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(#0258CA 0%, #79AAE2 100%);
    color: #fff;
}
.btn-orange {
    padding: 14px;
    width: 100%;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(#F89A0A 0%, #FBC26A 100%);
}
/* ---------- BOTTOM CTA BAR ---------- */
.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 1rem 1rem;
    padding: 28px 40px;
    border-radius: 18px;
    background: linear-gradient(#0A69DE 0%, #0346A4 100%);
    color: #fff;
}
.cta-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-bar-left .icon-circle {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 1);
}
.cta-bar-left .icon-circle svg {
    width: 30px;
    height: 30px;
}
.cta-bar-left h4 {
    margin-bottom: 4px;
    font-size: min(max(1.2rem, 2.7vw), 1.6rem);
}
.cta-bar-left p {
    opacity: .85;
    font-size: min(max(.8rem, 1.5vw), 0.9rem);
}
.button_full span.main{
    font-size:min(max(1.2rem,2.7vw),1.6rem);
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 650px) {
    .section-title {
        margin-bottom: 36px;
    }
    .cta-bar-left .icon-circle {
        display: none;
    }
}
@media (max-width: 480px) {
    .cta-bar.bar-bottom .cta-bar-right .sub {
        text-align: center;
    }
    .cta-bar.bar-bottom .cta-bar-right {
        justify-content: center;
        width: 100%;
    }
}