/**
 1. Root
 2. Initial
 3. Reusable Classes
 4. Components
 5. Layout
 6. Pages
 7. Utilities
 8. Media Queries
**/ 
/* 1. Root */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --inter-font: 'Inter', sans-serif;
    --primary-color: #3662E3;
    --secondary-color: #F7CE5A;
    --main-color-one: #232323;
    --paragraph-color: #555556;
    --paragraph-color-two: #CBCBCB;
    --border-color: #E1E1E1;
    --border-color-two: #C7CBCF;
    --scolor1: #F5F5F5; 
    --scolor2: #F7F7F7;
    --scolor3: #222222;
    --scolor4: #F5C344;
    --scolor5: #55AC68;
    --scolor6: #F44336;
    --scolor7: #F1F1F1;
    --success: #08B14D;
    --success-bg: #08B14D1A;
    --warning: #FF9900;
    --warning-bg: #FF99001A;
    --danger: #B92325;
    --danger-bg: #B923251A;
    --info: #007FFF;
    --info-bg: #007FFF1A;
    --color-15: #f76631;
}
/* 2. Initial */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
body {
    color: var(--paragraph-color);
    font-family: var(--inter-font);
}
a{
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
span {
    display: inline-block;
}
p {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
/* 3. Reusable Classes */
.custom-container {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 12px;
}
.bg-image-use {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.custom-sticky-top {
    position: sticky;
    top: 0;
}
.top-10 {
    top: 10px;
}
.top-15 {
    top: 15px;
}
.top-20 {
    top: 20px;
}
.top-30 {
    top: 30px;
}
.top-40 {
    top: 40px;
}
.top-50 {
    top: 50px;
}
.top-60 {
    top: 60px;
}
.rating-star-wraper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--scolor4);
}
.flex-1 {
    flex: 1;
}
.flex-180 {
    flex: 1 1 180px;
}
.flex-220 {
    flex: 1 1 220px;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.mw-500 {
    max-width: 500px;
}
.mw-450 {
    max-width: 450px;
}
.mw-400 {
    max-width: 400px;
}
.mw-300 {
    max-width: 300px;
}
.custom-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fvt-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--paragraph-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    &.selected {
        color: var(--primary-color);
    }
}
.oneline {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 1.4em;
}
.twoline {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 2.8em;
}
.threeline {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* height: 4.5em; */
}
/* Pagination */
.pagination-list {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    .pagination-item {
        .pagination-link {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #F5F5F5;
            color: var(--main-color-one);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            &.active {
                background-color: var(--primary-color);
                color: #FFFFFF;
            }
            &:hover {
                background-color: var(--primary-color);
                color: #FFFFFF;
            }
        }
    }
}
/* Cancellation Policy */
.cancellation-policy {
    padding: 24px;
    border-radius: 8px;
    background-color: var(--scolor1);
    .policy-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ec453333;
        color: #EC4433;
        margin-bottom: 12px;
    }
    .policy-des {
        margin: 10px 0 48px 0;
    }
}
/* Form settings */
.input-wraper {
    flex: 1 1 180px;
}
.custom-label {
    color: #222222;
}
.mb-10 {
    margin-bottom: 10px;
}
.custom-input {
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    color: var(--main-color-one);
    font-size: 0.875rem;
    cursor:pointer;
    &:focus {
        outline: none;
    }
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #FFFFFF;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    &::after {
        content: "\f00c";
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #fff;
        font-size: 10px;
    }
    &:checked {
        border-color: var(--primary-color);
        background-color: var(--primary-color);
    }
}
.password-show-wraper{
    position: relative;
    .show-hide-password {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--paragraph-color);
    }
}

.confirm-password-show-wraper{
    position: relative;
    .show-hide-confirm-password {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--paragraph-color);
    }
}
/* Select 2 */
.custom-select {
    border: none;
    border-radius: 8px !important;
    background: transparent;
    background-color: #F5F5F5;
    padding: 16px 20px;
    color: var(--paragraph-color);
    &.style2{
        border: 1px solid var(--border-color);
        background: #FFFFFF;
    }
    &:focus {
        outline: none;
    }
    &::placeholder {
        color: var(--paragraph-color);
    }
}
.custom-select + .select2 {
    span {
        display: block;
    }
    .select2-selection--single {
        height: auto;
        border: none;
        border-radius: 8px !important;
        background: transparent;
        background-color: #F5F5F5;
        padding: 16px 20px;
        .select2-selection__rendered {
            line-height: 1.5;
            padding: 0;
            color: var(--paragraph-color);
        }
        .select2-selection__arrow {
            all: unset;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            b {
                all: unset;
                border: solid var(--paragraph-color);
                border-width: 0 2px 2px 0;
                border-radius: 2px;
                display: inline-block;
                padding: 4px;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                margin: 3px 0 0 2px;
                transition: all 0.3s ease-in-out;
            }
        }
    }
    &.select2-container--open {
        .select2-selection__arrow {
            b {
                
                transform: rotate(-135deg);
                -webkit-transform: rotate(-135deg);
            }
        }
    }
}
.custom-select.style2  + .select2{
    .select2-selection--single{
        border: 1px solid var(--border-color);
        background: #FFFFFF;
    }
}

