* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
        font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}
/* Base Badge */
.listing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 22px;
    z-index: 10;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.18);
    color: #000;
}

/* Badge Colors */
.badge-boosted {
    background: #FFC107;
}

.badge-new {
    background: #FFC107;
}

.badge-featured {
    background: #FFC107;
}

.hero-section-home {
    /* background: linear-gradient(180deg, rgba(255, 208, 68, 0.63) 31.11%, rgba(255, 255, 255, 0) 100%); */
    padding: 10px 40px 70px !important;
    /* text-align: center;
    margin: 12px;
    margin-top: 0px; */
}
.hero-section {
     background: linear-gradient(180deg, #FFEE58 31.11%, rgba(255, 255, 255, 0) 50%);
    padding: 45px 40px 70px;
    text-align: center;
    margin: 12px;
    margin-top: 0px;
}
.hero-section-page {
     background: linear-gradient(180deg, #FFEE58 31.11%, rgba(255, 255, 255, 0) 50%);
    padding: 45px 40px 70px;
    text-align: center;
    margin: 12px;
    margin-top: 6px;
}
button.btn.btn-secondary {
    font-weight: normal;
}
button.choose-btn {
    font-weight: normal;
}
.fw-semibold {
    font-weight: normal !important;
}
.inter-<uniquifier> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
  img.profile-pic {
    border-radius: 50px;
    width: 60px;
}
a{
    text-decoration: none;
    color: inherit;
}
/* language start*/
         .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 0; */
}
.lang-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #2d2d2d;
    font-size: 15px;
}

.lang-box i {
    font-size: 18px;
}

.lang-box .arrow {
    font-size: 14px;
    font-weight: bold;
}

.lang-box select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


/* language end*/
/* header start*/
 .auth-buttons .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    /* padding: 6px 14px; */
    transition: 0.25s ease;
    display: inline-block;
}

/* Hover Zoom Effect */
.auth-buttons .nav-link:hover {
    transform: scale(1.08);
    color: #000;
}

/* Active Link Bold + Slight Zoom */
.auth-buttons .active-link {
    font-weight: 700 !important;
    color: #000 !important;
    transform: scale(1.12);
}

/* Profile Pic hover */
.auth-buttons .profile-pic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s ease;
}

.auth-buttons .profile-pic:hover {
    transform: scale(1.12);
}
/* header end*/

/* Navbar - Yellow Background */
.navbar-custom {
    /* background: #FDB913;
    padding: 12px 0; */
    /* background: #FFD044; */
     background: #FFEE58;
    padding: 12px 0;
    margin: 12px;
    margin-bottom: 0;
    border-top-left-radius: 25px 25px;
    border-top-right-radius: 25px 25px;
        /* box-shadow: 0px 26px 31px -8px rgba(0, 0, 0, 0.35); */
}

.navbar-content {
    /* max-width: 1400px; */
    max-width: 1900px;
    margin: 0 auto;
    padding: 0px 16px 0px 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.owl-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-items {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-items a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    
    gap: 6px;
}
.nav-items a.active {
  color: black;
  font-weight: 600;
}

.nav-items a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 2px;
}
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.login-btn {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px;
    cursor: pointer;
}

.signup-btn {
    background: white;
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 22px;
    border-radius: 6px;
    cursor: pointer;
}

