/* ================================
   Base CSS Start
   Purpose: Global website base styling
================================ */

html,
body {
    width: 100%;
    overflow-x: hidden;
}


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
}


/* ================================
   Global Container Start
   Purpose: Har section same width follow kare
================================ */

.cv-container {
    width: min(var(--cv-container, 1180px), calc(100% - var(--cv-container-gap, 32px)));
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

/* ================================
   Global Container End
================================ */

.cv-site-main {
    min-height: 55vh;
}



/* ================================
   Typography Start
   Purpose: Consistent heading styles
================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    margin-top: 0;
    font-weight: 700;
}

input,
button,
textarea,
select {
    font-family: 'Poppins', sans-serif;
}

/* ================================
   Typography End
================================ */


/* ================================
   Global Slider Arrows
================================ */

.cv-slider-arrow {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #ff4d86;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,.22);
    z-index: 20;
}

.cv-slider-arrow i {
    font-size: 12px;
}


.cv-breadcrumb {
    margin: 0 0 18px;
    font-size: 16px;
  
}

.cv-breadcrumb a {
    color: #ff4d86;
    text-decoration: none;
}

.cv-breadcrumb span {
    margin-right: 5px;
}


/*pagination css */

.cv-pagination {
    width: 100%;
    margin: 58px 0 0;
    display: flex;
    justify-content: center;
}

.cv-pagination .navigation {
    margin: 0;
}

.cv-pagination h2,
.cv-pagination .screen-reader-text {
    display: none;
}

.cv-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.cv-pagination .page-numbers {
    min-width: 30px;
    height: 30px;
    padding: 0 9px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(17, 24, 39, .08);
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.cv-pagination .page-numbers.current {
    background: #ff4f86;
    border-color: #ff4f86;
    color: #fff;
}

.cv-pagination a.page-numbers:hover {
    background: #670BFF;
    border-color: var(--cv-primary);
    color: #fff;
    transform: translateY(-2px);
}

.cv-pagination .dots {
    border: 0;
    box-shadow: none;
    background: transparent;
    min-width: 18px;
    padding: 0;
}

@media (max-width: 575px) {
    .cv-pagination {
        margin-top: 38px;
    }

    .cv-pagination .page-numbers {
        min-width: 28px;
        height: 28px;
        border-radius: 7px;
        font-size: 12px;
    }
}
/*pagination css */

/*404 page css */

.cv-error-page {
    background: #fff;
    padding: 18px 0 80px;
}

.cv-error-wrap {
    min-height: 560px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.cv-error-graphic {
    display: flex;
    justify-content: center;
}

.cv-error-circle {
    width: 430px;
    height: 430px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff1f6;
}

.cv-error-circle i {
    color: #ff4f86;
    font-size: 190px;
    opacity: .95;
}

.cv-error-content {
    text-align: center;
}

.cv-error-code {
    color: #ff4f86;
    font-size: 190px;
    line-height: .85;
    font-weight: 900;
}

.cv-error-content h1 {
    margin: 32px 0 22px;
    color: #11143d;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
}

.cv-error-content p {
    margin: 0 0 42px;
    color: #11143d;
    font-size: 24px;
    line-height: 1.4;
}

.cv-error-btn {
    min-width: 244px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4f86;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.cv-error-btn:hover {
    background: #670BFF;
    color: #fff;
}

@media (max-width: 991px) {
    .cv-error-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cv-error-circle {
        width: 320px;
        height: 320px;
    }

    .cv-error-circle i {
        font-size: 135px;
    }

    .cv-error-code {
        font-size: 130px;
    }

    .cv-error-content h1 {
        font-size: 38px;
    }

    .cv-error-content p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .cv-error-page {
        padding-bottom: 55px;
    }

    .cv-error-circle {
        width: 240px;
        height: 240px;
    }

    .cv-error-circle i {
        font-size: 100px;
    }

    .cv-error-code {
        font-size: 95px;
    }

    .cv-error-content h1 {
        font-size: 30px;
    }

    .cv-error-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cv-error-btn {
        min-width: 190px;
        height: 46px;
        font-size: 18px;
    }
}
/*404 page css */



/*pages css */
.cv-page {
    background: #fff;
    padding: 18px 0 70px;
}

.cv-page-content h1 {
    margin: 0 0 22px;
    color: #11143d;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
}

.cv-page-body {
    color: #172554;
    font-size: 15px;
    line-height: 1.8;
}

.cv-page-body p {
    margin: 0 0 16px;
}

.cv-page-body h2,
.cv-page-body h3 {
    color: #11143d;
    font-weight: 900;
    margin: 28px 0 12px;
}

.cv-page-body a {
    color: #ff4f86;
    font-weight: 700;
}

@media (max-width: 575px) {
    .cv-page {
        padding: 14px 0 55px;
    }

    .cv-page-content h1 {
        font-size: 28px;
    }
}
/*pages css */


/*search page css */
.cv-search-header {
    margin-bottom: 28px;
}

.cv-search-header h1 {
    margin: 0 0 8px;
    color: #11143d;
    font-size: 34px;
    font-weight: 900;
}

.cv-search-header h1 span {
    color: #ff4f86;
}

.cv-search-header p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.cv-search-form {
    max-width: 500px;
    margin: 20px auto 0;
    display: flex;
    gap: 10px;
}

.cv-search-form input {
    flex: 1;
    height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0 16px;
}

.cv-search-form button {
    height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #ff4f86;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
/*search page css */

/*contact page css */

.cv-page-content:has(.wpcf7) {
    padding: 36px 65px 36px 30px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(17, 24, 39, .12);
}

.cv-page-content:has(.wpcf7) h1 {
    color: #11143d;
    font-size: 42px;
    margin-bottom: 28px;
}

.wpcf7 form p {
    margin-bottom: 18px;
}

.wpcf7 label {
    display: block;
    color: #11143d;
    font-size: 14px;
    font-weight: 800;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #11143d;
    font-size: 15px;
    outline: 0;
    transition: .2s ease;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
    height: 48px;
    padding: 0 15px;
}

.wpcf7 textarea {
    min-height: 170px;
    padding: 14px 15px;
    resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #ff4f86;
    box-shadow: 0 0 0 3px rgba(255, 79, 134, .14);
}

.wpcf7 input[type="submit"] {
    min-width: 145px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #ff4f86;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #670BFF;
    transform: translateY(-2px);
}

.wpcf7-spinner {
    display: none;
}

@media (max-width: 575px) {
    .cv-page-content:has(.wpcf7) {
        padding: 25px 45px 25px 15px;
        border-radius: 14px;
    }

    .cv-page-content:has(.wpcf7) h1 {
        font-size: 32px;
    }
}

/*contact page css */

/* ================================
   Base CSS End
================================ */