.custom-select.w-100 + .select2 {
    width: 100% !important;
}
.selectWithIcon {
    position: relative;
    .icon {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(calc(-50% - 2px));
        z-index: 1;
    }
}
.selectWithIcon .custom-select {
    padding-left: 40px;
}
.selectWithIcon .custom-select + .select2 {
    .select2-selection--single {
        padding-left: 45px;
    }
}
.select2-dropdown {
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    overflow: hidden;
    .select2-search--dropdown {
        padding: 18px 20px;
        .select2-search__field {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 8px 12px;
            &:focus {
                outline: none;
            }
        }
    }
    .select2-results__option {
        padding: 8px 20px;
    }
    &.select2-dropdown--up {
        margin-bottom: 8px;
    }
    &.select2-dropdown--below {
        margin-top: 8px;
    }
}
/* Budget filter */
.budget-filter-wraper {
    position: relative;
}
.budget-secletion-wraper {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    background-color: #fff;
    z-index: 3;
    min-width: 220px;
    display: none;
    &.open {
        display: block;
    }
    .inputs-wraper {
        display: flex;
        gap: 8px;
        align-items: end;
        margin-bottom: 12px;
        .price-wraper .custom-select{
            padding: 6px 12px;
            padding-left: 10px;
        }
    }
}
/* Image input placeholder  */
.image-input-placeholder-wraper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    .image-input-placeholder {
        position: relative;
        flex: 1 1 120px;
        max-width: 180px;
        height: 180px;
        border-radius: 6px;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        label {
            display: block;
            height: 100%;
            width: 100%;
            cursor: pointer;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .clear-btn {
            position: absolute;
            background-color: #fff;
            color: var(--scolor6);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 1px;
            right: 1px;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease-in-out;
        }
        &.image-add:hover {
            .clear-btn {
                opacity: 1;
            }
        }
    }
}
/* slick slider */
.slick-slide {
    margin: 0 8px;
}
/* Same slider height */
.slick-items-height-same {
    .slick-track {
        display: flex;
        align-items: stretch;
        .slick-slide {
            height: auto;
        }
        .slick-slide > div {
            height: 100%;
        }
    }
}
/* Custom Accordion */
.custom-accordion-wraper {
    .custom-accordion-item {
        padding: 16px 20px;
        border-radius: 8px;
        background-color: var(--scolor1);
        .custom-accordion-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .icon-down {
            display: block;
        }
        .icon-up{
            display: none;
        }
        &.active {
            .icon-down {
                display: none;
            }
            .icon-up{
                display: block;
            }
        }
        .custom-accordion-pera {
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            margin-top: 16px;
        }
    }
}
/* Breadcrumb */
.breadcrumb-area {
    .breadcrumb-list {
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
        justify-content: start;
        gap: 20px;
        li::marker {
            content: '- ';
        }
        li:first-child{
            padding-left: 0;
            &::marker {
                content: none;
            }
        }
        li:last-child{
            color: var(--primary-color);
            &::marker {
                color: var(--paragraph-color);
            }
        }
    }
    &.style-2 {
        .breadcrumb-list li{
            color: var(--main-color-one);
        }
    }
}
/* Speacing */
.pat-230 {
    padding-top: 230px;
}
.pat-120 {
    padding-top: 120px;
}
.pab-120 {
    padding-bottom: 120px;
}
.pat-60 {
    padding-top: 60px;
}
.pab-60 {
    padding-bottom: 60px;
}
.pat-40 {
    padding-top: 40px;
}
.pab-40 {
    padding-bottom: 40px;
}
.mt-80 {
    margin-top: 80px;
}
.mt-60 {
    margin-top: 60px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-40 {
    margin-bottom: 40px;
}
.second-title-width {
    max-width: 475px;
}
.second-title-width-md {
    max-width: 630px;
}
/*Text setting*/
h1, h2, h3, h4, h5, h6 {
    color: var(--main-color-one);
    margin-bottom: 0;
}
.main-title {
    font-size: 4rem;
    line-height: 1.125;
    font-weight: 600;
}
.title-2 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.title-3 {
    font-size: 3rem;
    line-height: 1.17;
}
.title-4 {
    font-size: 2rem;
    line-height: 1.37;
}
.subtitle-1 {
    font-size: 1.75rem;
    line-height: 1.14;
}
.subtitle-2 {
    font-size: 1.5rem;
    line-height: 1.5;
}
.subtitle-3 {
    font-size: 1.4rem;
    line-height: 1.45;
}
.subtitle-4 {
    font-size: 1.375rem;
    line-height: 1.45;
}
.sub-title {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5;
    display: inline-flex;
    text-transform: uppercase;
    gap: 4px;
}
.fs-lg {
    font-size: 1.25rem;
    line-height: 1.4;
}
.fs-md {
    font-size: 1.125rem;
    line-height: 1.33;
}

.fs-reg {
    font-size: 1rem;
    line-height: 1.5;
}
.fs-sm {
    font-size: 0.875rem;
    line-height: 1.43;
}
.fs-xs {
    font-size: 0.75rem;
    line-height: 1.33;
}
.fw_semibold {
    font-weight: 600;
}
.fw_medium {
    font-weight: 500;
}
.fw_regular {
    font-weight: 400;
}
/* Text color */
.primary-text {
    color: var(--primary-color);
}
.secondary-text {
    color: var(--secondary-color);
}
.black-text {
    color: var(--main-color-one);
}
.red-text {
    color: var(--scolor6);
}
.white-text {
    color: var(--scolor2);
}
.white-shade-text {
    color: var(--scolor2-1);
}
.green-text {
    color: var(--scolor5);
}
.yellow-text {
    color: var(--scolor5);
}
.yellow-text-two {
    color: var(--scolor6);
}
.paragraph-text {
    color: var(--paragraph-color);
}
.paragraph-text-two {
    color: var(--paragraph-color-two);
}
/* background color */
.white-bg {
    background-color: #fff;
}
.bg-gray {
    background-color:var(--scolor1);
}
.bg-gray-light {
    background-color:var(--scolor7);
}
.black-bg {
    background-color: var(--main-color-one);
}
.primary-bg {
    background-color: var(--primary-color);
}
.secondary-bg {
    background-color: var(--secondary-color);
}

/* 4. Components */
/* Buttons setting */
.cmn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; 
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.375;
    padding: 1rem 2.25rem;
    border-radius: 2.75rem;
    border: 1px solid transparent;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    &.md-btn {
        font-size: 0.875rem;
        line-height: 1.57;
        padding: 0.68rem 1.75rem;
    }
    &.sm-btn {
        border: none;
        padding: 0.375rem 0.94rem;
    }
    &.md-radius {
        border-radius: 0.5rem;
    }
}
.primary-btn {
    color: var(--scolor2);
    background-color: var(--primary-color);
    &.style2 {
        box-shadow: none;
    }
    &:hover {
        background-color: #fff;
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
}
.secondary-btn {
    color: var(--main-color-one);
    background-color: var(--secondary-color);
    &:hover {
        background-color: #fff;
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
}
.primary-btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
    &:hover {
        background-color: var(--primary-color);
        color: var(--scolor2);
    }
}
.black-btn {
    color: var(--scolor2);
    background-color: var(--scolor3);
    border-color: var(--scolor3);
    &:hover {
        background-color: var(--scolor2);
        color: var(--scolor3);
        border-color: var(--scolor3);
    }
}
.black-outline-btn {
    color: var(--main-color-one);
    border-color: var(--main-color-one);
    &:hover {
        background-color: var(--scolor3);
        color: var(--scolor2);
    }
}
.gray-btn {
    color: var(--main-color-one);
    background-color: var(--paragraph-color-two);
    border-color: var(--paragraph-color-two);
}
.store-btn a{
    background-color: var(--scolor2);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        width: 24px;
    }
    .text{
        display: flex;
        flex-direction: column;

    }
}
.slider-btn {
    height: 54px;
    width: 54px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
    &.next-arrow {
        background-color: var(--secondary-color);
        color: var(--main-color-one);     
    }
    &.prev-arrow {
        background-color: var(--primary-color);
        color: var(--scolor2);
        &:hover {
            background-color: var(--secondary-color);
            color: var(--main-color-one);  
        }  
    }
}
/* Tags and Badges */
.cmn-status-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.25;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    &.success {
        color: var(--success);
        background-color: var(--success-bg);
    }
    &.warning {
        color: var(--warning);
        background-color: var(--warning-bg);
    }
    &.danger {
        color: var(--danger);
        background-color: var(--danger-bg);
    }
    &.info {
        color: var(--info);
        background-color: var(--info-bg);
    }
}
.cmn-tag {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--main-color-one);
    padding: 9px 22px;
    border: 1px solid #22222229;
    border-radius: 48px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    &:hover {
        color: var(--scolor1);
        background-color: var(--primary-color);
        border-color: transparent;
    }
}
/* Custom Select 2 Setting */
.custom-select2 {
    position: relative;
    .dropdown-option-list {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 300px;
        overflow: auto;
        background: #fff;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        padding: 16px;
        z-index: 2;
        display: none;
    }
    &.show {
        .dropdown-option-list {
            display: flex;
        }
    }
    .dropdown-option {
        position: relative;
        cursor: pointer;
        &::after {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            z-index: 5;
            top: 8px;
            right: 8px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--scolor1);
            transition: all 0.3s ease-in-out;
        }
    }
    .dropdown-option.selected::after {
        border-color: var(--primary-color);
        background-color: var(--primary-color);
    }
}
/* Card Settings */
.single-features-card {
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    background-color: #fff;
    transition: all 0.3s linear;
    .icon {
        height: 80px;
        width: 80px;   
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 24px;
        img {
            max-height: 100%;
            max-width: 100%;
        }
    }
    &:hover {
        background-color: var(--secondary-color);
        border-color: transparent;
    }
}
/* Service card */
.service-card {
    padding: 16px;
    border-radius: 12px;
    height: 100%;
    background-color: var(--scolor1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    .image-part {
        width: 100%;
        height: 248px;
        position: relative;
        border-radius: 6px 6px 0 0;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .fvt-icon {
            position: absolute;
            top: 16px;
            right: 16px;
        }
    }
    .footer-part {
        display: flex;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--border-color);
    }
}
/* Job Card */
.single-job-card {
    padding: 24px;
    border-radius: 8px;
    background-color: var(--scolor1);   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    height:100%;
    .job-description {
        margin-top: 32px;
    }
    .footer-part {
        display: flex;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--border-color);
        gap: 8px;
        .location-icon {
            vertical-align: text-bottom;
        }
    }
}
/* Handyman Card */
.handyman-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    .image-part {
        width: 100%;
        height: 270px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .content-part {
        padding: 20px;

    }
}
/* Workflow Card */
.workflow-card {
    padding: 32px;
    border-radius: 8px;
    background-color: var(--scolor2);
    text-align: center;
    height: 100%;
    .icon-wraper {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        background-color: rgba(54, 97, 227, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-inline: auto;
        img,svg {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }
    }
    .workflow-title {
        line-height: 1;
        margin: 48px 0 16px 0;
    }
}
/* Review Card */
.single-review-card {
    padding: 28px;
    border-radius: 8px;
    display: flex !important;
    flex-direction: column;
    gap: 60px;
    justify-content: space-between;
    height: 100%;
    .review-des {
        margin-top: 16px;
    }
    .reviewer {
        display: flex;
        gap: 8px;
        .reviewer-img {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            overflow: hidden;
            background-color: var(--scolor1);
        }
    }
}
/* Stuff Card */
.stuff-card {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--scolor1);
    display: flex;
    gap: 16px;
    .stuff-img {
        height: 50px;
        width: 50px;
        overflow: hidden;
        border-radius: 50%;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
/* Address Card */
.address-card {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--scolor1);
    display: flex;
    gap: 8px;
    .address-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(54, 97, 227, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        img,svg {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }
    }
}
/* Contact Info Card */
.single-contact-info-card {
    padding: 32px;
    border-radius: 8px;
    background-color: var(--scolor1);
    color: var(--main-color-one);
    text-align: center;
    height: 100%;
    .contact-info-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: rgba(54, 97, 227, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-inline: auto;
        margin-bottom: 58px;
        img,svg,i {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }
    }
}
/* Blog Card */
.blog-card {
    border-radius: 8px;
    overflow: hidden;
    .blog-card-image {
        width: 100%;
        height: 324px;
        background: var(--scolor1);
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .blog-card-content {
        margin-top: 16px;
        .post-info {
            font-weight: 500;
            font-size: 14px;
            line-height: 1.5;
        }
        .blog-card-title  {
            line-height: 1.25;
            margin: 8px 0 24px 0;
        }
    }
}
/* Core Value card */
.core-value-card {
    padding: 32px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 130px;
}
/* 5. Layout */
/* Navbar */
.asbolute-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.navbar {
    padding: 0 0;
    border-bottom: 1px solid var(--border-color);
}
.responsive-mobile-menu  {
    .click-nav-right-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        width: 34px;
        font-size: 16px;
        line-height: 1;
        background-color: var(--scolor1);
        border: 1px solid var(--border-color-two);
        color: var(--main-color-one);
        border-radius: 6px;
    }
    .navbar-toggler {
        font-size: 16px;
        color: var(--main-color-one);
        background-color: var(--scolor2);
        border: 1px solid var(--border-color-two);
        outline: none;
        padding: 0;
        height: 34px;
        width: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        &:focus {
            box-shadow: none;
        }
    }
}
.navbar-nav {
    flex: 1;
    display: flex;
    align-self: center;
    justify-content: center;
}
.navbar {
    padding: 16px 0;
}
.navbar-area .navbar-nav {
    li {
        position: relative;
        padding: 4px 20px;
        a {
            font-weight: 500;
            color: var(--main-color-one);
            line-height: 1.8;
            transition: all 0.3s ease-in-out;
            &:hover, &.active {
                color: var(--primary-color);
            }
        }
        &.menu-item-has-children{
            position: relative;
            &::after {
                content: "\f107";
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                transform-origin: center top;
                transition: all 0.3s ease-in-out;
            }
            &:has(> a:hover) {
                &::after {
                    color: var(--primary-color);
                }
            }
        }    
        .sub-menu {
            list-style:none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            width: 100%;
            background-color: var(--scolor1);
            border-radius: 8px;
            padding: 16px 0;
            border: 1px solid var(--border-color);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 8px;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            li a {
                color: var(--main-color-one);
                line-height: 1.5;
                transition: all 0.3s ease-in-out;
                width: 100%;
                &:hover {
                    color: var(--primary-color);
                }
            }
        }
        @media only screen and (min-width: 992px) {
            &.menu-item-has-children:hover {
                .sub-menu {
                    visibility: visible;
                    opacity: 1;
                }
                &::after {
                    rotate: 180deg;
                }
            }
        }
        @media only screen and (max-width: 991.98px) {
            &.menu-item-has-children.active {
                .sub-menu {
                    visibility: visible;
                    opacity: 1;
                }
                &::after {
                    rotate: 180deg;
                }
            }
        }
    }
}
.single-right-content .navbar-right-flex{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px; 
}
.style2 {
    .navbar-area .navbar-nav {
        li {
            a {
                color: var(--main-color-one);
                &:hover, &.active {
                    color: var(--primary-color);
                }
            }
        }
    }
    .navbar-right-item > a:not(.cmn-btn) {
        color: var(--main-color-one);
    } 
}

.provider-after-login-button {
    height: 50px;
    width:50px;
    border-radius: 50%;
    overflow: hidden;
    border:none;
    img{
        height:100%;
        width:100%;
        object-fit: cover;
    }
}
/* Footer Section */
.footerWraper {
    .footer-area-top {
        padding: 100px 0;
    }
    .footer-info-widget {
        .footer-info-pera {
            margin: 24px 0 34px 0;
            max-width: 314px;
            p:has(+p) {
                margin-bottom: 16px;
            }
        }
        .footer-social-link-list {
            display: flex;
            align-items: center;
            gap: 8px;
            .footer-social-link-item a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                height: 38px;
                width: 38px;
                font-size: 16px;
                line-height: 1;
                background-color: transparent;
                border: 1px solid var(--paragraph-color);
                border-radius: 50%;
                transition: all .3s linear;
                &:hover {
                    color: var(--primary-color);
                }
            }
        }
    }
    .footer-link-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
        a {
            transition: all .3s ease-in-out;
        }
        a:hover {
            color: var(--primary-color);
        }
    }
    .get-in-touch-widget {
        .footer-info-pera {
            margin-top: 28px;
            p:has(+p) {
                margin-bottom: 16px;
            }
        }
    }
    .footer-area-bottom {
        padding: 24px 0;
        border-top: 1px solid #27282A;
        text-align: center;
    }
    &.dark-bg{
        background-color: var(--scolor3);
        color: var(--paragraph-color-two);
        .widget-title {
            color: var(--scolor2);
        }
        .footer-info-widget {
            .footer-social-link-list {
                .footer-social-link-item a {
                    border-color: var(--paragraph-color);
                }
                .footer-social-link-item a:hover {
                    background-color: var(--scolor2);
                    border-color: var(--scolor2);
                }
            }
        }
        .subscription-widget {
            .input-wraper {
                input {
                    border-color: transparent;
                    background-color: #FFFFFF33;
                    color: var(--scolor2);
                    &::placeholder {
                        color: var(--scolor2-2);
                    }
                }
                .icon {
                    color: var(--scolor2-2);
                }
            }
        }
        .copyright-text {
            color: #CBCBCB;
        }
    }
}
/* Pages */
/* Home Page or Index Page */
/* Hero section or banner section */
.hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}
.banner-content-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.banner-text-part-wraper {
    max-width: 637px;
    p {
        margin: 32px 0 48px 0;
        line-height: 1.5;
    }
    .banner-bottom-part {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    .banner-form-wraper {
        margin-top: 65px;
        position: relative;
        .search-icon-btn {
            height: 50px;
            width: 50px;
            border: none;
            border-radius: 50%;
            background-color: var(--secondary-color);
            font-size: 1.5rem;
            color: var(--main-color-one);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
        }
        input {
            padding: 21px 32px;
            background-color: #fff;
            line-height: 1.4;
            border: 1px solid var(--border-color);
            border-radius: 37px;
            color: var(--paragraph-color);
            width: 100%;
            &:focus {
                outline: none;
            }
        }
    }
}
.banner-image-part {
    flex: 1;
    max-width: 606px;
    height: 620px;
    text-align: right;
    position: relative;
    .main-image img{
        max-width: 100%;
    }
    .secondary-img {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 200px;
        max-height: 200px;
        border-radius: 26px;
        border: 6px solid var(--scolor1);
        background-color: var(--scolor1);
        overflow: hidden;
        .media {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }
}

/* App version section */
.appversion-wraper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 32px 0 32px;
    border-radius: 12px;
    .content-part {
        padding-bottom: 32px;
        max-width: 255px;
        align-self: center;
    }
    .app-version-image-part {
        align-self: flex-end;
    }
    .btn-wraper {
        margin-top: 32px;
    }
}
/* Trusted client */
@keyframes slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.trusted-clients-section-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    .client-slider-wraper {
        display: flex;
        overflow: hidden;
    }
    .client-slider-item-wraper {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        animation: slide 15s linear infinite;
        .client-slider-item {
            flex-shrink: 0;
            padding: 0 50px;
            max-width: 280px;
            text-align: center;
        }
    }
}
/* CTA Section */
.cta-section {
    position: relative;
    z-index: 0;
    &::before {
        content: "";
        position: absolute;
        top: 44px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        z-index: -1;
    }
}
.cta-section-wraper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    .content-part {
        flex: 1 1 390px;
        padding:94px 0 50px 0;
        max-width: 552px;
        .cta-title {
            margin-bottom: 32px;
        }
    }
    .image-part {
        align-self: flex-end;
        img {
            width: 100%;
        }
    }
}
/* About Us Page */
/* About Us */
.about-us-section {
    .content-part .para{
        margin: 16px 0 48px 0;
        p:has(+p) {
            margin-bottom: 24px;
        }
    }
    .image-part {
        max-height: 100%;
        border-radius: 12px;
        overflow: hidden;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
    }
}
/* listing-page */
.listing-page-wraper {
    .search-bar-wraper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(204px, 1fr));
        gap:24px;
    }
}
/* Service details page */
.service-details-image-wraper, .provider-details-image-wraper {
    width: 100%;
    max-height: 650px;
    border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
}
.service-details-title-wtaper {
    margin-top: 24px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
    .top-part {
        margin-bottom: 16px;
    }
    .service-details-title {
        max-width: 848px;
    }
}
.service-provider-short-info {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    .provider-img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
        background-color: var(--scolor2);
        flex-shrink: 0;
        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }
    .provider-name-wraper {
        display: flex;
        gap: 16px;
        align-items: center;
    }
}
/* Info tabs */
.custom-nav-tabs {
    gap: 30px;
    margin-bottom: 24px;
    .nav-link {
        color: var(--main-color-one);
        border: 0;
        padding-left: 0;
        padding-right: 24px;
        font-weight: 600;
        font-size: 1.125rem;
        position: relative;
        cursor: pointer;
        &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: transparent;
            transition: all 0.3s ease-in-out;
        }
        &.active::after {
            background-color: var(--primary-color);
        }
    }
}
.tab-content-wraper {
    .tab-title {
        margin-bottom: 16px;
    }
    .pera {
        p:has(+p) {
            margin-bottom: 24px;
        }
    }
}
.service-details-map-wwraper {
    iframe {
        border-radius: 12px;
        width: 100%;
        height: 550px;
    }
}
/* Service Addons */
.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.addon-item {
    flex: 1 1 180px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
    .addon-quantity {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 30px;
    }
    .addon-quantity-sign {
        height: 32px;
        width: 32px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        &:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
    }
    .addon-quantity-input {
        all: unset;
        max-width: 40px;
        text-align: center;
        font-weight: 600;
        font-size: 1.125rem;
    }
}
/* Provider Details */
.provider-details-image-wraper {
    margin-bottom: 48px;
}
.provider-tabs {
    margin-bottom: 40px;
}
.provider-short-info-wraper {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
.provider-des {
    margin-top: 40px;
    p:has(+p) {
        margin-bottom: 24px;
    }
}
/* Service Booking */
    
.booking-form .dropdown-option{
    .stuff-card,
    .address-card {
        border: 1px solid transparent;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        &:hover {
            border-color: var(--primary-color);
        }
    }
}

/* Stuff */
.stuff-section-wraper {
    margin-top: 48px;
}
/* Reviews */
.reviews-wraper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    .single-review:has(+ .single-review) {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 24px;
    }
}
.single-review {
    .reviewr-info {
        display: flex;
        gap: 16px;
        margin-bottom: 16px;
    }
}
.reviewr-image {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    img{
        height:100%;
        width:100%;
        object-fit:cover;
    }
}
/* Achievement */
.achivment-wraper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 48px;
    border-radius: 8px;
    .achievement-item {
        text-align: center;
    }
}
/* Contact Page */
.contact-form-wraper {
    padding: 40px;
    border-radius: 12px;
    background-color: var(--scolor1);
}
.contact-aside {
    border-radius: 12px;
    background-color: var(--scolor1);
    height: 100%;
    overflow: hidden;
    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
 /* Blog Details Specific Styles - Building on existing structure */        
.blog-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--paragraph-color);
}