/* Hero - Cream Background */
.hero-section {
    /* background: linear-gradient(180deg, rgba(255, 208, 68, 0.63) 31.11%, rgba(255, 255, 255, 0) 100%); */
    /* padding: 45px 40px 70px; */
    /* padding: 45px 40px 70px;
    text-align: center;
    margin: 12px;
    margin-top: 6px; */

      background: linear-gradient(180deg, #FFEE58 31.11%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
    margin: 12px;
    margin-top: 6px;
    padding: 10px 40px 70px !important;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #1a1a1a;
    /* margin-bottom: 25px; */
}

.main-heading {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sub-heading {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.search-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.search-field {
    width: 100%;
    /* padding: 16px 65px 16px 22px; */
        padding: 20px 22px 20px 22px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    /* box-shadow: 0 3px 10px rgba(0,0,0,0.08); */
    box-shadow: 0 0px 26px rgb(0 0 0 / 47%);
    outline: none;
}
i.bi.bi-search {
    margin-left: -9px;
}
.search-icon-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 56px;
    /* background: #FDB913; */
     background: #FFEE58;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}
[dir="rtl"] .search-icon-btn {
    left: 6px;
    right: auto;
}

/* Categories - White Background with cards */
.categories-section {
    background: white;
    padding: 50px 40px 70px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.section-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

.categories-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cat-box {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    padding: 45px 20px;
    text-align: center;
    cursor: pointer;
        border: 2px solid #FFEE58;
    transition: all 0.3s ease;
}

.cat-box:hover {
    background-color: #FFEE58;
    /*border-color: #FFEE58;*/
    

}

.cat-icon {
    font-size: 36px;
    color: #1a1a1a;
    height: 66px;
    margin-bottom: 18px;
    text-decoration: none;
    background: #eae9e9;
    border-radius: 15px;
    width: 65px;
    align-items: center !important;
    margin: 0 auto;
    margin-bottom: 10px;
}

.cat-name {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
     /* text-decoration: none; */
}

/* Featured - Light Gray Background */
.featured-section {
    background: #ffffff;
    padding: 55px 40px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.tabs-row {
    display: flex;
    gap: 10px;
}

.filter-tab {
    padding: 9px 12px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.filter-tab.active {
    /* background: #FDB913;
    border-color: #FDB913; */
     background: #FFEE58;
    border-color: #FFEE58;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-box {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.service-pic {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-details {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.service-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-booking {
    text-align: right;
    flex-shrink: 0;
}

.rate {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.book-btn {
    background: #FDB913;
    border: none;
    padding: 11px 26px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: #1a1a1a;
}

 /* buy-sell-post product form start */
     /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 30px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 30px;
        }

        /* Sidebar Tips */
        .tips-sidebar {
            background: white;
            border-radius: 16px;
            padding: 18px;
            height: fit-content;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .tips-sidebar h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        /* .tip-item {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        } */

        .tip-icon {
            color: #FDB913;
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Form Container */
        /* .form-container {
            background: white;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        } */
        .main-from{
            background: white;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .form-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-align: left;
        }

        .form-subtitle {
            color: #666;
            font-size: 15px;
            margin-bottom: 30px;
            text-align: left;
        }

        /* Steps */
        /* .steps {
            display: flex;
            justify-content: center;
            gap: 30px; */
            /* margin-bottom: 35px; */
            /* padding-bottom: 25px; */
            /* border-bottom: 2px solid #F0F0F0; */
        /* } */
        .steps {
        display: flex;
        justify-content: space-between;
        color: #f6c23e;
        font-size: 15px;
        margin-top: 10px;
        }

        .steps span.active {
            color: #1a1a1a;
            /* font-weight: 600; */
            color: gray;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #999;
        }

        .step.active {
            color: #1a1a1a;
        }
        .action-line{
                border: none;
    border-top: 2px solid #adbfd0;
    margin-top: 1rem;
    width: 83px;
    height: 2px;
    background-color: #555555;
    border: none;
    margin: 0 10px;
    position: relative;
    top: 16px;
    z-index: 0;
        }
        .step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #F0F0F0;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .step.active .step-number {
            background: #FDB913;
            color: #1a1a1a;
        }

        /* Form Fields */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            /* color: #1a1a1a; */
                color: #666;
            margin-bottom: 8px;
            text-align: left;
        }

        .required {
            color: #EF4444;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #E5E5E5;
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #FFEE58;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #BDBDBD;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .field-hint {
            font-size: 12px;
            color: #999;
            margin-top: 6px;
                text-align: left;
        }

        /* Form Row */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Quantity Control */
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 15px;
        }

       .quantity-btn {
          width: 40px;
          height: 44px;
          border: 2px solid #E5E5E5;
          border-radius: 8px;
          background: white;
          cursor: pointer;
          font-size: 22px;
          font-weight: 700;
          color: #666;
          padding: 0px;
          transition: all 0.3s;
      }

        .quantity-btn:hover {
            border-color: #FDB913;
            color: #1a1a1a;
        }

        .quantity-input {
            width: 80px;
            text-align: center;
            padding: 10px;
            border: 2px solid #E5E5E5;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
        }

        /* Buttons */
        .form-actions-publish {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 35px;
    padding: 15px;
    /* background: gray; */
    border: 2px solid #80808026;
    border-radius: 12px;
        }

        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 12px;
            /* font-weight: 700; */
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}

        .btn-secondary {
            background: #F0F0F0;
            color: #666;
        }

        .btn-secondary:hover {
            background: #E0E0E0;
        }

        .btn-primary {
            background: #FFEE58;
            color: #1a1a1a;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            background-color: #ffffff !important;
            color: #000000;
            /* border-color: #FDB913 !important; */
            border: 1px solid #FFEE58;
        }

        /* Bottom Tips */
        .bottom-tips {
            /* background: #FFF9E6; */
            /* border-radius: 12px; */
            padding: 20px;
            /* margin-top: 30px; */
            /* border-left: 4px solid #FDB913; */
        }

        .bottom-tips h4 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .bottom-tips ul {
            list-style: none;
            padding-left: 0;
        }

        .bottom-tips li {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            text-align: left;
        }

        .bottom-tips li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color:black;
            font-weight: 700;
        }

        /* Footer Wave */
        /* .footer-wave {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            pointer-events: none;
        }

        .footer-wave svg {
            width: 100%;
            height: 100%;
        } */

        /* Responsive */
        @media (max-width: 1024px) {
            .slide {
                position: absolute;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s 
            ease-in-out;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .col-lg-8 {
                padding-top: 12px;
            }
            .tips-sidebar {
                order: 0;
                width: 94%;
            }

            .form-container {
                order: 1;
            }
            .buy_sell_form{
                gap: 20px;
                display: flex;
            }
            .remove-btn{
                padding: 12px 20px;
            }
        }

        @media (max-width: 768px) {

            .sub-menu{
                height:auto;
            }
            .nav-links {
                display: none;
            }

            .header {
                padding: 12px 20px;
            }

            .main-content {
                padding: 20px 15px;
                width: 105%;
            }

            .form-container {
                /* padding: 25px 20px; */
                padding: 25px 0px;
            }
            
            .form-header h1 {
                font-size: 14px;
            }
            .form-subtitle {
                color: #666;
                font-size: 12px;
                margin-bottom: 0px;
                text-align: left;
            }
            .form-row {
                grid-template-columns: 1fr;
            }

            .steps {
                flex-direction: unset;
                gap: 0px;
            }
            .action-line {
                margin: 14px 0px;
            }
            .service-info.row .col-7{
                width: 100%;
            }
            .service-info h5{
                font-size: 14px;
            }
            .service-info p{
                font-size: 10px;
            }
            .service-info.row .price-book.col-5{
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .header-right {
                gap: 10px;
                font-size: 13px;
            }

            .form-actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

 /* buy-sell-post product form end */


  /* buy-sell-post upload product form start */
 /* Steps */
 .section-title-title {
    /* font -weight: 700; */
    font-size: 32px;
    color: #212529;
    /* padding-left: 171px; */
    margin-bottom: 10px;
    text-align: left;
}
        .steps-container {
            max-width: 900px;
            margin: 30px auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: #999;
        }

        .step-item.active {
            color: #1a1a1a;
        }

        .step-circle {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #F0F0F0;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
        }

        .step-item.active .step-circle {
            background: #FDB913;
            color: #1a1a1a;
        }

        /* Main Container */
        .main-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-card {
            background: white;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .card-header h2 {
            font-size: 22px;
            /* font-weight: 700; */
            color: #1a1a1a;
            margin-bottom: 8px;
            text-align: left;
        }

        .card-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
             text-align: left;
        }

        .section-title-upload {
            font-size: 16px;
            /* font-weight: 700; */
            color: #1a1a1a;
            margin-bottom: 20px;
            text-align: left;
                /* padding: 30px 1px 0px 1px; */

        }

        /* Upload Area */
        /* .upload-area {
            border: 2px dashed #E0E0E0;
            border-radius: 12px;
            padding: 50px 30px;
            text-align: center;
            background: #FAFAFA;
            margin-bottom: 25px;
            cursor: pointer;
            transition: all 0.3s;
        } */

        .upload-area:hover {
            border-color: #FDB913;
            background: #FFFBF0;
        }
/* 
        .upload-icon {
            font-size: 48px;
            margin-bottom: 15px;
        } */

        .upload-text {
            font-size: 16px;
            /* font-weight: 600; */
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .upload-hint {
            font-size: 13px;
            color: #999;
            margin-bottom: 20px;
        }

        .choose-btn {
            background: #FFEE58;
            border: none;
            padding: 12px 32px;
            border-radius: 12px;
            /* font-weight: 700; */
            font-size: 14px;
            cursor: pointer;
            color: #1a1a1a;
            transition: all 0.3s;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}

        .choose-btn:hover {
            transform: scale(1.05);
        }

        /* Image Preview */
        .image-preview {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .preview-item {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 12px;
            overflow: hidden;
            background: #F0F0F0;
        }

        .preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .remove-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0,0,0,0.6);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-label {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        /* Guidelines */
        .guidelines-section {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #F0F0F0;
                background: #b9b9b940;
    border-radius: 12px;
    padding: 10px;
        }

        .guidelines-list {
            list-style: none;
            padding: 0;
        }

        .guideline-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 13px;
            color: #666;
        }

        .check-icon {
            color: #22C55E;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Form Actions */
        /* .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        } */

        /* .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        } */

        .btn-secondary {
            background: #F0F0F0;
            color: #666;
        }

        .btn-secondary:hover {
            background: #E0E0E0;
        }

        .btn-primary {
            background: #FFEE58;
            color: #1a1a1a;
        }

        /* .btn-primary:hover {
            transform: scale(1.05);
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
            -o-transform: scale(1.05);
} */
        /* Responsive */
        @media (max-width: 768px) {

            .steps-container {
                /* flex-direction: column;
                align-items: center;
                gap: 15px; */
                align-items: center;
                gap: 13px;
                margin: 0px;
                padding: 40px 26px 14px 29px;
            }

            .content-card {
                padding: 25px 20px;
            }

            .image-preview {
                grid-template-columns: repeat(2, 1fr);
            }

            .form-actions {
                flex-direction: column;
                gap: 10px;
                    text-align: right;
            }
            /* .form-actions {
    text-align: right!important;
} */

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .image-preview {
                grid-template-columns: 1fr;
            }
        }

        .hidden {
            display: none;
        }
    /* buy-sell-post upload product form end */
    

    /* buy-sell-post preview product form start */

        .main-preview-container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
        }

        .page-title h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-align:left;
        }

        .page-subtitle {
            font-size: 15px;
            color: #666;
            margin-bottom: 30px;
             text-align:left;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 25px;
        }

        /* Product Card */
        .product-card-details {
            background: white;
            border-radius: 25px;
            padding: 17px;
            overflow: hidden;
            /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
             box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            -o-border-radius: 25px;
}

        .product-image-container {
            position: relative;
            width: 100%;
            height: 320px;
            background: #000;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .image-nav {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            gap: 8px;
        }

        .nav-btn {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-content {
            padding: 25px;
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .product-title {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            flex: 1;
        }

        .product-price {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            text-align: right;
        }

        .price-label {
            font-size: 12px;
            color: #999;
            font-weight: 500;
        }

        .product-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            background: #F5F5F5;
            border-radius: 15px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        .product-description {
                font-size: 17px;
    color: #666;
    line-height: 1.7;
    top: 10;
    margin-bottom: 20px;
    /* padding: 10px; */
    margin-top: 10px;
        }

        .skills-section {
            margin-bottom: 20px;
        }

        .skills-title {
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            text-align: left;
        }

        .skills-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            padding: 6px 14px;
            background: #f0f0f05e;
            border-radius: 15px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        .project-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f05e;
            margin-bottom: 20px;
        }

        .detail-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
                padding: 12px;
    background: #f0f0f05e;
    border-radius: 12px;
        }

        .detail-label {
            font-size: 13px;
            color: #999;
            font-weight: 500;
            text-align: left;
        }

        .detail-value {
            font-size: 15px;
            color: #1a1a1a;
            font-weight: 600;
            text-align: left;
        }

        .seller-preview-info {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid #F0F0F0;
        }

        .seller-preview-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #E0E0E0;
        }

        .seller-preview-details {
            flex: 1;
        }

        .seller-name {
            font-size: 14px;
            text-align: left;
            font-weight: 700;
            color: #1a1a1a;
        }

        .seller-rating {
            font-size: 12px;
            color: #FDB913;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .seller-member {
            font-size: 11px;
            color: #999;
        }

        /* Summary Card */
        .summary-card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            height: fit-content;
        }

        .summary-title {
            font-size: 18px;
            /* font-weight: 700; */
            color: #1a1a1a;
            margin-bottom: 20px;
                text-align: left;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .summary-label {
            color: #666;
        }

        .summary-value {
            font-weight: 600;
            color: #1a1a1a;
        }
         /* Status row */
        .status-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .status-badge {
            background: #fff7c9;
            padding: 4px 12px;
            border-radius: 12px;
            color: #d4b126;
            font-weight: 600;
        }

        /* Progress bar */
        .progress-wrapper {
            width: 100%;
            height: 8px;
            background: #e5e7eb;
            border-radius: 6px;
            margin-top: 2px;
        }

        .progress-bar-fill {
            height: 100%;
            background: #FFEE58;
            border-radius: 8px;
        }

        .progress-text {
            font-size: 13px;
            color: #777;
            margin-top: 6px;
            text-align: left;
        }

        /* Info lines */
        .info-line {
            display: flex;
            justify-content: space-between;
            margin: 12px 0;
            font-size: 15px;
            color: #444;
        }

        .info-bold {
            font-weight: 600;
        }

        .price-text {
            color: #f4c20d;
            font-weight: 700;
        }

        /* Buttons */
        .post-btn {
            width: 100%;
            background: #FFEE58;
            border: none;
            padding: 14px;
            font-size: 16px;
            border-radius: 12px;
            margin-top: 16px;
            font-weight: 600;
        }

        .edit-btn {
            width: 100%;
            background: #ffffff;
            border: 1px solid #e5e5e5;
            padding: 13px;
            font-size: 16px;
            border-radius: 12px;
            margin-top: 10px;
            font-weight: 500;
        }
        .total-cost {
            padding-top: 15px;
            margin-top: 15px;
            border-top: 2px solid #F0F0F0;
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .info-box {
            background: #E3F2FD;
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            font-size: 13px;
            color: #1976D2;
            display: flex;
            gap: 10px;
        }

        .info-icon {
            flex-shrink: 0;
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
        }
         .actions-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
        }

        /* .btn {
            padding: 14px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        } */

        .btn-primary {
            background: #FFEE58;
            color: #1a1a1a;
        }

        /* .btn-primary:hover {
            transform: scale(1.02);
        } */

        .btn-secondary {
            background: white;
            color: #1a1a1a;
            border: 2px solid #E0E0E0;
        }

        .btn-secondary:hover {
            border-color: #FFEE58;
        }

        /* Pro Tips */
        .tips-card-preview {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-top: 20px;
        }

        .tips-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
/* 
        .tip-item {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 13px;
            color: #666;
        } */

        .tip-check {
            color: #22C55E;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .summary-card {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .main-preview-container {
                /* padding: 0 15px; */
            align-items: center;
            gap: 13px;
            margin: 0px;
            padding: 6px;
            }

            .page-title h1 {
                font-size: 24px;
                 text-align:left;
            }

            .project-details {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        /* buy-sell-post preview product form end */

        /* freelancing property form page start*/
        button.btn-copy {
            min-width: 131px;
            border-radius: 7px;
        }
        span.amenity-label {
        
            text-align: left;
        }
        h2.mb-1 {
            text-align: left;
        }
        button.btn-primary-freelancing {
            border-radius: 12px;
            padding: 10px;
        }
        .schedule-header {
            margin-bottom: 25px;
        }
        h4.freelancing{
            text-align: left;
            font-weight: normal;

        }
        p.freelancing{
            text-align: left;
            color: #666;
        }
        .form-header-freelancing.mb-4
        {
            text-align: left;
            padding: 0px 0px 0px 75px;
        }
        p.form-subtitle-freelancing {
            text-align: left;
        }
        /* freelancing property form page end*/

        /* freelancing property detail page start*/
        .container {
            padding-top: 83px;
        }
        .action-divider {
            border: none;
            border-top: 2px solid #8c8c8c;
            margin-top: 1rem;
            width: 105%;
            margin-left: -26px;
        }
        .my-4 {
            margin-top: 1.5rem !important;
            margin-bottom: 1.5rem !important;
            border-top: 2px solid #8c8c8c;
            /* border: none; */
        }
                .form-header {
            padding: 36px 0px 0px 38px;
        }
        .main-container-freelancing {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .freelancing-form-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
         
        .form-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .freelancing-section-title-s {
            color: var(--primary-yellow);
            font-size: 20px;
            /* font-weight: 600; */
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .freelancing-section-title::before {
            content: "⬢";
            font-size: 1.2rem;
        }
        
    
        
       .preview-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      padding: 20px;
      margin-bottom: 20px;
    }
        
    
     
        h6.mb-3 {
            text-align: left;
        }
     
      /* .upload-area {
      background: #f8f9fa;
      border: 2px dashed #ccc;
      border-radius: 8px;
      text-align: center;
      padding: 30px 10px;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
    } */

    .upload-area:hover {
      border-color: #ffca2c;
      background: #fff9e6;
    }

    .upload-area input {
      position: absolute;
      opacity: 0;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      cursor: pointer;
    }
     /* .upload-icon i {
      font-size: 30px;
      color: #6c757d;
      margin-bottom: 10px;
    } */
     .tips-box {
    background: #FFEE58;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 31px rgba(0, 0, 0, 0.19);
    margin-bottom: 20px;
    }

    .tips-box ul {
      margin: 0;
      padding-left: 20px;
    }

    .tips-box li {
      list-style: none;
      margin-bottom: 8px;
      position: relative;
      
      padding-left: 20px;
      text-align: left;
    }

    .tips-box li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #2e7d32;
      font-weight: 600;
    }

            .col-lg-4 {
            margin-top: 88px;
        }
        .text-end.mt-4

        {
            background: border-box;
            border: 2px solid rgb(233, 233, 233);
            border-radius: 15px;
            padding: 18px;
        }
                
      
        
       
        
        .file-name {
            color: #28a745;
            font-weight: 600;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        
        .upload-btn {
            background: var(--primary-yellow);
            border: none;
            padding: 0.5rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            color: var(--dark-gray);
            margin-top: 1rem;
        }
        
        .benefits-list {
            background: var(--primary-yellow);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        
        .benefits-list li {
            color: var(--dark-gray);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }
        
        /* .amenity-checkbox {
            display: inline-flex;
            margin-right: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .amenity-checkbox input {
            margin-right: 0.5rem;
        } */
         .amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 items per row */
  gap: 12px 20px; /* vertical + horizontal space */
  margin-top: 10px;
}

.amenity-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  user-select: none;
}

.amenity-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  accent-color: #ffc107; /* Bootstrap yellow */
  cursor: pointer;
}

.amenity-label {
  transition: color 0.2s ease;
}

.amenity-checkbox input[type="checkbox"]:checked + .amenity-label {
  color: #ffc107;
  font-weight: 500;
}

/* Responsive: Adjust grid for smaller screens */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

        
        .btn-submit {
            background: var(--primary-yellow);
            border: none;
            padding: 0.7rem 3rem;
            border-radius: 12px;
            font-weight: 600;
            color: var(--dark-gray);
            font-size: 1rem;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}
        
        .btn-back {
            background: transparent;
            border: 2px solid #FDB913;
            padding: 0.7rem 3rem;
            border-radius: 12px;
            font-weight: 600;
            color: var(--dark-gray);
            margin-right: 1rem;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}
        
        @media (max-width: 768px) {
            
            .form-card, .preview-card {
                padding: 1.5rem;
            }
            
            .preview-card {
                position: relative;
                top: 0;
                margin-top: 1.5rem;
            }
        }

  /* freelancing property detail page end*/


/* real estate product form start */
.form-header-real-estate {
   text-align: left;
}
.main-from {
  border: 1px solid #eee;
}
/* .form-label {
  font-weight: 500;
} */
.badge.bg-warning {
  background-color: #FFEE58 !important;
  border-radius: 12px;
  font-size: 13px;
  padding: 6px 10px;
}
.btn-warning {
  background-color: #FFEE58;
  border: none;
}
.btn-warning:hover {
  background-color: #FFEE58;
}
p.text-muted.mb-0 {
      text-align: center;
}
label.form-label.fw-medium {
    text-align: left;
    color:black;
}
p.text-descriptions {
    text-align: left;
    color: gray;
    
}
.form-controlss {
    display: block;
    width: 100%;
    padding: 12px.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
p.form-label.fw-medium {
    text-align: left;
}
.mt-2 {
    margin-top: .5rem !important;
    text-align: left;
}
/*  real estate product form  end */


/*  real estate upload form  start */
.main-content-upload {
            flex: 1;
            padding: 40px 0;
        }
  /* .page-header {
            margin-bottom: 30px;
        } */
.page-header-upload {
    text-align: left;
}
        .page-header-upload h2 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .page-header-upload p {
            color: #5c5a5a;
            font-size: 14px;
        }
small.text-descriptions.left-text {
    display: block;
    color: #666;
    font-size: 13px;
    margin-top: 8px;
}
.left-text {
    text-align: left;         /* aligns text to left side */
    width: 100%;
}
        .upload-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            text-align: left;
        }
        .upload-certifications{
            border: 2px dashed #FFEE58;
            border-radius: 10px;
            padding: 60px 20px;
            padding-bottom: 35px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .upload-certifications:hover {
            border-color: #FFEE58;
            background-color: #FFFBF0;
        }
        .upload-card h5 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .upload-card p {
            color: var(--text-muted);
            font-size: 13px;
            margin-bottom: 20px;
        }

        /* .upload-area {
            border: 2px dashed var(--border-color);
            border-radius: 10px;
            padding: 60px 20px;
            padding-bottom: 35px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        } */

        .upload-area:hover {
            border-color: var(--primary-yellow);
            background-color: #FFFBF0;
        }

        .upload-area.dragover {
            border-color: var(--primary-yellow);
            background-color: #FFFBF0;
            transform: scale(1.02);
        }

        /* .upload-icon {
            font-size: 48px;
            color: var(--text-muted);
            margin-bottom: 15px;
        } */
         .upload-icon {
    width: 70px;
    height: 70px;
    background: #f6f6f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}
.upload-icon i {
    font-size: 32px;
    color: #FFEE58; /* bright yellow like in your UI */
}

        .upload-area p {
            margin-bottom: 5px;
        }

        .upload-area small {
            color: var(--text-muted);
            font-size: 12px;
        }

        .btn-choose {
            background-color: #FFEE58;
            color: var(--text-dark);
            border: none;
            padding: 10px 30px;
            border-radius: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 0 auto;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}

        .btn-choose:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .btn-upload-cert {
            background-color: #FFF;
              color: #f1bf19;
            border: 2px solid #f1bf19;
            padding: 10px 30px;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .uploaded-files {
            margin-top: 20px;
        }

        .file-preview {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: #F8F9FA;
            border-radius: 8px;
            margin-bottom: 10px;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .file-preview img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
        }

        .file-info {
            flex: 1;
        }

        .file-info h6 {
            font-size: 13px;
            margin: 0;
            font-weight: 600;
        }

        .file-info small {
            color: var(--text-muted);
            font-size: 11px;
        }

        .file-remove {
            background: none;
            border: none;
            color: #DC3545;
            cursor: pointer;
            font-size: 18px;
        }

        .tips-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .tips-section h5 {
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 16px;
        }

        /* .tip-item {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            align-items: flex-start;
        } */

        .tip-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 12px;
        }

        .tip-icon.yellow { background-color: #FFF3CD; color: #FFC542; }
        .tip-icon.blue { background-color: #D1E7FF; color: #0066CC; }
        .tip-icon.green { background-color: #D4EDDA; color: #28A745; }

        .tip-content h6 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
            color: black;
        }

        .tip-content p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        .cert-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            background: #FFF;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .cert-item:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .cert-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cert-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .cert-details h6 {
            font-size: 13px;
            font-weight: 600;
            margin: 0;
        }

        .cert-details p {
            font-size: 11px;
            color: var(--text-muted);
            margin: 0;
        }

        .btn-save {
            width: 100%;
            background-color: #FFEE58;
            color: var(--text-dark);
            border: none;
            padding: 12px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}

        .btn-save:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Portfolio Preview */
        .portfolio-preview {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-top: 20px;
        }

        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .preview-header h5 {
            font-weight: 600;
            font-size: 16px;
        }

        /* .view-toggle {
            display: flex;
            gap: 5px;
        }

        .view-toggle button {
            width: 30px;
            height: 30px;
            border: 1px solid var(--border-color);
            background: white;
            border-radius: 5px;
            cursor: pointer;
            color: var(--text-muted);
            transition: all 0.3s;
        }

        .view-toggle button:hover {
            border-color: var(--primary-yellow);
        }

        .view-toggle button.active {
            background-color: var(--primary-yellow);
            border-color: var(--primary-yellow);
            color: var(--text-dark);
        } */

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }

        .portfolio-grid.list-view {
            grid-template-columns: 1fr;
        }

        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .portfolio-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .list-view .portfolio-item {
            display: flex;
            flex-direction: row;
        }

        .list-view .portfolio-item img {
            width: 150px;
            height: 100px;
        }

        .portfolio-info {
            padding: 10px;
            background: white;
        }

        .list-view .portfolio-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .portfolio-info h6 {
            font-size: 13px;
            font-weight: 600;
            margin: 0 0 3px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .portfolio-info p {
            font-size: 11px;
            color: var(--text-muted);
            margin: 0;
        }

        .add-work {
            border: 2px dashed var(--border-color);
            background: #FAFAFA;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 250px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-work:hover {
            border-color: var(--primary-yellow);
            background-color: #FFFBF0;
            transform: scale(1.05);
        }

        .add-work i {
            font-size: 32px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .add-work p {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* Toast Notification */
        .toast-notification {
            position: fixed;
            top: 80px;
            right: 20px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .toast-notification.success {
            border-left: 4px solid #28A745;
        }

        .toast-notification.error {
            border-left: 4px solid #DC3545;
        }

       /* ===== Portfolio Container ===== */
.portfolio-container {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 20px;
}

/* ===== Header ===== */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.portfolio-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

/* ===== View Buttons ===== */
.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: #f8f9fa;
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #FFF7E0;
    color: #f6b900;
}

/* ===== Portfolio Grid ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* ===== Portfolio Item ===== */
.portfolio-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* ===== Image ===== */
.portfolio-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* ===== Delete Button ===== */
.delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: #ffd54f;
    color: #000;
}

/* ===== Info ===== */
.portfolio-info {
    padding: 12px 14px;
    text-align: left;
}

.portfolio-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 3px;
}

.portfolio-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* ===== Add New Work Card ===== */
.add-work-card {
    border: 2px dashed #ddd;
    border-radius: 10px;
    background: #fafafa;
    text-align: center;
    padding: 45px 20px;
    color: #777;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-work-card i {
    font-size: 28px;
    color: #f6b900;
    margin-bottom: 8px;
}

.add-work-card:hover {
    background: #fff7e0;
    border-color: #f6b900;
    color: #000;
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .portfolio-info h5 {
        font-size: 14px;
    }
}


        /* List View Styles */
        .list-view .portfolio-item {
            display: flex;
            flex-direction: row;
        }

        .list-view .portfolio-image {
            width: 300px;
            height: 200px;
            flex-shrink: 0;
        }

        .list-view .portfolio-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 30px;
        }

        .list-view .add-work-card {
            min-height: 200px;
        }

        /* Modal */
        .modal-backdrop {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .portfolio-modal .modal-content {
            border-radius: 20px;
            border: none;
        }

        .portfolio-modal .modal-body {
            padding: 0;
        }

        .portfolio-modal img {
            width: 100%;
            border-radius: 20px;
        }

        /* Upload Modal */
        .upload-area {
               border: 2px dashed #8f8989;
            border-radius: 15px;
            padding: 60px 20px;
            margin-bottom: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            
        }

        .upload-area:hover {
            border-color: var(--primary-color);
            background-color: #F0F4FF;
        }

        /* .upload-area i {
            font-size: 48px;
            color: var(--text-muted);
            margin-bottom: 15px;
        } */

        .upload-area p {
            color: var(--text-muted);
            margin: 10px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .portfolio-container {
                padding: 25px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-header h2 {
                font-size: 22px;
            }

            .list-view .portfolio-item {
                flex-direction: column;
            }

            .list-view .portfolio-image {
                width: 100%;
                height: 220px;
            }
        }

        /* Delete Button */
        .delete-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .portfolio-item:hover .delete-btn {
            opacity: 1;
        }

        .delete-btn:hover {
            background-color: #DC3545;
            color: white;
            transform: scale(1.1);
        }

        /* Toast */
        .toast-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 9999;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .toast-notification.success {
            border-left: 4px solid #28A745;
        }

        .toast-notification.error {
            border-left: 4px solid #DC3545;
        }

        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .page-header h2 {
                font-size: 22px;
            }

            .toast-notification {
                right: 10px;
                left: 10px;
            }
        }
        
/*  real estate upload form  end */

/*  real estate availability & Schedule form  start */
.hero-section-schedule {
    background: linear-gradient(180deg, rgba(255, 208, 68, 0.63) 31.11%, rgba(255, 255, 255, 0) 100%);
    padding: 45px 40px 70px;
    text-align: left;
    margin: 12px;
    margin-top: 0px;
}
 .btn-post {
            background-color: var(--text-dark);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 500;
            margin-left: 10px;
        }

        .profile-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin-left: 15px;
        }

        /* Main Content */
        .main-content-schedule {
            flex: 1;
            padding: 40px 0;
        }

        /* Tips Card */
        .tips-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .tips-card h5 {
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .tip-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-muted);
            text-align: left;
        }

        .tip-item i {
            color: #FFEE58;
            margin-top: 3px;
        }

        /* Schedule Card */
        .schedule-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .schedule-header {
            margin-bottom: 25px;
        }

        .schedule-header h4 {
            font-size: 22px;
            /* font-weight: 600; */
            margin-bottom: 5px;
        }

        .schedule-header p {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Availability Toggle */
 .availability-section {
    background: #e8f4ff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #00adff;
    margin-bottom: 30px;
}

        .availability-toggle {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .availability-toggle input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .availability-toggle label {
            font-weight: 600;
            margin: 0;
            cursor: pointer;
        }

        .availability-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
            margin-left: 32px;
        }

        .toggle-switch {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .toggle-switch .form-check-input {
            width: 50px;
            height: 26px;
            cursor: pointer;
        }

        .toggle-switch .form-check-input:checked {
            background-color: var(--primary-yellow);
            border-color: var(--primary-yellow);
        }

        .toggle-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Weekly Schedule */
        .weekly-schedule {
            margin-top: 30px;
        }

        .weekly-schedule h5 {
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 16px;
        }

       .schedule-table {
    width: 100%;
    padding: 12px;
    border-collapse: separate;
    border-spacing: 8px;
    background: #f6f6f6;
    border-radius: 12px;
}

        .schedule-table th {
            text-align: center;
            font-weight: 600;
            font-size: 13px;
            color: var(--text-dark);
            padding: 10px;
            background: transparent;
        }

        .schedule-table td {
            text-align: center;
            padding: 0;
        }

        .time-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            text-align: left;
            padding-left: 0;
        }

        .time-slot {
            /* width: 50px; */
            height: 50px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
                color: #a09f9f;
            margin: 0 auto;
        }

        .time-slot.available {
            background-color: #FFEE58;
            color: var(--text-dark);
        }

        .time-slot.available:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 197, 66, 0.4);
        }

        .time-slot i {
            font-size: 16px;
        }

        /* Legend */
        .schedule-legend {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
            font-size: 13px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 5px;
        }

        .legend-color.available {
            background-color: #FFEE58;
        }

        .legend-color.unavailable {
            background-color: var(--slot-unavailable);
        }

        /* Action Buttons */
       .action-buttons  {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            
        }
          .actions-buttons  {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            
        }
        .form-actions-shedule {
        display: flex;
        justify-content: space-between; /* Left & right alignment */
        align-items: center;
        margin-top: 20px;
        }
        .left-buttons {
        display: flex;
        gap: 10px; /* Space between left buttons */
        }


        .btn-copy, .btn-reset {
        background-color: #f2f2f2;
        border: 1px solid #ccc;
        padding: 8px 14px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: normal;

        }
                .btn-copy i, .btn-reset i {
        margin-right: 5px;
        }

        .btn-primary-schedule {
        background-color: #f8c82a; 
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        color: black;
        cursor: pointer;
        font-weight: normal;
        }


        .btn-copy {
            background-color: white;
            color: var(--text-dark);
            /* border: 1px solid var(--border-color); */
        }

        .btn-copy:hover {
            background-color: #F8F9FA;
        }

        .btn-reset {
            background-color: white;
            color: var(--text-dark);
            border: 1px solid var(--border-color);
        }

        .btn-reset:hover {
            background-color: #F8F9FA;
        }

        .btn-next {
            padding: 12px 40px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 197, 66, 0.4);
        }
        /* Responsive */
        @media (max-width: 768px) {
            .schedule-table {
                font-size: 12px;
                border-spacing: 4px;
            }

            .time-slot {
                width: 40px;
                height: 40px;
            }

            .action-buttons {
                /* flex-direction: column; */
                flex-direction: unset;
            }
            .actions-buttons {
                flex-direction: column;
                /* flex-direction: unset; */
            }

            .btn-next {
                margin-left: 0;
            }

            .schedule-table th {
                font-size: 11px;
                padding: 5px;
            }
        }

        /* Toast */
        .toast-notification {
            position: fixed;
            top: 80px;
            right: 20px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .toast-notification.success {
            border-left: 4px solid #28A745;
        }

/*  real estate availability & Schedule form  end */

/*  real estate preview  form  start */
/* .tips-card-preview {
    background: #cbe5ff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    border: 1px solid #186cda;
} */
 /* ===== Tips Box Container ===== */
.tips-box-preview {
    background-color: #F0F6FF; /* light info blue */
    border-radius: 10px;
    padding: 16px 20px;
    width: 100%;
    max-width: 340px;
    font-family: "Inter", sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* ===== Header ===== */
.tips-header-preview {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #1E40AF; /* dark blue text */
    margin-bottom: 10px;
}

.tip-icon-preview {
    background: #2563EB; /* solid blue circle */
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
}

.tip-title {
    font-size: 15px;
    color: #1E40AF;
}

/* ===== Tips List ===== */
.tips-list {
    list-style: disc;
    padding-left: 25px;
    color: #1E40AF;
}

.tips-list li {
    font-size: 14px;
    color: #1E40AF;
    margin-bottom: 6px;
    line-height: 1.5;
}

.tips-list li:hover {
    color: #2563EB; /* brighter blue on hover */
    transition: color 0.3s ease;
}

 .tips-card-preview-form {
    background: #F0F6FF;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    text-align: left;
    color: #2563EB;
}
     .skills-title-preview {
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            text-align: left;
        }
        .what-you-get {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  /* background: #f9f9f9; */
  border-radius: 6px;
  /* padding: 12px 16px; */
  width: 300px; /* adjust as needed */
      text-align: left;
}

.what-you-get h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.what-you-get ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.what-you-get li {
  padding: 3px 0px 0px 25px;

  color: #555;
}
/*  real estate availability form  end */

/*  sevices location form  start */

        h2.post-title {
    /* text-align: left !important; */
    margin: 0;
    font-size: 26px;
    /* font-weight: 600; */
    color: #1a1a1a;
    /* display: inline-block; */
    text-align: left;
}
       
        .profile-icon {
            width: 40px;
            height: 40px;
            background: var(--dark-gray);
            border-radius: 50%;
            overflow: hidden;
        }
        
        .profile-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        /* .progress-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .progress-header h2 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
        } */
          .progress-header {   max-width: 1200px;
        margin: auto;
        /* background: #fffef7;
        border-radius: 16px;
        padding: 30px 40px 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
        position: relative; 
        padding: 30px 40px 40px;
    }
     .progress-header-buy-sell {   max-width: 1200px;
        margin: auto;
        /* background: #fffef7;
        border-radius: 16px;
        padding: 30px 40px 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
        position: relative; 
        padding: 25px 298px 25px;
    }

    .progress-header h2 {
        margin: 0;
        font-size: 26px;
        font-weight: 600;
        color: #1a1a1a;
        /* display: inline-block; */
        text-align: left;
    }
        
        /* .progress-bar-custom {
            height: 8px;
            background: #E0E0E0;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        } */
         .progress-bar-custom {
        position: relative;
        height: 8px;
        width: 100%;
        background-color: #eee;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 25px;
        margin-bottom: 20px;
    }
        
        /* .progress-fill {
            height: 100%;
            background: var(--primary-yellow);
            border-radius: 10px;
            transition: width 0.5s ease;
        } */
            .progress-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 75%; /* Step 3 of 4 = 75% */
        background-color: #f6c23e;
        border-radius: 10px;
        transition: width 0.4s ease-in-out;
    }
        /* .step-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #666;
        } */
            .step-info {
        position: absolute;
        top: 35px;
        right: 40px;
        font-size: 16px;
        color: #6b6b6b;
    }
     
        
        .section-services-title {
            font-size: 1.2rem;
            /* font-weight: 600; */
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            text-align: left;
        }
        
        .section-subtitle {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 2rem;
             text-align: left;
        }
        
        /* .form-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
             text-align: left;
        } */
         .form-label {
  display: block !important;
  text-align: left !important;
  /* font-weight: 500; */
  color: var(--dark-gray);
  margin-bottom: 6px;
  color: gray;
    font-weight: normal;
}

/* Optional: Make selects and inputs full width & consistent */
.form-control,
.form-select {
  width: 100%;
  border-radius: 8px;
}
        
        .form-sublabel {
            font-size: 0.8rem;
            color: #999;
            margin-bottom: 0.8rem;
             text-align: left;
        }
        p.text-muted {
            text-align: left;
                /* align-items: center;
                    color: gray !important; */
        }
         p.text-muted-product {
             align-items: center;
                    color: gray !important;
         }
        .form-control, .form-select {
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            padding: 0.7rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 0.2rem rgba(255, 208, 79, 0.25);
        }
        
        .toggle-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            background: #8080801c;
            padding: 10px;
            border-radius: 12px;
        }
        
        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: var(--primary-yellow);
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }
        
        .map-preview {
            border: 1px solid #E0E0E0;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 1rem;
            height: 200px;
            background: #f5f5f5;
            position: relative;
        }
        
        .map-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .map-instruction {
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            margin-top: 0.5rem;
        }
        
        /* .contact-options {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .contact-option {
            flex: 1;
            min-width: 150px;
            border: 2px solid #E0E0E0;
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }
        
        .contact-option:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-2px);
        }
        
        .contact-option input[type="radio"] {
            display: none;
        }
        
        .contact-option input[type="radio"]:checked + label {
            color: var(--primary-yellow);
        }
        
        .contact-option.selected {
            border-color: var(--primary-yellow);
            background: #FFFBF0;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-yellow);
        } */
         .contact-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
        .contact-option {
    position: relative;
    flex: 1;
    min-width: 200px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 12px 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    /* font-weight: 500; */
    color: #333;
    cursor: pointer;
}

.contact-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 10px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;

}

.contact-option input[type="radio"]:checked {
    border-color: #FFD54F;
    box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.2);
}

.contact-option input[type="radio"]:checked::before {
       content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #FFD54F;
    border-radius: 50%;
}

.contact-option i {
    font-size: 16px;
    color: #999;
    transition: color 0.3s ease;
}

/* When selected */
.contact-option.selected {
    /* border-color: #FFD54F; */
    /* background-color: #FFFBEA; */
}

.contact-option.selected i {
    color: #FFD54F;
}

.contact-option:hover {
    border-color: #FFD54F;
    box-shadow: 0 0 4px rgba(255, 213, 79, 0.4);
}
.contact-option label i {
    font-size: 18px;
    color: #FFD54F;
    margin-right: 8px;
    transition: color 0.3s ease;
}

.contact-option.selected label i {
    color: #FFD54F; /* your yellow accent */
}

        .form-actions {
            /* display: flex; */
            justify-content: space-between;
            margin-top: 2rem;
            gap: 1rem;
            text-align: right;
        }
        
        /* .btn-back {
            background: transparent;
            border: 2px solid var(--dark-gray);
            color: var(--dark-gray);
            padding: 0.7rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        } */
        
        .btn-back:hover {
            background: var(--dark-gray);
            color: white;
        }
        
        .btn-continue {
            background: var(--primary-yellow);
            border: none;
            color: var(--dark-gray);
            padding: 0.7rem 2.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 208, 79, 0.4);
        }
        
        .btn-continue:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 208, 79, 0.6);
        }
        
        .map-marker {
            position: absolute;
            width: 30px;
            height: 30px;
            background: #FF4444;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            .form-card {
                padding: 1.5rem;
            }
            
            .contact-options {
                flex-direction: column;
            }
            
            .form-actions {
                flex-direction: column-reverse;
            }
            
            .btn-back, .btn-continue {
                width: 100%;
            }
        }
        
    @media (max-width: 600px) {
        .progress-header {
            padding: 20px;
        }
        .progress-header h2 {
            font-size: 22px;
        }
        .step-info {
            font-size: 14px;
            top: 25px;
            right: 20px;
        }
        .steps {
            font-size: 13px;
        }
    }
