/* =====================================================
   BASE & RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: 1740px;
    max-width: 95%;
    margin: auto;
}

/* =====================================================
   SVC SECTION
===================================================== */
.svc-section {
    background: #eceeef;
    /* padding: 80px 0 50px; */
}

.svc-heading {
    text-align: center;
    margin-bottom: 55px;
}

.svc-heading h2 {
    color: #082753;
    font-size: 50px;
    font-weight: 500;
    margin: 18px 0 0;
    line-height: 1.3;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.svc-grid>* {
    height: 100%;
}


.svc-illustration,
.svc-list,
.svc-cards {
    height: 100%;
}

/* .svc-list,
.svc-cards {
    display: flex;
    flex-direction: column;
} */

.svc-illustration {
    position: relative;
    height: 100%;
}

.svc-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.svc-dots {
    position: absolute;
    left: -10px;
    bottom: -18px;
    width: 60px;
    height: 40px;
    background-image: radial-gradient(#c9a02c 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: -1;
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.svc-item {
    display: flex;
    gap: 20px;
}

.svc-icon {
    width: 61px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: #9BC400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-icon svg {
    width: 40px;
    height: 35px;
}

.svc-item h3 {
    color: #082753;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-item p {
    color: #000;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.6;
}

.svc-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-card {
    flex: 1;
    margin-top: 0;
}

.svc-card-icon {
    width: 61px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card-icon svg {
    width: 40px;
    height: 40px;
}

.svc-card h3 {
    color: #082753;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-card p {
    color: #17331f;
    font-size: 18px;
    font-family: 'Roboto';
    line-height: 1.6;
}

/* =====================================================
   CLIENT CATEGORIES SECTION
===================================================== */
.cat-section {
    background: linear-gradient(180deg, #042045 0%, #042147 49%, #0C4EA6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cat-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 100px;
    align-items: center;
}

.cat-text h2 {
    color: #c7cdd7;
    font-size: 45px;
    font-weight: 400;
    margin: 18px 0 40px;
}

.cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cat-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cat-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #fcfcfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.cat-check svg {
    width: 11px;
    height: 11px;
}

.cat-item h3 {
    color: #f2f4f7;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.cat-item p {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    font-family: 'Roboto';
}

.cat-image {
    position: relative;
    height: 380px;
}

.cat-image .cat-accent {
    position: absolute;
    right: -14px;
    bottom: -40px;
    width: 88%;
    height: 82%;
    background: #9BC400;
    border-radius: 8px;
    z-index: 0;
}

.cat-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

/* =====================================================
   WHY CHOOSE ME SECTION
===================================================== */
.wc-section1 {
    padding: 25px 10px;
}

.wc-heading1 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 51px;
}

.wc-heading1 h2 {
    color: #062246;
    font-size: 50px;
    font-weight: 400;
    margin: 18px 0 0;
}

.wc-content1 {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 40px;
    align-items: center;
}

.wc-content1 img {
    width: 100%;
    margin: 0 auto;
}

.wc-text1 p {
    color: #070707;
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 18px;
}

.wc-text1 strong {
    color: #082753;
}

.wc-image1 img {
    width: 90%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.wc-benefits1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: linear-gradient(180deg, #042045 0%, #042147 49%, #0C4EA6 100%);
    border-radius: 16px;
    padding: 35px 45px;
}

.wc-benefit-right {
    flex: 1;
}

.wc-benefit-right h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
}

.wc-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.wc-benefit-item {
    display: flex;
    align-items: flex-start;
    font-family: 'Roboto';
    gap: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
}

.wc-benefit-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    padding: 2px;
    background: #f9f9f8;
    color: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.wc-benefits-icon {
    flex-shrink: 0;
    width: 320px;
}

.wc-benefits-icon img {
    width: auto;
    height: 90%;
    display: block;
    border-radius: 12px;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */



@media (max-width: 1500px) {

    .svc-illustration img {
        height: 104%;
    }
}





/* --- 1500px --- */
@media (max-width: 1500px) {
    .wc-text1 p {
        color: #070707;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 18px;		font-weight: bold;
    }

    .svc-illustration img {
        height: 104%;
    }

    .svc-heading h2 {
        font-size: 42px;
    }

    .wc-heading1 h2 {
        font-size: 42px;
    }

    .cat-text h2 {
        font-size: 38px;
    }
}

/* --- 1300px --- */
@media (max-width: 1300px) {
    .wc-content1 {
        grid-template-columns: 40% 60%;
        gap: 30px;
    }

    .cat-grid {
        gap: 30px;
    }

    .wc-benefits1 {
        padding: 30px 35px;
        gap: 30px;
    }

    .wc-benefit-right h3 {
        font-size: 28px;
    }

    .wc-benefits-list {
        gap: 18px 30px;
    }

    .wc-benefit-item {
        font-size: 16px;
    }

    .wc-benefits-icon {
        width: 280px;
    }

    .svc-grid {
        gap: 30px;
    }

    .svc-card {
        padding: 25px 28px;
    }
}

/* --- 1200px --- */
@media (max-width: 1200px) {
    .svc-heading h2 {
        font-size: 38px;
    }

    .svc-item h3,
    .svc-card h3 {
        font-size: 16px;
    }

    .svc-item p,
    .svc-card p {
        font-size: 15px;
    }

    .cat-text h2 {
        font-size: 34px;
    }

    .cat-item h3 {
        font-size: 17px;
    }

    .cat-item p {
        font-size: 15px;
    }

    .wc-heading1 h2 {
        font-size: 38px;
    }

    .wc-content1 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .wc-benefits1 {
        padding: 28px 30px;
        flex-wrap: wrap;
    }

    .wc-benefit-right h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .wc-benefits-list {
        gap: 16px 25px;
    }

    .wc-benefit-item {
        font-size: 15px;
    }

    .wc-benefits-icon {
        width: 250px;
    }
}

/* --- 1100px --- */
@media (max-width: 1100px) {

    .svc-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .svc-illustration {
        max-width: 380px;
        margin: 0 auto;
    }

    .cat-grid {
        display: flex;
        /* flex-direction: column; */
        gap: 50px;
        align-items: center;
    }


    .svc-section {
        padding: 60px 0 40px;
    }

    .svc-heading h2 {
        font-size: 34px;
    }



    .cat-list {
        grid-template-columns: 1fr;
    }

    .cat-image {
        height: 300px;
        width: 100%;
        margin-top: 10px;
    }

    .cat-section {
        padding: 60px 0px;
    }

    .cat-text h2 {
        font-size: 30px;
        margin: 12px 0 25px;
    }

    /* WC */
    .wc-content1 {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        align-content: center;
    }

    .wc-text1 p {
        font-size: 14px;
        line-height: 1.8;
    }

    .wc-image1 img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .wc-benefits1 {
        flex-direction: column;
        gap: 30px;
        padding: 30px 25px;
    }

    .wc-benefits-icon {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .wc-benefits-icon img {
        width: 100%;
        height: auto;
    }

    .wc-benefit-right h3 {
        font-size: 24px;
        text-align: center;
    }

    .wc-benefits-list {
        gap: 14px 20px;
    }

    .wc-benefit-item {
        font-size: 15px;
    }

    .wc-heading1 h2 {
        font-size: 34px;
    }

    .wc-section1 {
        padding: 60px 15px;
    }
}

/* --- 992px --- */
@media (max-width: 992px) {
    .svc-heading h2 {
        font-size: 30px;
        margin: 10px 0 0;
    }

    .svc-heading {
        margin-bottom: 35px;
    }

    .svc-item {
        gap: 14px;
    }

    .svc-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .svc-icon svg {
        width: 32px;
        height: 28px;
    }

    .svc-card {
        padding: 20px 24px;
        gap: 14px;
    }

    .svc-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .svc-card-icon svg {
        width: 32px;
        height: 32px;
    }

    .cat-grid {
        gap: 30px;
    }

    .cat-text h2 {
        font-size: 28px;
    }

    .cat-list {
        gap: 25px;
    }

    .cat-column {
        gap: 18px;
    }

    .cat-item h3 {
        font-size: 16px;
    }

    .cat-item p {
        font-size: 14px;
    }

    .cat-image {
        height: 260px;
    }

    .wc-heading1 {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .wc-heading1 h2 {
        font-size: 30px;
        margin: 10px 0 0;
    }

    .wc-benefits1 {
        padding: 25px 20px;
    }

    .wc-benefit-right h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .wc-benefits-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }

    .wc-benefit-item {
        font-size: 14px;
        line-height: 1.5;
    }

    .wc-benefit-check {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

/* --- 768px --- */
@media (max-width: 768px) {
    .svc-section {
        padding: 50px 0 60px;
    }

    .svc-heading h2 {
        font-size: 26px;
    }

    .cat-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .cat-image {
        height: 513px;
    }

    .svc-item h3,
    .svc-card h3 {
        font-size: 15px;
    }

    .svc-item p,
    .svc-card p {
        font-size: 14px;
    }

    .svc-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .svc-icon svg {
        width: 28px;
        height: 24px;
    }

    .svc-card {
        padding: 18px 20px;
    }

    .svc-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .svc-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .svc-list {
        gap: 24px;
    }

    .cat-section {
        padding: 50px 20px;
    }

    .cat-text h2 {
        font-size: 24px;
        margin: 10px 0 20px;
    }

    .cat-list {
        gap: 20px;
    }

    .cat-column {
        gap: 15px;
    }

    .cat-item {
        gap: 10px;
    }

    .cat-check {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .cat-check svg {
        width: 9px;
        height: 9px;
    }

    .cat-item h3 {
        font-size: 15px;
    }

    .cat-item p {
        font-size: 13px;
    }



    .wc-section1 {
        padding: 50px 15px;
    }

    .wc-heading1 {
        margin-bottom: 25px;
        margin-top: 20px;
    }

    .wc-heading1 h2 {
        font-size: 26px;
    }

    .wc-text1 p {
        font-size: 13px;
        line-height: 1.7;
    }

    .wc-benefits1 {
        padding: 22px 18px;
        gap: 25px;
    }

    .wc-benefit-right h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .wc-benefits-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wc-benefit-item {
        font-size: 14px;
        line-height: 1.5;
    }

    .wc-benefit-check {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-top: 2px;
    }

    .wc-benefits-icon {
        max-width: 280px;
    }
}

/* --- 576px --- */
@media (max-width: 576px) {
    .svc-heading h2 {
        font-size: 22px;
    }

    .svc-item h3,
    .svc-card h3 {
        font-size: 14px;
    }

    .svc-item p,
    .svc-card p {
        font-size: 13px;
    }

    .svc-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .svc-icon svg {
        width: 24px;
        height: 20px;
    }

    .svc-card {
        padding: 15px 16px;
        gap: 12px;
    }

    .svc-card-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .svc-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .svc-list {
        gap: 18px;
    }

    .svc-grid {
        gap: 20px;
    }

    .cat-text h2 {
        font-size: 20px;
    }

    .cat-item h3 {
        font-size: 14px;
    }

    .cat-item p {
        font-size: 12px;
    }

    .cat-image {
        height: 316px;
    }

    .cat-image .cat-accent {
        right: -8px;
        bottom: -12px;
        width: 92%;
        height: 85%;
    }

    .wc-heading1 h2 {
        font-size: 22px;
    }

    .wc-text1 p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .wc-benefits1 {
        padding: 18px 14px;
        gap: 20px;
        border-radius: 12px;
    }

    .wc-benefit-right h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .wc-benefit-item {
        font-size: 13px;
    }

    .wc-benefit-check {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 2px;
    }

    .wc-benefits-icon {
        max-width: 220px;
    }

    .wc-benefits-icon img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
}

/* --- 490px --- */
@media (max-width: 490px) {
    .wc-benefits-icon img {
        width: 100%;
        object-fit: cover;
        height: 180px;
        display: block;
        border-radius: 12px;
    }

    .svc-illustration {
        max-width: 100%;
    }

    .svc-illustration img {
        height: 90%;
    }

    .cat-image {
        height: 326px;
    }

    .wc-benefits1 {
        padding: 15px 12px;
        gap: 15px;
    }

    .wc-benefit-right h3 {
        font-size: 16px;
    }

    .wc-benefit-item {
        font-size: 12px;
        gap: 8px;
    }

    .svc-card {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .svc-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .svc-card p {
        font-size: 12px;
    }

    .svc-item h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .svc-item p {
        font-size: 12px;
    }
}

/* --- 400px --- */
@media (max-width: 400px) {
    .svc-heading h2 {
        font-size: 20px;
    }

    .svc-item {
        gap: 10px;
    }

    .svc-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .svc-icon svg {
        width: 20px;
        height: 16px;
    }

    .svc-card-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .svc-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .cat-text h2 {
        font-size: 18px;
    }

    .cat-item h3 {
        font-size: 13px;
    }

    .cat-item p {
        font-size: 11px;
    }

    .cat-image {
        height: 231px;
    }

    .wc-heading1 h2 {
        font-size: 20px;
    }

    .wc-benefits-icon img {
        height: 150px;
    }

    .wc-benefit-right h3 {
        font-size: 15px;
    }

    .wc-benefit-item {
        font-size: 11px;
    }

    .wc-text1 p {
        font-size: 11px;
    }
}