.blog-meta .author {
    font-weight: 500;
}

.blog-content-text {
    line-height: 2;  
}
/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sidebar-widget {
    border-radius: 8px;
    padding: 24px;
}
.sidebar-widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-color-one);
    margin-bottom: 24px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categories-list .cataegori-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    font-weight: 500;
    color: var(--main-color-one);
    &:hover {
        background-color: var(--main-color-one);
        color: var(--scolor1);
    }
}
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recent-post-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    &:not(:last-child) {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border-color);
    }
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 8px;
    color: var(--main-color-one);
    transition: color 0.3s ease;
}

.recent-post-content h4:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.875rem;
    color: var(--paragraph-color);
    font-weight: 600;
}     
/* Job Details */
.job-details-wraper {
    padding: 40px;
    border-radius: 8px;
    .job-header,
    .job-description {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 40px;
    }
    .job-description  {
        p:has(+p) {
            margin-bottom: 24px;
        }
    }
    .job-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 40px;
        .info-item {
            display: flex;
            gap: 16px;
            .info-icon {
                height: 28px;
                width: 28px;
            }
        }
    }
    .job-details-imgaes-wraper {
        .job-images {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 24px;
            .job-image {
                flex: 1 1 120px;
                max-width: 180px;
                height: 180px;
                border-radius: 6px;
                overflow: hidden;
                display: flex;
                justify-content: space-between;
                align-items: center;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }
}
.job-sidebar {
    border-radius: 8px;
    .apply-section {
        padding: 32px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
        .connect-info {
            margin-top: 16px;
            margin-bottom: 32px;
        }
        .apply-btn {
            width: 100%;
        }
    }
    .provider-profile {
        padding: 40px 32px 32px 32px;
        .provider-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 16px;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}
/* Job Post */
.job-post-wraper {
    padding: 40px;
    border-radius: 8px;
    .job-post-tabs-wraper {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 40px;
        display: flex;
        gap: 20px;
        .job-post-tab {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            .job-post-tab-num {
                height: 36px;
                width: 36px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                border: 1px solid var(--primary-color);
                background-color: transparent;
                color: var(--main-color-one);
                font-weight: 600;
            }
            .job-post-tab-text {
                color: var(--main-color-one);
                font-size: 1.125rem;
                font-weight: 600;
            }
            &.active .job-post-tab-num{
                background-color: var(--primary-color);
                color: var(--scolor1);
            }
        }
    }
}
/* SignUp As */
.registar-section {
    padding: 80px 24px;
}
.register-area-wraper {
    display: flex;
    justify-content: center;
}
.signup-as-area {
    padding: 80px;
    text-align: center;
    border-radius: 8px;
    background-color: var(--scolor1);
    max-width: 712px;
    flex: 1;
}
.signup-as-selector-wraper {
    margin-top: 60px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.signup-as-selector {
    flex: 1 1 110px;
    padding: 22px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    color: var(--main-color-one);
    font-weight: 600;
    background-color: var(--border-color);
    cursor: pointer;
    &:has(:checked) {
        background-color: var(--primary-color);
        color: var(--scolor1);
    }
}
.signup-as-btn-wraper {
    margin-bottom: 70px;
}
.signup-as-client,
.signup-as-provider {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
    border-radius: 8px;
    background-color: var(--scolor1);
    max-width: 744px;
    flex: 1;
}
.or-text {
    position: relative;
    text-align: center;
    margin: 40px 0;
    &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--border-color);
    }
    span {
        position: relative;
        background-color: var(--scolor1);
        padding: 0 16px;
        color: var(--main-color-one);
        font-weight: 500;
    }
}
.signup-another-option-wraper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.signup-another-option {
    border: 1px solid #555556;
    border-radius: 8px;
    background: var(--border-color);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    color: var(--main-color-one);
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1 1 fit-content;
}
.terms-condition {
    margin: 24px 0 38px 0;
}

/*payment gateway */
.payment-gateway-wrapper ul {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.payment-gateway-wrapper ul li {
    max-width: 100px;
    cursor: pointer;
    box-sizing: border-box;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    .img-select {
        width: 100px;
        height: auto;
    }
    .img-select img {
        width: 100%;
    }
}

.payment-gateway-wrapper ul li {
    margin: 3px;
    border: 1px solid #ddd;
}

.payment-gateway-wrapper ul li:before {
    border: 2px solid var(--color-15);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    z-index: 10;
}

.payment-gateway-wrapper ul li:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    content: "\f00c";
    font-weight: 900;
    color: #fff;
    font-family: 'Font Awesome 6 Free', 'sans-serif';
    background-color: var(--color-15);
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    padding-top: 2px;
    padding-left: 2px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    z-index: 20;
}

.payment-gateway-wrapper ul li.selected:after,
.payment-gateway-wrapper ul li.selected:before {
    visibility: visible;
    opacity: 1;
}


/* Responsive design */
@media only screen and (max-width: 1399.98px) {
    .custom-container {
        max-width: 1140px;
    }
    /* Title */
    .main-title { font-size: 3.5rem; }
    .title-2 { font-size: 2.25rem; }
    .title-3 { font-size: 2.5rem; }
    .title-4 { font-size: 1.875rem; }

    .subtitle-1 { font-size: 1.625rem; }
    .subtitle-2 { font-size: 1.375rem; }
    .subtitle-3 { font-size: 1.3rem; }
    .subtitle-4 { font-size: 1.25rem; }

    .fs-lg { font-size: 1.125rem; }
    .fs-md { font-size: 1rem; }
    /* Banner */
    .banner-image-part {
        height: auto;
        .secondary-img {
            max-width: 100px;
            max-height: 100px;
        }
    }
    .features-wraper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
        gap: 24px;
        .single-features-card {
            padding: 20px;
        }
    }
}
@media only screen and (max-width: 1199.98px) {
    .custom-container {
        max-width: 960px;
    }
    /* Title */
    .main-title { font-size: 3rem; }
    .title-2 { font-size: 2rem; }
    .title-3 { font-size: 2.25rem; }
    .title-4 { font-size: 1.75rem; }

    .subtitle-1 { font-size: 1.5rem; }
    .subtitle-2 { font-size: 1.25rem; }
    .subtitle-3 { font-size: 1.2rem; }
    .subtitle-4 { font-size: 1.125rem; }

    .fs-lg { font-size: 1rem; }
    .fs-md { font-size: 0.95rem; }
    /* Button */
    .cmn-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    /* Banner */
    .banner-text-part-wraper {
        max-width: 470px;
        .banner-form-wraper {
            margin-top: 48px;
            input {
                padding: 16px 22px;
                background-color: #fff;
                line-height: 1.4;
                border: 1px solid var(--border-color);
                border-radius: 37px;
                color: var(--paragraph-color);
                width: 100%;
            }
            .search-icon-btn {
                height: 40px;
                width: 40px;
                font-size: 1rem;
                right: 9px;
            }
        }
    }
    /* Features card*/
    .single-features-card {
        .icon {
            height: 30px;
            width: 30px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
        }
    }
}
@media only screen and (max-width: 991.98px) {
    .custom-container {
        max-width: 720px;
    }
    /* Title */
    .main-title { font-size: 2.5rem; }
    .title-2 { font-size: 1.75rem; }
    .title-3 { font-size: 2rem; }
    .title-4 { font-size: 1.5rem; }

    .subtitle-1 { font-size: 1.375rem; }
    .subtitle-2 { font-size: 1.125rem; }
    .subtitle-3 { font-size: 1rem; }
    .subtitle-4 { font-size: 0.95rem; }

    .fs-lg { font-size: 0.95rem; }
    .fs-md { font-size: 0.875rem; }

    /* Navbar */
    .nav-container {
        position: relative;
    }
    .navbar-right-content {
        position: absolute;
        top: 50px;
        right: 12px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
    }
    .navbar-right-content.show-nav-content {
        opacity: 1;
        pointer-events: auto;
        top: 50px;
    }
}
@media only screen and (max-width: 767.98px) {
    .custom-container {
        max-width: 540px;
    }
    /* Title */
    .main-title { font-size: 2rem; }
    .title-2 { font-size: 1.5rem; }
    .title-3 { font-size: 1.75rem; }
    .title-4 { font-size: 1.375rem; }

    .subtitle-1 { font-size: 1.25rem; }
    .subtitle-2 { font-size: 1rem; }
    .subtitle-3 { font-size: 0.9rem; }
    .subtitle-4 { font-size: 0.875rem; }

    .fs-lg { font-size: 0.875rem; }
    .fs-md { font-size: 0.8rem; }
    /* Slider */
    .slider-btn {
        height: 30px;
        width: 30px;
        font-size: 0.875rem;
    }
    /* Signup */
    .signup-as-area {
        padding: 24px;
    }
}
@media only screen and (max-width: 575.98px) {
    .custom-container {
        max-width: 100%;
    }
    /* Title */
    .main-title { font-size: 1.5rem; }
    .title-2 { font-size: 1.25rem; }
    .title-3 { font-size: 1.5rem; }
    .title-4 { font-size: 1.25rem; }

    .subtitle-1 { font-size: 1.125rem; }
    .subtitle-2 { font-size: 0.95rem; }
    .subtitle-3 { font-size: 0.85rem; }
    .subtitle-4 { font-size: 0.8rem; }

    .fs-lg { font-size: 0.8rem; }
    .fs-md { font-size: 0.75rem; }
}