/*  sevices location form  start */


/*  sevices product form  start */
/* Rating wrapper */
.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

/* Rounded yellow pill */
.rating-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fffde9; /* very light yellow */
    padding: 6px 14px;
    border-radius: 30px;
}

/* Star icon */
.rating-pill i {
    color: #d9c331; /* soft yellow like screenshot */
    font-size: 18px;
}

/* Rating number */
.rating-number {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* Reviews text */
.reviews {
    font-size: 15px;
    color: #777;
}
.service-price {
    font-size: 32px;
    font-weight: 300;
    color: #f4c20d; /* Yellow */
    margin: 6px 0;
}
.service-price span {
    font-size: 20px;
    font-weight: 400;
    color: #777; /* Light gray */
    margin-left: 2px;
}

.form-header-services.mb-4
 {
    text-align: left;
}
span.tag-style.me-1 {
    background-color: #e4e4e4;
    border-radius: 20px;
    color: #ecd251;
    padding: 5px;
    border: 1px solid #8080809e;
    font-weight: normal;
}
/*  sevices product form   end */

/* Latest Listings - White Background */
.listings-section {
    background: white;
    padding: 55px 40px 70px;
}

.listings-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.right-controls {
    display: flex;
    gap: 7px;
    align-items: center;
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-option {
    width: 42px;
    height: 42px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #1a1a1a;
}

.view-option.active {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-box {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.product-pic {
    width: 100%;
    height: 220px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-pic img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.product-details {
    padding: 22px;
}

.product-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.product-cost {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.product-info-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 12px;
    color: #666;
}

.product-info-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.seller-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #E5E5E5;
}

.seller-pic {
    width: 40px;
    height: 40px;
    background: #FDB913;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.seller-data {
    flex: 1;
}

.seller-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.seller-active {
    font-size: 11px;
    color: #22C55E;
    display: flex;
    align-items: center;
    gap: 4px;
}

.active-dot {
    width: 7px;
    height: 7px;
    background: #22C55E;
    border-radius: 50%;
}

.contact-btn {
    background: #FDB913;
    border: none;
    padding: 9px 22px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    color: #1a1a1a;
    flex-shrink: 0;
}

.load-more-btn {
    background: #FDB913;
    border: none;
    padding: 14px 48px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: block;
    margin: 45px auto 0;
    color: #1a1a1a;
}


/* Parth CSS 04/11/2025 */
.featured-section {
    padding: 30px 0;
  }

  .section-title {
    font-weight: 700;
    font-size: 32px;
    color: #212529;
        padding-left: 171px;
  }

  .section-desc {
    color: #6c757d;
    font-size: 16px;
        padding-left: 171px;
  }

  /* Tabs styling */
  .filter-tabs {
    display: flex;
    gap: 6px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .filter-tab {
    border: none;
    background: none;
    font-size: 17px;
    font-weight: 500;
    color: #212529;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
  }

  .filter-tab.active {
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

  .filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    /* background: #ffcc00; */
    background: #FFEE58;
    border-radius: 5px;
  }

  /* Carousel wrapper */
  .carousel-container {
    position: relative;
    /* overflow: hidden; */
    margin-top: 30px;
  }

  .services-slider {
    display: flex;
    gap: 25px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .services-slider::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  .service-pic {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .service-info {
    padding: 20px;
  }

  .service-info h5 {
    font-weight: 700;
    font-size: 18px;
    color: #212529;
  }

  .service-info p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
  }
@media (max-width: 768px) {
    .service-info h5 {
        font-size: 10px;
    }
    .service-info p {
        font-size: 10px;
        margin-bottom: 2px;
    }
    .filter-header-home {
        padding: 0px;
    }
}
  .price-book {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    text-align: end;
  }

/* For RTL layouts */
[dir="rtl"] .price-book {
    text-align: left;
}
  .price {
    font-weight: 700;
    font-size: 16px;
  }

  .book-btn {
    background: #ffcc00;
    background: #FFEE58;
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
  }

  .book-btn:hover {
    background: #e6b800;
  }

  /* Arrows */
  .arrow-btn {
    position: absolute;
    top: 50%;
    background: #F8F8F8;
    transform: translateY(-50%);
    /* background: #ffcc00; */
    border: none;
    width: 75px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 47px;
    color: #ffcc00;
    transition: 0.3s;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    z-index: 10;
  }

[dir="rtl"] #prevBtn {
    /* right: 10px;
    left: auto; */
        left: 100%;
}

[dir="rtl"] #nextBtn {
    /* left: 10px;  
    right: auto; */
    right: 100%;
}

  .arrow-btn:hover {
    background: #e6b800;
  }
  .arrow-left {
    left: -87px;
  }

  .arrow-right {
    right: -90px;
  }

  @media (max-width: 768px) {
    .service-card {
      flex: 0 0 80%;
    }

    .arrow-btn {
      display: none;
    }
  }

  /* buy sell detail page start*/
  div#listing-container {
    /* padding: 0px 64px 0px 64px; */
}
    section.detail-section {
          background: linear-gradient(180deg, #FFEE58 31.11%, rgba(255, 255, 255, 0) 50%);
    /* padding: 45px 40px 70px; */
    /* text-align: center; */
    margin: 12px;
    margin-top: 6px;
}
      /* Sort Dropdown */
.sort-select {
        /* border: none; */
    background: transparent;
    font-size: 14px;
    color: #333;
    padding: 12px 8px;
    border-radius: 16px;
    outline: none;

}
/* Toggle Switch */
.boost-toggle {
  display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    /* margin-left: 42%; */
}

.boost-toggle input {
    display: none;
}
.boost-toggle .slider::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;          /* RTL start position */
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.slider {
       width: 49px;
    height: 24px;
    /* background: #c7c7c7; */
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    margin-right: 6px;
}

.slider::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 3px;
    /* background: #fff; */
    background: #000;
    border-radius: 50%;
    transition: 0.3s;
}

.boost-toggle input:checked + .slider {
    background: #FFD044;
}

.boost-toggle input:checked + .slider::before {
    transform: translateX(18px);
}
        .filter-divider {
    width: 100%;
    border-bottom: 2px solid #37657042;
    margin-top: 12px;   /* spacing above line */
}
/* .filter-header::after{
    content: "";
    position: absolute;
    border: 1px solid #37657042;
    width: 82.4%;
    margin-top: 70px;
} */
.label-text {
    font-size: 15px;
    color: #333;
}
  .reviews-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
}

/* Each review block */
.review-items {
  display: flex;
  align-items: flex-start;
  background: #f2f1f1;
  border-radius: 14px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.review-stars i {
  color: #FFD700;
  margin-right: 2px;
  font-size: 16px;
}

/* Hover effects */
.review-item:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: 0.3s ease;
}
/* Profile Image */
.review-avatars {
  flex-shrink: 0;
}
.profile-pic {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

/* Review text */
.review-contents p {
  color: #444;
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.spec-title {
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

/* Wrapper grid */
.spec-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 10px;
}

/* Each box */
.spec-rows {
  background: #f7f7f7;
  border-radius: 19px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text styles */
.spec-label {
  color: #555;
  font-weight: 500;
  font-size: 15px;
}

.spec-value {
  color: #999;
  font-weight: 500;
  font-size: 15px;
}

/* Responsive grid for mobile */
@media (max-width: 576px) {
  .spec-table {
    grid-template-columns: 1fr;
  }
}

  .back-btn {
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            padding: 0;
        }

        .back-btn:hover {
            opacity: 0.7;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
        }

      .product-card {
    background: var(--card-bg);
    border-radius: 40px;
    /* padding: 20px; */
    width: 357px;
    /* border: 1px solid gray; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

        .product-image-main {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .product-image-main img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .thumbnail {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .thumbnail:hover {
            border-color: var(--primary-color);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .price-section h2 {
            font-size: 32px;
            font-weight: bold;
            margin: 0;
        }

        .original-price {
            text-decoration: line-through;
            color: var(--text-muted);
            font-size: 18px;
            margin-left: 10px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin: 10px 0;
        }

        .rating i {
            color: #FFD700;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            margin: 8px 0;
        }

        .seller-card {
            /* background: var(--card-bg); */
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            background: white;
        }

        .seller-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .seller-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .seller-details h6 {
            margin: 0;
            font-weight: 600;
        }

        .seller-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .seller-rating i {
            color: #FFD700;
        }

        .member-since {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 10px;
            color:gray;
        }

        .btn-contact, .btn-call {
            width: 100%;
            padding: 12px;
            border-radius: 25px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 10px;
        }

        .btn-contact {
            background-color: var(--primary-color);
            color: #55555A;
            background-color: #FFEE58;
            font-weight: 400;

        }
        ul.service-list {
            color: gray;
        }
        .service-disc{
            color: gray;
        }
        .btn-contact:hover {
            background-color: #FFD044;
        }

        .btn-call {
        background-color: white;
        color: #6E8C94;
        border: 1px solid #6E8C94;
        }

        .btn-call:hover {
            background-color: #f8f9fa;
        }

        .description-card, .reviews-card {
            /* background: var(--card-bg); */
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            background: white;
        }

        .description-card h5, .reviews-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .spec-table {
            width: 100%;
            margin-top: 20px;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-label {
            color: var(--text-muted);
            font-weight: 500;
        }

        .spec-value {
            color: var(--text-dark);
            font-weight: 400;
        }

        .review-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .review-item:last-child {
            border-bottom: none;
        }

        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            flex-shrink: 0;
        }

        .review-content p {
            margin: 5px 0;
            font-size: 14px;
            color: gray;
        }

        .review-stars {
            color: #FFD700;
            font-size: 14px;
        }
 /* CSS */
.product-header-buy-sell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.product-title-buy-sell {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  padding-right: 12px;
  line-height: 1.2;
  flex: 1;
  text-align: left;
}

.product-price-buy-sell {
  text-align: right;
  min-width: 120px; /* keep space for price */
}

.price-amount-buy-sell {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

/* Meta row layout: left tags, right small label */
.product-meta-buy-sell {
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertically center the label with tags */
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
  margin-top: 6px;
}

/* left side (tags) */
.meta-left-buy-sell {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* each tag style */
.meta-tag-buy-sell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
}

/* right side small label aligned to the same row (Fixed Price) */
.meta-right-buy-sell {
  white-space: nowrap;
  margin-left: 12px;
}

.price-label-buy-sell {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

/* responsive: if space is small, put label under tags */
@media (max-width: 520px) {
  .product-meta-buy-sell {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .meta-right-buy-sell {
    margin-left: 0;
  }
}


        @media (max-width: 768px) {
            .price-section h2 {
                font-size: 24px;
            }
            
            .thumbnail {
                width: 60px;
                height: 60px;
            }
        }

  /* buy sell detail page end*/
  /* post Section */
  /* .features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.features li {
    color: #333;
    font-size: 13px;
    margin: 4px 0;
}

.features li::before {
    content: "✔️";
    margin-right: 6px;
    color: #45c78a;
}
.post-section {
    background: white;
    padding: 52px 191px 70px;
}
.continue-btn {
    display: flex;
    justify-content: center;
    padding: 50px 0px 0px 0px;
}
p.cat-discription {
    display: flex;
    justify-content: center;
    padding: 10px 0px 0px 0px;
}
button {
    background: #f8c82a;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    transition: background 0.3s;
}

button:hover {
    background: #f8c82a;
}
.cat-post{
  padding: 20px 75px 8px 75px;
} */
 .post-section {
    background: white;
    padding: 52px 191px 33px;
}
   .categories-row {
        display: flex;
        /* flex-wrap: wrap; */
        gap: 20px;
        justify-content: center;
    }

    .cat-box {
        width: 250px;
        background: white;
        border-radius: 12px;
        padding: 20px;
        border: 2px solid #e8e8e8;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 2px solid #FFEE58;
        /* border: 2px solid transparent; */
    }

    .cat-box:hover {
        /* transform: translateY(-4px); */
        border-color: #ffd04f;
      
}

    .cat-box.active {
        border-color: #ffd04f;
        box-shadow: 0 6px 16px rgba(255, 208, 79, 0.4);
        background-color: #fffceb;
    }

    /* .cat-icon {
        font-size: 32px;
        color: #ffc107;
        margin-bottom: 10px;
    } */
i.bi.bi-car-front {
    background: #eae9e9;
    width: 15px;
    padding: 5px;
    border-radius: 12px;
    height: 13px;
}
i.bi.bi-bicycle {
    background: #eae9e9;
    width: 15px;
    padding: 5px;
    border-radius: 12px;
    height: 13px;
}
i.bi.bi-plug {
    background: #eae9e9;
    width: 15px;
    padding: 5px;
    border-radius: 12px;
    height: 13px;
}
i.bi.bi-phone {
    background: #eae9e9;
    width: 15px;
    padding: 5px;
    border-radius: 12px;
    height: 13px;
}
    .cat-name {
        font-weight: 600;
        margin-bottom: 6px;
        color: #333;
    }

    .cat-post-posts {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        /* padding: 2px 36px 8px 36px; */
         white-space: normal;
    }

    .features {
        list-style: none;
        padding: 0;
        font-size: 13px;
        color: #444;
    }

    .features li::before {
        content: "✓ ";
        color: #28a745;
        font-weight: 600;
    }

    .continue-btn {
        text-align: center;
        margin-top: 30px;
    }

    .continue-btn button {
        background: #ffd04f;
        border: none;
        padding: 10px 25px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .continue-btn button:hover {
        background: #ffc107;
    }

    .cat-discription {
        text-align: center;
         margin-top: 0px;
        color: #666;
    }
    button {
    background: #FFEE58;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    transition: background 0.3s;
}

button:hover {
    background: #FFEE58;
}
.cat-post{
  padding: 20px 75px 8px 75px;
} 
    /* post Section */


  .listing-section {
    padding: 0px 0;
  }
  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0px 69px 0px 0px;
  }
   .filter-tabs-mt-3 {
        display: flex;
    gap: 6px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px;
    flex-wrap: wrap;
    /* margin-left: 38%; */
   }
  
  /* .filter-tabs {
    display: flex;
    align-items: center;
    gap: 25px;
  } */
  .tab-button {
    border: none;
    background: none;
    font-weight: 500;
    color: #444;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .tab-button.active {
    background: #FFD700;
    border-radius: 50px;
    padding: 6px 18px;
    color: #000;
  }
  .view-toggle {
    display: flex;
    align-items: center;
    background: #d9dee3;
    border-radius: 12px;
    padding: 4px;
    margin-left: 6px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
  .view-toggle button {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 18px;
    color: #444;
    transition: all 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
  .view-toggle button.active {
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
  }

  /* Listing Cards */
  .listing-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  .listing-card:hover {
    transform: translateY(-5px);
  }
  .listing-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .listing-info {
    padding: 15px;
    text-align: start;
  }
  .price {
    font-weight: 700;
    font-size: 20px;
  }
  .meta-loc {
    background-color: #3765701A;
    color: #666;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }
  .contact-btn {
    background: #FFD700;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    padding: 5px 15px;
  }
  .load-more {
    background: #FFEE58;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 600;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
  .product-preview-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .product-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  }
  .product-preview-card img {
    /* width: 100%; */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    /* height: 220px; */
    object-fit: cover;
  }
  .product-preview-body {
    padding: 15px;
  }
  .product-preview-body h5 {
    font-weight: 600;
  }
  .product-preview-body h4 {
    font-weight: 700;
    color: #333;
  }
  .info-box {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    width: 333px;
  }
  .info-item i {
    color: #f4c20d; /* yellow */
    font-size: 14px;
    }
    /* span {
        font-size: 16px;
    } */
    .product-body {
        padding: 10px 15px 10px 15px;

    }

  /* .info-box i {
    color: #555;
    margin-right: 6px;
  } */
  .bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .seller-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .seller-avatar {
    background: #FFEE58;
    color: #000;
    font-weight: 700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-btn {
    /* background: #FFD044; */
      background: #FFEE58;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 500;
    transition: 0.3s;
  }
  .contact-btn:hover {
    background: #f1c40f;
  }
  /* Responsive */
  @media (max-width: 768px) {
    span.tip-name {
        font-size: 12px;
    }
    .filter-header {
      /* flex-direction: column; */
      /* align-items: flex-start; */
      gap: 15px;
      padding-right: 0;
      margin-top: 14px;
    }
    .boost-toggle{
        margin-left: 0;
    }
    .filter-tabs {
      gap: 6px;
      margin-left: 0;
              margin-bottom: 6px;
      flex-wrap: unset;
      /* overflow: scroll; */
    }
     .filter-tabs-mt-3{
        gap: 6px;
        margin-left: 0;
                margin-bottom: 6px;
      flex-wrap: unset;
      /* overflow: scroll; */
    }
  }
/* Parth CSS 04/11/2025 */

 /* Footer - Yellow Background with Wave */
 .footer-section {
  background: #FFEE58;
  padding: 55px 40px 25px;
  position: relative;
  margin-top: 200px;
}

.footer-wave {
  position: absolute;
  top: -98px;
  /* Adjust wave height */
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}


.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 4.5fr ;
  /* gap: 50px; */
  /* margin-bottom: 35px; */
}

    .footer-logo-area {
    display: flex;
    align-items: center;
      gap: 8px;
  margin-bottom: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: #FFEE58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 14px rgba(0, 0, 0, 0.25);
}

.logo-circle img {
    width: 45px;
    height: 45px;
}

.brand-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}


.footer-text {
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.4;
  max-width: 350px;
  font-weight: 600;
}

.footer-column h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0px;
  font-size: 22px;
  color: #ad8282;
  /* font-weight: bold; */
}

.footer-list a {
  font-size: 14px;
  color: #525050;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-list a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright {
  font-size: 17px;
  color: #1a1a1a;
}

span.brand-name {
  font-size: 30px;
  font-weight: bold;
}

strong {
    font-size: 19px;
    font-weight: bold;
    /* font-family: 'Roboto', sans-serif; */
    /* font-weight: normal; */
}
.footer-column {

    /* margin-left: 96px; */
}
/* Responsive */
@media (max-width: 1200px) {
    .categories-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fotter-colmn_left{
        flex-wrap: wrap !important;
        justify-content: space-between !important;
    }
    .hero-section-page {
        padding: 0px;
    }
      .cat-discription {
        padding: 0px;
        margin: 0px;
        font-size: 12px;
    }
    .nav-items {
        display: none;
    }

    .main-heading {
        font-size: 24px;
    }

    .categories-row {
        grid-template-columns: 1fr;
    }

    .services-row,
    .products-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-head,
    .listings-head {
        flex-direction: column;
        gap: 20px;
    }
}
/*mobile responsive start */
 /* Desktop Menu */
       /* .desktop-menu {
           display: flex;
           gap: 22px;
           align-items: center;
       }

       .nav-items a {
           position: relative;
           padding-bottom: 4px;
           color: #000;
           text-decoration: none;
       }

       .nav-items a.active::after {
           content: "";
           position: absolute;
           bottom: 0;
           left: 0;
           height: 2px;
           width: 100%;
           background: #000;
       }

       /* Mobile Toggle Button */
       .mobile-toggle-btn {
           display: none;
           background: none;
           border: none;
           font-size: 30px;
       }


       /* Mobile Menu /toggle menu*/
       .mobile-menu {
           display: none;
           flex-direction: column;
           background: #FFF6A7;
           padding: 15px;
           border-top: 1px solid #ccc;
       }

       .mobile-menu a {
           padding: 12px 0;
           font-size: 17px;
           color: #000;
           text-decoration: none;
           border-bottom: 1px solid #ddd;
       }
        .main-menu,
        .sub-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }



        .main-menu > li {
            border-bottom: 1px solid #eee;
        }

        .main-menu a {
            display: block;
            padding: 12px;
            text-decoration: none;
        }

        .sub-menu {
            /* height: auto; */
            display: none;
            /* padding-left: 15px; */
            background: #f9f9f9;
        }
.sub-title {
    font-weight: 600;
    padding: 10px 12px;
    background: #f1f1f1;
    font-size: 14px;
}
.sub-title-link {
    font-weight: 600;
    background: #f3f3f3;
}

.sub-menu .sub-menu {
    /* height: auto; */
    padding-left: 15px;
    background: #fafafa;
}

        .has-dropdown.active .sub-menu {
            display: block;
           
        }

        .mobile-post-btn {
            display: none;
        }
        i.fa.fa-angle-right.right-icon {
            float: right;
            font-size: 29px;
        }
         i.fa.fa-angle-right.right-icons {
            float: right;
            font-size: 20px;
        }
        .has-dropdown.active .sub-menu {
            display: block;
        }
        .menu-link::after,
        .has-dropdown > a::after {
            content: none !important;
        }

        .menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
/* mobile toggle menu end */
        /* each side 2 items */
        .group {
            display: flex;
            flex-direction: column;
            width: 50%;
            gap: 12px;
        }

        /* center vertical line */
        .divider {
            width: 1px;
            background: #ddd;
            margin: 0 10px;
        }

        .group a {
            text-decoration: none;
            color: #222;
            font-size: 14px;
            text-align: left;
                padding-left: 8px;
            padding-bottom: 5px;
            border-bottom: 1px solid #ddd;
        }
        /* mobile toggle end */

       /* Mobile Image Box */
       .mobile-image-box {
           width: 100%;
           margin-bottom: 15px;
       }

       .mobile-image-box img {
           width: 100%;
           border-radius: 10px;
       } 

       /* Responsive */
       @media (max-width: 992px) {
        .nav-items {
            display: none;
        }
    
            .main-heading {
        font-size: 23px;
        margin: 10px 0px 4px 0px;
        }
        .desktop-menu {
          display: none;
          }
      
          .mobile-toggle-btn {
              display: block;
          }
/* mobile toggle menu start */
          .mobile-menu {
              display: none;
              margin-top: 11px;
          }
          .menu-dropdown .dropdown-menu {
                display: none;
                padding-left: 15px;
            }

            .menu-dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-toggle {
                /* font-weight: 600; */
                cursor: pointer;
            }

            .mobile-post-btn {
                display: block;
                margin-right: 15px;
            }

            .mobile-post-btn a {
                 width: 42px;
            height: 42px;

            background: #FFEE58;
            color: #000;

            border-radius: 50%;   /* 👈 circle */
            font-size: 12px;
            font-weight: 600;

            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 26px;
            text-decoration: none;

            box-shadow: 0 4px 10px rgba(0,0,0,0.35);
            transition: all 0.2s ease;
                    }
/* mobile toggle menu end */
    /* Align with menu toggle button */
        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
          .navbar-content {
              justify-content: space-between;
              width: 100%;
          }
          .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .product-card{
            width: auto;
        }
        .product-card img{
            width: 100%;
        }
        .hero-section{
            padding: 45px 20px 70px;
        }
        .service-info.row{
            flex-direction: column;
            width: 100%;
        }
        .service-info.row .col-6{
            width: 100%;
        }
        .service-info.row .price-book.col-5{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .service-info.row .price-book.col-5 .book-btn.mt-4{
            margin-top: 0 !important;
        }
        .info-box{
            width: auto;
            height: 34px;
            margin: 8px 0px 8px 0px;
        }
        .progress-header-buy-sell {   
            max-width: 1200px;
            margin: auto;
            /* background: #fffef7;
            border-radius: 16px;
            padding: 30px 40px 40px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
            position: relative; 
            padding: 25px 10px 25px;
        }
        .action-line{
            top: 0px;
        }
        .form-header{
            padding: 0;
        }
        .form-header-freelancing.mb-4{
           padding: 14px 0px 0px 21px;
        }
        .real-estate_main{
            padding: 20px 0px;
        }
        .real-estate_main .main-from{
            padding: 35px 25px;
        }
        .real-estate-actions{
            flex-direction: column;
        }
        .services-from{
            flex-direction: column;
            gap: 15px;
        }
        .services-from .btn{
            padding: 12px 22px;
        }
        .product-description{
            font-size: 14px;
        }
        .toggle-switch{
            width: 95px;
        }
      }
       @media (max-width: 768px) {
       
            .progress-header-buy-sell {
            max-width: 1200px;
            margin: auto;
            position: relative;
            padding: 6px 24px 5px 5px;
        }
        .step-number {
            width: 22px;
            height: 20px;
        }
        .form-group label {
            font-size: 12px;
        }
        .progress_name {
            font-size: 10px;
        }
        input.form-input {
         height: 35px;
                 font-size: 11px;
        }
        select.form-input {
            height: 35px;
            padding: 7px 9px 7px 11px;
            font-size: 11px;
        }
        textarea.form-textarea {
              font-size: 11px;
        }
        .form-textarea {
            min-height: 75px;
        }
        .field-hint {
            font-size: 10px;
            margin: 5px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        span.text-danger {
            font-size:10px!important;
            margin-top: 0px;
            margin-left: 7px;
        }
         .tip-item {
             margin-bottom: 6px;
         }
        .tips-sidebar h3 {
            font-size: 15px;
        }
          .cat-box {
            padding: 15px 12px 0px 12px;
        }
        .cat-post-posts {
            font-size: 10px;
        }
        .features {
            font-size: 11px;
        }
        .breadcrumb-nav .arrow {
            font-size: 15px;
            color: #000;
        }
        .navbar-custom {
            padding: 6px 0;
        }
        img.logo-img {
            width: 45px;
        }
        .footer-section {
            background: #FFEE58;
            padding: 50px 19px 1px;
            position: relative;
            margin-top: 200px;
        }
        .footer-text {
            font-size: 12px;
            color: #1a1a1a;
            line-height: 1.4;
            max-width: 350px;
            font-weight: 600;
        }
        .footer-list li {
            margin-bottom: 0px;
            font-size: 18px;
            color: #ad8282;
            /* font-weight: bold; */
        }
        .footer-column h4 {
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 18px;
        }
        .footer-list a {
            font-size: 10px;
            color: #525050;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 14px;
            border-top: 2px solid rgba(0, 0, 0, 0.1);
        }
        .footer-copyright {
            font-size: 9px;
            color: #1a1a1a;
        }
        .brand-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c2c2c;
            letter-spacing: 0.5px;
        }
        .lang-box i {
            font-size: 14px;
        }
        i.bi.bi-geo-alt-fill {
            font-size: 12px!important;
        }
        select.form-select {
            font-size: 12px!important;
            margin-left: -12px!important;
        }
        span.listing-badge.badge-boosted {
            font-size: 10px;
        }
        span.listing-badge.badge-new{
            font-size: 10px;
        }
        span.listing-badge.badge-featured{
            font-size: 10px;
        }
        .bottom-section {
            padding: 5px 12px 5px 12px;
            font-size: 7px;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        .product-card {
            box-shadow: 0 19px 30px rgba(0, 0, 0, 0.08);
        }
        strong {
            font-size: 14px;
            font-weight: bold;
        }
        small.text-success {
            font-size: 11px;
        }
        .seller-avatar {
            width: 31px;
            height: 31px;
            font-size: 12px;

        }
        .dot.active {
            width: 30px!important;
        }
        .dot {
            width: 18px!important;
        }
            .book-btn {
        white-space: nowrap;
        min-width: 121px;
        align-items: center !important;
        margin-left: 23px;
        margin-top: 2px !important;
    }
        .price {
        font-weight: 700;
        font-size: 16px;
    }
        .categories-section {
            background: white;
            padding: 34px 19px 19px;
        }
        div#loopSlider {
            padding: 20px 0;
        }
        .search-field {
         width: 79%;
        height: 43px;
        font-size: 9px;
        padding: 9px;
        }

        .search-icon-btn {
                width: 36px;
                height: 36px;
                padding: 0px;
                right: 39px;
                        font-size: 14px;
        }
        i.bi.bi-search {
            margin-left: -2px;
        }
        .breadcrumb-nav {
            font-size: 11px!important;
            display: flex;
            align-items: center;
            gap: 2px !important;
            font-weight: 500;
                    white-space: nowrap;
            overflow: hidden;
            flex-wrap: wrap;
            padding: 0px 6px 0px 6px;
            overflow: visible;
        }
        
        .breadcrumb-nav .arrow {
            font-size: 17px;
            color: #000;
        }
        span.current {
            font-size: 11px!important;
        }


        .sub-heading {
                font-size: 10px;
                margin-bottom: 18px;
        }
            .navbar-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-area {
        display: flex;
        align-items: center;
        width: 100%;
    }

           .mobile-post-btn {
        margin-left: auto; /* Right side push */
    }

    .mobile-post-btn a {
        width: 136px;
        height: 36px;
         background: #FFEE58;
            color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
         box-shadow: 0 2px 8px rgba(0,0,0,0.35);
        text-decoration: none;
    }
        a.post-ad-btn {
        font-size: 10px !important;
                width: 105px;
                height: 25px;
            
        }
        a.post-ad-btn .plus-icon {
                width: 16px !important;
                height: 16px !important;
                margin-left: -5px;

        }

        .weekly-schedule .form-actions-shedule{
            flex-direction: column;
            justify-content: space-between;
        gap: 10px;
        }
        .form-actions-shedule .left-buttons{
            justify-content: space-between;
        }
        .amenity-checkbox {
            font-size: 10px;
        }
       
        .logo-area {
            gap: 27px;
        }
            .slider-btn.left,
        .slider-btn.right {
            display: none !important;
        }
        .filter-tab {
            padding: 9px 9px;
            font-size: 11px;
        }
            .hero-section {
            padding: 10px !important;
        }
       .has-dropdown.active .sub-menu {
               overflow: scroll !important;
        }
        .mobile-cat-box span {
            font-size: 12px;
            font-weight: 600;
        }
        .mobile-cat-box img {
            width: 31px!important;
        }
        button#loadMoreBtn {
            padding: 8px;
            border-radius: 12px;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}
            .section-head{
                align-items: unset;
                gap: 0px;
                margin-bottom: 21px;
            }
            .service-pic {
            width: 100%;
            height: auto;           /* FIX: No fixed height */
            max-height: 112px;
            object-fit: contain;    /* Show full image */
            border-radius: 18px 18px 0 0;
        }
        .service-card {
                height: auto;
            max-height: 397px;
                object-fit: contain;
        }
         #prevBtn,
        #nextBtn {
            display: none !important;
        }
            .categories-row {
        grid-template-columns: 1fr;
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-behavior: smooth;
        white-space: nowrap;
        justify-content: left;
        }
        .right-controls {
            display: flex;
            gap: 7px;
            flex-wrap: wrap;
            align-items: center;
            /* overflow: scroll; */
        }
        .view-toggle button {
            font-size: 11px;
            padding: 6px 9px 6px 9px;
        }
        .view-toggle {
            margin-left: 0px;
            gap: 0px;
            padding: 3px !important;
        }
        .category-toggle-wrapper {
            top: -32px !important;
            font-size: 10px!important;
            gap: 0px !important;
            margin-left: 0px !important;
             padding: 3px !important;
         }
        .cat-toggle-btn.active {
            background: #ffffff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            color: #000;
           font-size: 13px;
        }
        button#catListToggle {
            padding: 6px 9px 6px 9px;
            font-size: 11px;
        }
        button#catGridToggle{
            padding: 6px 9px 6px 9px;
            font-size: 11px;
        }
        .product-card img {
            width: 100%;
            height: 200px;
            border-top-right-radius: 24px;
            border-top-left-radius: 24px;
        }
        h5 {
            font-size: 16px;
        }
        .service-price {
            font-size: 22px;
        }
        .rating-pill {
            padding: 2px 7px;
        }
        .reviews {
            font-size:10px;
        }
        .rating-number {
        font-size: 12px;
    }
    .rating-pill i {
        font-size: 15px;
    }
        .what-you-get li {
            padding: 0px;
        }
        .container {
            padding: 0px 14px 0px 14px;
        }
         button.btn.btn-secondary {
            width: 47%;
            padding: 6px;
           font-size: 13px;
        }
            button.btn.btn-primary {
            width: 47%;
            padding: 6px;
            font-size: 13px;
        }
        .bottom-tips li {
            font-size:10px;
        }
        .bottom-tips h4 {
            font-size: 12px;    
        }
          .form-header-freelancing.mb-4{
           padding: 14px 0px 0px 21px;
        }
        .main-from{
            width: 94%;
            padding: 20px;
        }
        .action-divider {
            margin-left: -7px;
        }
           .desktop-menu {
               display: none;
           }

           .mobile-toggle-btn {
               display: block;
           }

           .mobile-menu {
               display: none;
               margin-top: 11px;
           }

         .navbar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-right: 10px;
        }

           button#menuToggle {
            padding: 0px 6px 0px 7px;
            background: none;
        }
        .section-title{
            padding-left: 0;
            font-size: 24px;
        }
        .section-desc{
            padding-left: 0;
            font-size: 13px;
            margin-bottom: 21px;
        }
        h2.section-title-featured {
            padding-left: 0;
            font-size: 24px;
        }
        .featured-section {
            padding: 15px 0;
        }
        .fw-bold {
            padding-left: 0;
            font-size: 22px;
        }
        .sort-select {
            padding: 9px 1px;
            font-size: 12px;
            border-radius: 12px;
            text-align: center;
        }
        .slider::before {
            width: 16px;
            height: 17px;
        }
        .slider {
        width: 48px;
        height: 24px;
        }
        .label-text {
            font-size: 12px;
        }
        p.text-muted.mb-0 {
            padding-left: 0;
            font-size: 13px;
            text-align: left;
        }
        p.section-desc-featured{
            padding-left: 0;
             font-size: 13px;
        }
        .post-section{
            padding: 15px 10px 30px;
        }
        .cat-box{
            width: 300px;
            min-width: 43%;
        }
        .cat-name {
            font-size: 14px;
        }
        .cat-icon{
            margin: 0 auto;
            margin-bottom: 20px;
        }
        .real-estate_main{
            padding: 20px 0px;
        }
    }

/*mobile responsive end */


/* Breadcrumb Wrapper start witch page open navigation title*/
        .breadcrumb-area {
            /* padding: 20px 0px 0px 0px; */
            /* background: linear-gradient(to bottom, #f8e39b, #f4d982); */
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .breadcrumb-nav a {
            color: #585858;
            text-decoration: none;
            transition: 0.3s;
        }

        .breadcrumb-nav a:hover {
            color: #000;
            transform: scale(1.03);
        }

        .breadcrumb-nav .arrow {
            font-size: 22px;
            color: #000;
        }

        .breadcrumb-nav .current {
            font-weight: 700;
            color: #000;
        }

        .breadcrumb-line {
            width: 180px;
            height: 3px;
            margin-top: 6px;
            border-radius: 20px;
            background-color: #ffdb80;
        }
/* Breadcrumb Wrapper start witch page open navigation title  end*/


/* new changes start */
/* Post New Ads CTA Button */
a.post-ad-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 7px;
    background: #FFEE58;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.25s ease;
}

/* + icon */
a.post-ad-btn .plus-icon {
    width: 22px;
    height: 22px;
    background: #000;
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    line-height: 1;
}

/* Hover effect */
a.post-ad-btn:hover {
    background: #FFEE58;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Active page */
.active-post-btn {
    background: #FFEE58;
     font-weight: 800;
   
}
small.text-danger {
    color: red;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

/* LOGIN BUTTON */
.auth-wrap{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    /* background: #FFC107; */
    padding: 4px 6px;
    border-radius: 8px;
    margin-right: 10px;
}

/* LOGIN TEXT */
.auth-wrap .login-link{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 10px;
}

/* SIGN UP BUTTON */
.auth-wrap .signup-btn{
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* HOVER EFFECT (soft) */
.auth-wrap .signup-btn:hover{
    transform: scale(1.05);
}

.auth-wrap .login-link:hover{
    text-decoration: none;
     transform: scale(1.05);
}
 span.text-danger {
    display: block;       /* make it block so margin & alignment work */
    color: red;
    font-size: 14px;
    font-weight: 500;
    text-align: left;     /* left-align text */
    margin-top: 4px;
        }
        button.remove-btn {
    height: auto;
    /* width: 6px !important; */
    }
    video {
        width: 55%;
    }
    /* new changes end*/

    [dir="rtl"] .slider-btn.right {
        right: 100%;
    }

    [dir="rtl"] .slider-btn.left {
        left: 100%;
    }
    .product-card {
        position: relative;
    }
   [dir="rtl"] i.bi.bi-search {
               margin-right: -8px;
    }
    /* RTL layout */
    html[dir="rtl"] .boost-toggle {
        flex-direction: row-reverse;   /* text right, toggle left */
        direction: rtl;
    }

    html[dir="rtl"] .boost-toggle input:checked + .slider::before {
        transform: translateX(-24px);
    }

    html[dir="ltr"] .boost-toggle input:checked + .slider::before {
        transform: translateX(24px);
    }

 @media (max-width: 768px) {
        [dir="rtl"] .search-icon-btn {
                left: 38px;
                right: auto;
            }
        [dir="rtl"] i.bi.bi-search {
                margin-right: -2px;
            }
            [dir="rtl"] .price-book {
            padding-right: 59px;
        }
        [dir="rtl"] .arrow-click {
            margin-left: 0;
            margin-right: auto;
        }
        [dir="rtl"] i.fa.fa-angle-right.right-icons {
            margin-left: 0;
            margin-right: auto;
        }

        [dir="rtl"] .mobile-menu .has-dropdown > a {
            flex-direction: row-reverse;
            text-align: right;
        }

        /* Arrow goes LEFT */
        [dir="rtl"] .mobile-menu .arrow-click {
                    margin-right: 252px;
            margin-left: 0;
        }

        /* Flip arrow direction */
        [dir="rtl"] .mobile-menu .right-icon {
            transform: rotate(180deg);
        }

        /* Keep text & icon right aligned */
        [dir="rtl"] .mobile-menu .has-dropdown > a img {
            margin-left: 8px;
        }
        [dir="rtl"] .has-dropdown.active .sub-menu{
        text-align: left;
        }
        /* Arrow LEFT for sub menu */
        [dir="rtl"] .mobile-menu .sub-menu li.has-dropdown > a .right-icons {
            margin-right: auto;
            margin-left: 0;
            transform: rotate(180deg);
        }

        /* ---------- SUB MENU LINKS (TEXT RIGHT) ---------- */
        [dir="rtl"] .mobile-menu .sub-menu li a {
            justify-content: flex-end;
            text-align: right;
        }

        /* ---------- ICON SPACING ---------- */
        [dir="rtl"] .mobile-menu img {
            margin-left: 8px;
            margin-right: 0;
        }

        /* ---------- OPTIONAL: OPEN STATE ROTATION ---------- */
        [dir="rtl"] .has-dropdown.open > a .right-icon,
        [dir="rtl"] .has-dropdown.open > a .right-icons {
            transform: rotate(-90deg);
        }
        [dir="rtl"]     .navbar-content  {
                margin-right: 11px;
        }

        .step {
            gap: 4px;
        }
        html[dir="rtl"] .label-text {
                    margin-right: 13px;
        }
        /* html[dir="rtl"] .btn-edit  {
                width: 162px;
                font-size: 12px;
                height: 35px;
        } */
        html[dir="rtl"] .auth-wrap {
            display: flex;
            flex-direction: row;      /* same line */
            align-items: center;
            /* gap: 8px; */
            white-space: nowrap;
            direction: rtl;
            margin-right: -20px;
        }
        html[dir="rtl"] .dots {
            direction: rtl;
        }

    }
 