@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #ACC0CF;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, #ACC0CF, #015E9B);
    border-radius: 50px;
}

:root {
    --orange: #FE5900;
    --blue: #015E9B;
    --text-color: #20498A;
    --primary-color: #20498A;
    --light-green: rgb(124 228 169 / 10%);
    --bs-heading-color: #000000;
    --bs-body-color: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    color: #000;
    line-height: 28px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

a:focus,
a:hover {
    text-decoration: none;
}

.gap-20 {
    gap: 20px;
}

.gap-15 {
    gap: 15px;
}

.btn {
    background-color: var(--orange);
    color: #fff;
    border-radius: 8px;
    height: 45px;
    border: 1px solid var(--orange) !important;
    line-height: 45px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: bold;
    transition: all .3s ease-in-out;
    max-width: 100%;
    min-width: 180px;
}

.btn:hover,
.btn:focus {
    background-color: #fff;
    color: var(--orange);
    border-color: var(--orange) !important;
}

.btn_blue {
    height: 50px;
    line-height: 50px;
    border: none !important;
}

[dir="rtl"] .btn_blue {
    background: linear-gradient(90deg, #013F68 0%, var(--blue) 100%);
}

[dir="ltr"] .btn_blue {
    background: linear-gradient(-90deg, #013F68 0%, var(--blue) 100%);
}

[dir] .btn_blue {
    background-size: 100%;
}

.btn_blue:hover,
.btn_blue:focus {
    background-size: 150%;
    border: none !important;
    color: #fff !important;
}

header {
    padding: 10px 0;
    color: #fff;
}

[dir="rtl"] header {
    background: linear-gradient(90deg, var(--blue) 0%, #002035 100%);
}

[dir="ltr"] header {
    background: linear-gradient(-90deg, var(--blue) 0%, #002035 100%);
}

.top-bar {
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
}

.top-bar select {
    background-color: transparent;
    border: none !important;
    color: #fff;
    width: auto;
    outline: none !important;
    padding: 0 5px;
}

[dir="rtl"] .top-bar select {
    margin-left: 10px;
}

[dir="ltr"] .top-bar select {
    margin-right: 10px;
}

.top-bar select option {
    color: #000;
}

header .social-icons {
    line-height: 20px;
}

[dir="rtl"] header .social-icons {
    border-right: 1px solid #ffffff78;
    padding-right: 17px;
}

[dir="ltr"] header .social-icons {
    border-left: 1px solid #ffffff78;
    padding-left: 17px;
}

header .social-icons a {
    margin: 0 5px;
    color: #fff;
}

.main-header {
    padding: 20px 0;
}

.main-header .logo {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

[dir="rtl"] .main-header .logo {
    margin-left: 60px;
}

[dir="ltr"] .main-header .logo {
    margin-right: 60px;
}

.main-header .form-control::placeholder {
    color: #999;
}

header form {
    flex: 1;
}

[dir="rtl"] header form {
    margin-left: 15px;
}

[dir="ltr"] header form {
    margin-right: 15px;
}

[dir="rtl"] header .lang-currency form {
    margin-left: 0;
}

[dir="ltr"] header .lang-currency form {
    margin-right: 0;
}

header form .search-box {
    flex: 1;
}

header form .form-control {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    height: 52px;
}

header form button {
    width: 50px;
    height: 50px;
    border: none;
    background: #FFFFFF;
    border-radius: 16px;
}

.nav-menu {
    padding: 5px 0;
}

[dir="rtl"] .nav-menu .nav-item {
    margin-right: 45px;
}

[dir="ltr"] .nav-menu .nav-item {
    margin-left: 69px;
}
.list-unstyled{
    padding:0 ;
}
.nav-menu a.nav-link {
    color: #ACC0CF;
    font-weight: 500;
    padding: 0;
}

.nav-menu a.nav-link.active {
    font-weight: 700;
    color: #fff;
}

.categories-dropdown .btn {
    border: 1px solid #FE5900;
    border-radius: 4px;
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

[dir="rtl"] .categories-dropdown .btn {
    margin-left: 50px;
}

[dir="ltr"] .categories-dropdown .btn {
    margin-right: 50px;
}

header .btn-orange {
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    border: none !important;
    font-weight: normal;
    color: #fff !important;
}

[dir="rtl"] header .btn-orange {
    background: linear-gradient(90deg, #983500 0%, #FE5900 100%);
    margin-right: 20px;
}

[dir="ltr"] header .btn-orange {
    background: linear-gradient(-90deg, #983500 0%, #FE5900 100%);
    margin-left: 20px;
}

header .icon-btn {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
    transition: all .3s;
}

header .icon-btn:hover {
    background-color: var(--orange);
}

header .form-group {
    position: relative;
}

header .form-group i {
    position: absolute;
    top: 50%;
    color: #191C1F;
    transform: translateY(-50%);
}

[dir="rtl"] header .form-group i {
    left: 15px;
}

[dir="ltr"] header .form-group i {
    right: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
}

.mobile-nav {
    position: fixed;
    top: 0;
    width: 40%;
    height: 100vh;
    min-width: 250px;
    background-color: var(--blue);
    z-index: 1050;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .mobile-nav {
    right: -100%;
}

[dir="ltr"] .mobile-nav {
    left: -100%;
}

[dir="rtl"] .mobile-nav.show {
    right: 0;
}

[dir="ltr"] .mobile-nav.show {
    left: 0;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 110%;
    width: 880px;
    max-width: 85vw;
    z-index: 999;
}

[dir="rtl"] .dropdown-menu-custom {
    right: 0;
}

[dir="ltr"] .dropdown-menu-custom {
    left: 0;
}

.main-cats {
    flex-shrink: 0;
    width: 200px;
    max-height: 400px;
    padding: 10px 0;
    background: #FFFFFF;
    border: 2px solid #ACC0CF;
    box-shadow: 0px 0px 25.9px var(--blue);
    border-radius: 16px;
    margin: 0 2px;
    overflow-y: auto;
}

.cat-link,
.sub-link a {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
    border-radius: 12px;
}

.cat-link:hover,
.cat-link.active,
.sub-link a:hover,
.sub-link.active a {
    background-color: #ff6600;
    color: #fff;
}

.sub_content {
    background: #FFFFFF;
    border: 2px solid #ACC0CF;
    box-shadow: 0px 0px 25.9px var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    padding: 10px;
    max-width: 60%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
}

.sub-cats {
    width: max-content;
}

.products-preview {
    flex: 1;
}

.product-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.product-box img {
    width: 100%;
    border-radius: 5px;
}

.sub-cats-group,
.product-preview-group {
    display: none;
}

.sub-cats-group.active,
.product-preview-group.active {
    display: block;
}

.horizon_product {
    background: #FFFFFF;
    border: 1px solid #E4E7E9;
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 10px;
}

.horizon_product img {
    width: 80px;
}

.horizon_product h3 {
    font-size: 14px;
}

.horizon_product h4 {
    font-size: 14px;
    color: var(--blue);
}

.title {
    font-size: 32px;
    font-weight: 600;
}

.view {
    color: #FE5900;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}
[dir="ltr"] .view i{
  transform: rotateY(180deg);
}
.story-box {
    flex: 0 0 auto;
    width: 138px;
    height: 138px;
    border: 3px solid #2196f3;
    border-radius: 30px;
    overflow: hidden;
    scroll-snap-align: start;
    padding: 2px;
    transition: transform 0.2s;
}

.story-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border-color: #FE5900 !important;
    margin: 10px 0;
}

.feature-box h6 {
    font-size: 14px;
}

.feature-box p {
    font-size: 14px;
    color: #5F6C72;
}

.category .category-box {
    margin-bottom: 15px;
}

.category-box {
    width: 24%;
}

.category-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ACC0CF;
    border-radius: 24px;
    padding: 20px;
    gap: 20px;
    flex-direction: column;
}

.category-box .img_box {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-box a img {
    max-height: 100%;
    max-width: 100%;
    filter: drop-shadow(0px 7px 4px rgba(0, 0, 0, 0.5));
    transition: all .3s;
}

.category-box a:hover img {
    transform: scale(1.1);
}
[dir="rtl"] .hero_slider{
    padding-right: 7%;
}

[dir="ltr"] .hero_slider{
    padding-left: 7%;
}
.hero_slider img {
    object-fit: cover;
    border-radius: 24px;
    height: 500px;
    max-height: 500px !important;
}
.hero_slider2{
    padding:0 !important;
}

.myHeroSwiper {
    /*border-radius: 24px;*/
}
[dir="rtl"] .myHeroSwiper .swiper-button-next{
    left: 10% !important;
}

[dir="ltr"] .myHeroSwiper .swiper-button-next{
    right: 10% !important;
}
.myHeroSwiper.swiper-horizontal>.swiper-pagination-bullets{
    width: 107% !important;
}

.tabs-nav {
    border: none;
}

.tabs-nav .nav-link {
    font-size: 16px;
    color: #5F6C72;
    cursor: pointer;
    padding: 5px 8px;
    margin: 0 3px;
    border: none;
    border-bottom: 2px solid transparent !important;
}

.tabs-nav .nav-link.active {
    color: #191C1F !important;
    font-weight: 600;
    border-bottom: 2px solid var(--orange) !important;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.ad-card {
    border: 1px solid #ACC0CF;
    border-radius: 16px;
    padding: 10px;
    position: relative;
    transition: all 0.3s;
    background-color: #ffffff;
    height: 330px;
}

.ad-card .img_box {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
}

.ad-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.ad-card .price {
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
}

.ad-card .rating {
    font-size: 16px;
    color: #77878F;
    display: flex;
    align-items: center;
    gap: 3px;
}

.ad-card .rating i {
    color: #f97316;
}

.ad-card h6 a {
    color: #191C1F;
}

.ad-card .time {
    position: absolute;
    top: 8px;
    font-size: 12px;
    color: #015E9B;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 99;
}

[dir="rtl"] .ad-card .time {
    right: 10px;
}

[dir="ltr"] .ad-card .time {
    left: 10px;
}

[dir="rtl"] .ad-card  .featured {
    left: 10px ;
    position: absolute;
    top: 8px;
    font-size: 12px;
    color: #015E9B;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 99;
}

[dir="ltr"] .ad-card  .featured {
    right: 10px;
    position: absolute;
    top: 8px;
    font-size: 12px;
    color: #015E9B;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 99;
}

.ad-card .time i,
.ad-card .details i {
    color: var(--blue);
}

.ad-card .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin: 10px 0;
    color: #000000;
}

.hover-actions {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% + 20px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
    padding: 8px;
    background: rgba(1, 94, 155, 0.2);
    backdrop-filter: blur(22.65px);
}

[dir="rtl"] .hover-actions {
    left: 50%;
    transform: translate(-50%, -50%);
}

[dir="ltr"] .hover-actions {
    right: 50%;
    transform: translate(50%, -50%);
}

.hover-actions button {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none !important;
}

.hover-actions a {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none !important;
}

.favorite-btn.active  {
    background-color: #ff6600;
    color: white;
}

.hover-actions button:hover {
    background-color: #ff6600;
    color: white;
}

.hover-actions a:hover {
    background-color: #ff6600;
    color: white;
}

.ad-card:hover .hover-actions {
    opacity: 1;
}

.banner-section {
    background-color: #B2E0FF;
    border-radius: 26px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-section .info {
    width: 350px;
    max-width: 100%;
}

[dir="rtl"] .banner-section .info {
    direction: ltr;
}

[dir="ltr"] .banner-section .info {
    direction: rtl;
}

.banner-section h4 {
    font-weight: bold;
    font-size: 46px;
}

.banner-section p {
    font-size: 24px;
    color: #191C1F;
}

.banner-section .info .btn {
    height: 45px;
    border-radius: 8px;
    border: none !important;
    font-size: 14px;
}

[dir="rtl"] .banner-section .info .btn {
    background: linear-gradient(90deg, #013F68 0%, var(--blue) 100%);
}

[dir="ltr"] .banner-section .info .btn {
    background: linear-gradient(-90deg, #013F68 0%, var(--blue) 100%);
}

.banner-section .price-badge {
    width: 110px;
    height: 90px;
    color: white;
    display: flex;
    padding: 10px 16px;
    font-size: 14px;
    position: absolute;
    top: 10px;
    background: #015B96;
    border: 6px solid #FFFFFF;
    border-radius: 1046px;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .banner-section .price-badge {
    left: 10px;
}

[dir="ltr"] .banner-section .price-badge {
    right: 10px;
}

.banner-section .img-box {
    position: relative;
}

.banner-section .img-box img {
    height: 100%;
}

.ads .col-lg-10 {
    width: 80.333333%;
}

.ads .col-lg-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 19.666667%;
}

.product-card {
    height: 330px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    overflow: hidden;
}

[dir="rtl"] .product-card {
    background: linear-gradient(180deg, #070707 0%, #6D6D6D 100%);
}

[dir="ltr"] .product-card {
    background: linear-gradient(-180deg, #070707 0%, #6D6D6D 100%);
}

.product-card img {
    max-height: 200px;
    max-width: 95%;
}

.product-card h6 {
    color: #ffffff;
    font-size: 22px;
}

.product-card a {
    border-radius: 8px;
    padding: 10px;
    height: 50px;
    width: 100%;
    color: #ffffff;
    font-size: 22px;
}

[dir="rtl"] .product-card a {
    background: linear-gradient(90deg, #001C2E 0%, #015A94 100%);
}

[dir="ltr"] .product-card a {
    background: linear-gradient(-90deg, #001C2E 0%, #015A94 100%);
}

footer {
    background-image: url(../images/footer_bg.png);
    background-size: 101% 110%;
    background-position: center top;
    padding-bottom: 50px;
    padding-top: 120px;
    color: #fff;
}
[dir="ltr"] footer {
    background-image: url(../images/footer_bg_en.png);
}
footer h6 {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul a {
    font-size: 14px;
    color: #B8B8B8;
}

footer .social-icons a {
    font-size: 18px;
    color: #fff;
    margin: 0 5px;
}

footer form {
    position: relative;
    width: 460px;
    max-width: 100%;
}

[dir="rtl"] footer form {
    margin-right: auto;
}

[dir="ltr"] footer form {
    margin-left: auto;
}

footer form .form-control {
    height: 55px;
    border-radius: 16px;
    box-shadow: none;
}

[dir="rtl"] footer form .form-control {
    text-align: right;
    padding-left: 130px;
}

[dir="ltr"] footer form .form-control {
    text-align: left;
    padding-right: 130px;
}

footer form .btn {
    background: linear-gradient(0deg, #F35501 0%, #8D3101 100%);
    border-radius: 12px;
    width: 120px;
    min-width: 120px;
    height: 55px;
    color: #fff !important;
    position: absolute;
    top: 0;
}

[dir="rtl"] footer form .btn {
    box-shadow: 2px 0px 11.9px rgba(0, 0, 0, 0.4);
    left: 0;
}

[dir="ltr"] footer form .btn {
    box-shadow: -2px 0px 11.9px rgba(0, 0, 0, 0.4);
    right: 0;
}

.hero_cat {}

.hero_cat .main {
    border-radius: 24px;
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.cat_banner_1 {
    position: relative;
    background: #191C1F;
    border-radius: 16px;
    margin-bottom: 20px;
    height: 260px;
    justify-content: space-between;
}

[dir="rtl"] .cat_banner_1 {
    padding-left: 10px;
}

[dir="ltr"] .cat_banner_1 {
    padding-right: 10px;
}

.cat_banner_1 span {
    padding: 8px 16px;
    position: absolute;
    height: 40px;
    top: 20px;
    background: var(--orange);
    color: #fff;
}

[dir="rtl"] .cat_banner_1 span {
    right: 0;
    border-radius: 8px 0 0 8px;
}

[dir="ltr"] .cat_banner_1 span {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.cat_banner_1 img,
.cat_banner_2 img {
    max-width: 50%;
    flex-shrink: 1;
}

.cat_banner_1 h6 {
    font-size: 14px;
    color: var(--orange);
}

.cat_banner_1 h3,
.cat_banner_2 h3 {
    font-size: 24px;
    text-align: center;
    color: #fff;
}

.cat_banner_1 a,
.cat_banner_2 a {
    height: 47px;
    border-radius: 8px;
    border: 1px solid transparent !important;
    margin-top: 15px;
    min-width: 60px;
}

[dir="rtl"] .cat_banner_1 a,
[dir="rtl"] .cat_banner_2 a {
    background: linear-gradient(90deg, #013F68 0%, var(--blue) 100%);
}

[dir="ltr"] .cat_banner_1 a,
[dir="ltr"] .cat_banner_2 a {
    background: linear-gradient(-90deg, #013F68 0%, var(--blue) 100%);
}

.cat_banner_2 {
    position: relative;
    background: #F2F4F5;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    height: 260px;
    justify-content: space-between;
}

.cat_banner_2 h3 {
    color: #191C1F;
}

.cat_banner_1 h4,
.cat_banner_2 h4 {
    font-size: 18px;
    color: #2DA5F3;
    margin-top: 15px;
    margin-bottom: 0;
}

.contact h2 {
    font-size: 24px;
    color: var(--orange);
    text-align: center;
}

.contact p {
    font-size: 20px;
    color: #000000;
    text-align: center;
}

.contact form {
    background: #FFFFFF;
    border: 1px solid #ACC0CF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    padding: 25px;
    flex: 1;
}

form .form-control {
    border: 1px solid #DEDEDE;
    border-radius: 16px;
    min-height: 50px;
    box-shadow: none;
}

[dir="rtl"] form .form-control {
    text-align: right;
}

[dir="ltr"] form .form-control {
    text-align: left;
}

.contact form .btn {
    height: 50px;
    width: 100%;
    border-radius: 16px;
}

[dir="rtl"] .contact form .btn {
    background: linear-gradient(90deg, #FE5900 0%, #983500 100%);
}

[dir="ltr"] .contact form .btn {
    background: linear-gradient(-90deg, #FE5900 0%, #983500 100%);
}

.contact form .form-control:focus {
    border: 1px solid var(--orange);
}

.contact .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.contact .social-icons a {
    display: block;
    color: var(--orange);
    font-size: 22px;
    margin: 5px 0;
}

.login {
    overflow: hidden;
    color: #060606;
    min-height: 100vh;
}

[dir="rtl"] .login {
    background: linear-gradient(180deg, var(--blue) 0%, #002035 100%);
}

[dir="ltr"] .login {
    background: linear-gradient(-180deg, var(--blue) 0%, #002035 100%);
}

.login .row {
    position: relative;
    z-index: 9;
    min-height: 100vh;
}

.login .container {
    min-height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

[dir="rtl"] .login .container {
    background-position: left center;
    background-image: url(../images/login_bg.png);
}

[dir="ltr"] .login .container {
    background-position: right center;
    background-image: url(../images/login_bg_ltr.png);
}
[dir="ltr"] .btn-close{
  margin-left: auto;
  margin-right: 0;
}

.login .img_box {
    position: relative;
    padding: 20px 2%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

[dir="rtl"] .login .img_box {
    margin-right: -7%;
    margin-left: 7%;
}

[dir="ltr"] .login .img_box {
    margin-left: -7%;
    margin-right: 7%;
}

.login .img_box .main_img {}

.login .img_box p {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 0;
    width: 80%;
    text-align: center;
    color: #fff;
}

.login .login_content {
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    height: calc(100vh - 150px);
    overflow-y: auto;
    padding: 0 10%;
    position: relative;
}

[dir="rtl"] .login .login_content {
    direction: ltr;
    text-align: right;
}

[dir="ltr"] .login .login_content {
    direction: rtl;
    text-align: left;
}

.login .login_content h1 {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    color: var(--blue);
    font-weight: bold;
    width: 600px;
    max-width: 70%;
}

.login .login_content p {
    text-align: center;
    margin-bottom: 30px;
    width: 600px;
    max-width: 70%;
}

.login .btn.border {
    height: 52px;
    border: 1px solid #DEDEDE !important;
    border-radius: 16px;
    background-color: transparent;
    color: #000;
    font-size: 16px;
    font-weight: normal;
}

.login .btn.border:hover {
    background-color: var(--blue);
    color: #fff;
}

.login .login_content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.login form {
    margin-top: 20px;
    width: 600px;
    max-width: 70%;
}

form .form-control {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid #DEDEDE;
    background-color: transparent;
    box-shadow: none !important;
}

form .form-control:focus {
    border: 1px solid var(--orange);
}

[dir="rtl"] form .form-control {
    text-align: right;
}

[dir="ltr"] form .form-control {
    text-align: left;
}

.login form label {
    font-weight: bold;
    width: 100%;
}

form .form-control::placeholder {
    color: #BDC4CD;
}

.login form .form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login form .form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login form .form-check-input {
    margin: 0;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
}

.login form .btn {
    border-radius: 16px;
}

.login form .signup-link {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #00000085;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
}

.login .white_logo {
    margin-top: 20px;
}

[dir="rtl"] .login .white_logo {
    margin-right: 10%;
}

[dir="ltr"] .login .white_logo {
    margin-left: 10%;
}

.login form .signup-link a,
.forgot-password {
    color: var(--primary-color);
    display: inline-block;
    margin: 0 5px;
}

.login .upload-area {
    border: 2px dashed #39A2DB;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #39A2DB;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

[dir="rtl"] .login .upload-area {
    background: linear-gradient(288.8deg, rgba(57, 162, 219, 0.1) 28.8%, rgba(117, 190, 230, 0.1) 108.71%);
}

[dir="ltr"] .login .upload-area {
    background: linear-gradient(-288.8deg, rgba(57, 162, 219, 0.1) 28.8%, rgba(117, 190, 230, 0.1) 108.71%);
}

.login .upload-area:hover {
    border-color: #007BFF;
}

.login .upload-area input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    cursor: pointer;
}

[dir="rtl"] .login .upload-area input[type="file"] {
    left: 0;
}

[dir="ltr"] .login .upload-area input[type="file"] {
    right: 0;
}

.login .upload-area span {
    font-size: 16px;
}

[dir="rtl"] .form-select {
    padding: .375rem .75rem .375rem 2.25rem;
    background-position: left .75rem center;
}

[dir="ltr"] .form-select {
    padding: .375rem 2.25rem .375rem .75rem;
    background-position: right .75rem center;
}

.login .form-select {
    /*--bs-form-select-bg-img: url("../images/ArrowRight.svg") !important;*/
}

.skip {
    color: var(--orange);
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    top: 80px;
}

[dir="rtl"] .skip {
    left: 25%;
}

[dir="ltr"] .skip {
    right: 25%;
}

.back {
    color: var(--orange);
    font-size: 30px;
    display: block;
    margin-bottom: -10px;
    margin-top: 10px;
}

[dir="rtl"] .back {
    margin-right: 10%;
}

[dir="ltr"] .back {
    margin-left: 10%;
}

.form-group {
    position: relative;
}

.login .form-group i,
.form-step-content .form-group i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid var(--blue);
    color: var(--blue);
    position: absolute;
    bottom: 13px;
}

[dir="rtl"] .login .form-group i,
[dir="rtl"] .form-step-content .form-group i {
    left: 12px;
}

[dir="ltr"] .login .form-group i,
[dir="ltr"] .form-step-content .form-group i {
    right: 12px;
}

.form-group i.fa-x-twitter {
    border-color: #00A6F3;
    color: #00A6F3;
}

.form-group i.fa-instagram {
    border-color: #F23195;
    color: #F23195;
}

.form-group i.fa-linkedin-in {
    border-color: #0068D1;
    color: #0068D1;
}

.form-group i.fa-youtube {
    border-color: #EB0002;
    color: #EB0002;
}

.login form .signup-link.resend {
    color: #FF0000;
    text-align: center;
    font-weight: bold;
    justify-content: center;
}

.login form .confirm input {
    text-align: center !important;
    width: 60px;
    height: 60px;
}

.banner2 {
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    padding: 30px;
}

.banner2 h5,
.banner2 .link,
.banner2 h2 {
    color: #FFF;
    display: block;
}

[dir="rtl"] .banner2 h5,
[dir="rtl"] .banner2 .link,
[dir="rtl"] .banner2 h2 {
    direction: ltr;
    text-align: left;
}

[dir="ltr"] .banner2 h5,
[dir="ltr"] .banner2 .link,
[dir="ltr"] .banner2 h2 {
    direction: rtl;
    text-align: right;
}

.classified_single,
.commercal_single {
    padding: 40px 0;
}

.classified_single h1 {
    text-align: center;
    color: var(--blue);
    font-weight: bold;
    margin-bottom: 20px;
    width: 50%;
}

[dir="rtl"] .classified_single h1 {
    margin-right: auto;
}

[dir="ltr"] .classified_single h1 {
    margin-left: auto;
}

.classified_single .gallery-main {
    margin-bottom: 20px;
}

.classified_single .gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    background: #efefef;
    border-radius: 24px;
}

.classified_single .gallery-thumbs img {
    width: 100%;
    border-radius: 16px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}
[dir="ltr"] .single_gallery{
    padding-left: 25px;
}

[dir="rtl"] .single_gallery{
    padding-right: 25px;
}
.classified_single .info h3 {
    font-size: 17px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    font-weight: bold;
    text-transform: capitalize;
    width: 23%;
}

.classified_single .info h3 i,
.classified_single .info h3 span {
    color: var(--orange);
}

.classified_single .info h3 a {
    font-size: 24px;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 5px;
}

[dir="rtl"] .classified_single .info h3:nth-of-type(3) {
    border-right: 1px solid var(--orange);
}

[dir="ltr"] .classified_single .info h3:nth-of-type(3) {
    border-left: 1px solid var(--orange);
}

.classified_single h2 {
    font-size: 24px;
    line-height: 40px;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 50px;
}

.ads_features h3 {
    font-size: 22px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.ads_features h3 span {
    color: #000;
    font-weight: bold;
}

.ads_features h3.price {
    color: var(--blue);
}

.feature_title {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px;
}

.classified_single p,
.commercal_single p {
    font-size: 20px;
    color: #2C2C2C;
}

.classified_single .map {
    position: relative;
}

.classified_single .map iframe {
    border-radius: 15px;
}

.classified_single .map .btn,
.commercal_single .map .btn {
    box-shadow: 0px 0px 41.1px rgba(0, 0, 0, 0.79);
    border-radius: 24px;
    height: 80px;
    line-height: 80px;
    font-size: 26px;
    font-weight: normal;
    padding: 0 40px;
    position: absolute;
    bottom: -30px;
}

[dir="rtl"] .classified_single .map .btn,
[dir="rtl"] .commercal_single .map .btn {
    left: 50%;
    transform: translateX(-50%);
}

[dir="ltr"] .classified_single .map .btn,
[dir="ltr"] .commercal_single .map .btn {
    right: 50%;
    transform: translateX(50%);
}

.seller-card {
    background-color: #fff;
    border-radius: 24px;
    width: 430px;
    max-width: 100%;
    margin: 20px 0;
    display: flex;
    align-items: stretch;
    /*flex-wrap: wrap;*/
    margin-top: 80px;
}

.seller-card .card_info {
    text-align: center;
    padding: 20px;
    border: 1px solid #ACC0CF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .seller-card .card_info {
    border-left: none;
    border-radius: 0 24px 24px 0;
}

[dir="ltr"] .seller-card .card_info {
    border-right: none;
    border-radius: 24px 0 0 24px;
}

.seller-card .btn {
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    border: none !important;
    font-weight: normal;
    color: #fff !important;
    width:100%;
}

[dir="rtl"] .seller-card .btn-primary {
    background: linear-gradient(90deg, #015E9B 0%, #002035 100%);
    border-radius: 24px 0 5px 24px;
}

[dir="ltr"] .seller-card .btn-primary {
    background: linear-gradient(-90deg, #015E9B 0%, #002035 100%);
    border-radius: 0 24px 24px 5px;
}

[dir="rtl"] .seller-card .btn-success {
    background: linear-gradient(90deg, #0A861E 0%, #11EC34 100%);
    border-radius: 24px 5px 0 24px;
}

[dir="ltr"] .seller-card .btn-success {
    background: linear-gradient(-90deg, #0A861E 0%, #11EC34 100%);
    border-radius: 5px 24px 24px 0;
}

.seller-social a {
    color: var(--blue);
    margin: 8px;
    display: inline-block;
    font-size: 20px;
}

.seller-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.report {
    height: 80px;
    line-height: 80px;
    margin-top: 80px;
    border: 1px solid var(--orange);
    color: #000;
    background-color: #fff;
    font-size: 30px;
    width: 300px;
    max-width: 100%;
    border-radius: 16px;
    font-weight: normal;
}

[dir="rtl"] .report {
    float: left;
}

[dir="ltr"] .report {
    float: right;
}

.star-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.star-rating span {
    font-size: 32px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating span.active {
    color: var(--orange);
}

.classified_single .form-group {
    margin-bottom: 20px;
}

.classified_single label {
    margin-bottom: 10px;
    font-weight: bold;
}

.classified_single form .btn {
    width: 30%;
    border-radius: 16px;
}


/* Main card for the profile content */

.profile-card {
    /*background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;*/
    position: relative;
    display: flex;
    flex-direction: column;
}
.profile-card .btn-info{
    min-width: 160px !important;
}

/* Sidebar styling */

.sidebar {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    color: #000;
    padding: 17px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-nav .nav-link {
    color: #000;
    padding: 13px 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    margin: 5px 0;
    cursor: pointer;
}

[dir="rtl"] .sidebar-nav .nav-link {
    /* Indicate clickable */
    background: linear-gradient(90deg, #015E9B 0%, #002035 100%);
}

[dir="ltr"] .sidebar-nav .nav-link {
    background: linear-gradient(-90deg, #015E9B 0%, #002035 100%);
}

[dir] .sidebar-nav .nav-link {
    background-size: 0%;
    background-repeat: no-repeat !important;
}

.sidebar-nav .nav-link i {
    /* Space between icon and text for RTL */
    font-size: 1.1rem;
    width: 20px;
    /* Fixed width for icons for alignment */
    text-align: center;
}

[dir="rtl"] .sidebar-nav .nav-link i {
    margin-left: 15px;
}

[dir="ltr"] .sidebar-nav .nav-link i {
    margin-right: 15px;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background-size: 100%;
    box-shadow: 0px 1px 13.9px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.sidebar-nav .nav-item:last-child .nav-link {
    color: red;
}


/* Profile content styling */

.profile-header {
    display: flex;
    justify-content: flex-end;
    /* Push edit button to the right */
    margin-bottom: 20px;
}

.profile-edit-btn {
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--blue);
    border-radius: 12px;
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-edit-btn i {
    color: #ACC0CF;
}

.profile-edit-btn:hover {
    background-color: var(--blue);
    color: #fff;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.form-label {
    font-weight: 600;
    color: #060606;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.btn-primary-custom {
    background-color: #0056b3;
    /* Darker blue for save button */
    border-color: #0056b3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #004085;
    border-color: #004085;
}

.cancel-link {
    color: #dc3545;
    /* Red for cancel link */
    font-weight: 500;
    text-decoration: none;
    /* Space from button for RTL */
    transition: color 0.3s ease;
}

[dir="rtl"] .cancel-link {
    margin-right: 20px;
}

[dir="ltr"] .cancel-link {
    margin-left: 20px;
}

.cancel-link:hover {
    color: #c82333;
}


/* Content sections for dynamic display */

.content-section {
    display: none;
    width: 100%;
    /*height: 100%;*/
    border: 1px solid #F0F0F0;
    border-radius: 24px;
    padding: 30px 20px;
    box-shadow: 0px 10px 7px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    min-height: 500px;
}

.content-section.active,
.content-section.show {
    display: flex;
}

.profile_btns {
    margin-bottom: -110px
}


/* Responsive adjustments */

@media (min-width: 992px) {
    .profile-card {
        margin-bottom: 0;
        /* Remove margin on larger screens */
    }

    .sidebar {
        height: auto;
        /* Let sidebar height adjust to content on larger screens */
    }
}

.subscription-section {
    text-align: center;
}

.subscription-section h2 {
    font-size: 28px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subscription-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.plan-card {
    background-color: #fff;
    padding: 30px 15px;
    margin-bottom: 25px;
    border: 1px solid #ACC0CF;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensure cards in a row have same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* Center content horizontally */
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plan-duration {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--blue);
    /* Blue for price */
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 20px;
    font-weight: 400;
}

[dir="rtl"] .plan-price span {
    margin-right: 5px;
}

[dir="ltr"] .plan-price span {
    margin-left: 5px;
}

.plan-features-and-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.plan-features {
    list-style: square;
    margin: 0;
    /* Align features to the right */
}

[dir="rtl"] .plan-features {
    padding-right: 15px;
    /* Reset margin */
    text-align: right;
}

[dir="ltr"] .plan-features {
    padding-left: 15px;
    text-align: left;
    padding-right: 0;
}

.plan-features li {
    font-size: 12px;
    color: #000;
    margin-bottom: 3px;
    /* Slightly less margin for tighter list */
    position: relative;
    /* Ensure text aligns right */
}

[dir="rtl"] .plan-features li {
    padding-right: 0;
    /* Space for icon */
    text-align: right;
}

[dir="ltr"] .plan-features li {
    padding-left: 0;
    text-align: left;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.btn-subscribe {
    border: none;
    color: #fff !important;
    height: 38px;
    line-height: 38px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* Prevent button text from wrapping */
    min-width: unset;
    width: 50%;
}

[dir="rtl"] .btn-subscribe {
    background: linear-gradient(90deg, #FE5900 0%, #983500 100%);
}

[dir="ltr"] .btn-subscribe {
    background: linear-gradient(-90deg, #FE5900 0%, #983500 100%);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
}


/* Responsive adjustments */

@media (max-width: 767.98px) {
    .plan-card {
        padding: 20px;
    }

    .plan-features-and-button {
        flex-direction: column;
        /* Stack vertically on small screens */
        align-items: center;
        /* Center items when stacked */
    }

    .plan-features {
        text-align: center;
        /* Center text when stacked */
        margin-bottom: 15px;
        /* Add space below features when stacked */
    }

    .plan-features li {
        /* Remove padding for icon */
        text-align: center;
        /* Center text */
    }

    [dir="rtl"] .plan-features li {
        padding-right: 0;
    }

    [dir="ltr"] .plan-features li {
        padding-left: 0;
    }

    .plan-features li::before {
        position: static;
        /* Space between icon and text */
        display: inline-block;
    }

    [dir="rtl"] .plan-features li::before {
        /* Make icon inline */
        margin-left: 5px;
    }

    [dir="ltr"] .plan-features li::before {
        margin-right: 5px;
    }

    .btn-subscribe {
        width: 100%;
        /* Make button wider on small screens */
    }
}

.my_ads {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}

.my_ads .border {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.text-orange {
    color: var(--orange);
}

.my_ads i {
    font-size: 27px;
}

.btn-orange-add {
    color: #fff !important;
    width: 300px;
    height: 50px;
    line-height: 50px;
    max-width: 100%;
}

[dir="rtl"] .btn-orange-add {
    background: linear-gradient(90deg, #983500 0%, #FE5900 100%);
}

[dir="ltr"] .btn-orange-add {
    background: linear-gradient(-90deg, #983500 0%, #FE5900 100%);
}

.delegates .seller-card {
    flex-direction: column;
    border: 1px solid #ACC0CF;
    border-radius: 24px;
    margin-top: 20px;
}

.delegates .seller-card .card_info {
    border: none;
}

.delegates .seller-card .btn_group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}

.delegates .seller-card .btn {
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 20px;
    width: 45%;
    padding: 0 10px;
    justify-content: center;
    border: none !important;
    font-weight: normal;
    color: #fff !important;
}

[dir="rtl"] .delegates .seller-card .btn-primary {
    background: linear-gradient(90deg, #015E9B 0%, #002035 100%);
    border-radius: 16px 0 16px 16px;
}

[dir="ltr"] .delegates .seller-card .btn-primary {
    background: linear-gradient(-90deg, #015E9B 0%, #002035 100%);
    border-radius: 0 16px 16px 16px;
}

[dir="rtl"] .delegates .seller-card .btn-success {
    background: linear-gradient(90deg, #0A861E 0%, #11EC34 100%);
    border-radius: 0 16px 16px 16px;
}

[dir="ltr"] .delegates .seller-card .btn-success {
    background: linear-gradient(-90deg, #0A861E 0%, #11EC34 100%);
    border-radius: 16px 0 16px 16px;
}

.myHeroSwiper {
    padding-bottom: 80px;
    /*max-width: 1000px;*/
}

.myHeroSwiper .swiper-button-next,
.myHeroSwiper .swiper-button-prev {
    z-index: 999;
    bottom: 0;
    top: auto;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 50px;
    color: #fff;
}

.myHeroSwiper .swiper-button-next:after,
.myHeroSwiper .swiper-button-prev:after {
    font-size: 18px;
}

.myHeroSwiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #F0F0F0;
    opacity: 1;
}

.myHeroSwiper .swiper-pagination-bullet-active {
    background: var(--blue) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff
}

.ads-grid2 {
    display: flex;
    gap: 1%;
    flex-wrap: wrap;
}

.ad-card_2 {
    width: 24%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.ad-card_2 .img_box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ad-card_2 .btn_group {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}

[dir="rtl"] .ad-card_2 .btn_group {
    left: 0;
}

[dir="ltr"] .ad-card_2 .btn_group {
    right: 0;
}

.ad-card_2 .btn {
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 20px;
    width: 45%;
    padding: 0 10px;
    justify-content: center;
    border: none !important;
    font-weight: normal;
    color: #fff !important;
}

[dir="rtl"] .ad-card_2 .btn-primary {
    background: linear-gradient(90deg, #015E9B 0%, #002035 100%);
    border-radius: 16px 16px 0 16px;
}

[dir="ltr"] .ad-card_2 .btn-primary {
    background: linear-gradient(-90deg, #015E9B 0%, #002035 100%);
    border-radius: 16px 16px 16px 0;
}

[dir="rtl"] .ad-card_2 .btn-success {
    background: linear-gradient(90deg, #0A861E 0%, #11EC34 100%);
    border-radius: 16px 16px 16px 0;
}

[dir="ltr"] .ad-card_2 .btn-success {
    background: linear-gradient(-90deg, #0A861E 0%, #11EC34 100%);
    border-radius: 16px 16px 0 16px;
}

.ad-card_2 .time {
    position: absolute;
    top: 10px;
}

[dir="rtl"] .ad-card_2 .time {
    right: 10px;
}

[dir="ltr"] .ad-card_2 .time {
    left: 10px;
}

.ad-card_2 .favorite-btn {
    position: absolute;
    top: 10px;
    background-color: transparent;
    color: #fff;
    box-shadow: none !important;
    border: none !important;
    font-size: 18px;
}

[dir="rtl"] .ad-card_2 .favorite-btn {
    left: 10px;
}

[dir="ltr"] .ad-card_2 .favorite-btn {
    right: 10px;
}

.commercal_single .main_img {
    width: 100%;
    min-height: 220px;
    border-radius: 24px;
}

.map iframe {
    border-radius: 20px;
}

.commercal_single .map {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

.commercal_single .map .btn {
    position: static;
    transform: none;
}

.commercal_single .btn_group .btn {
    height: 75px;
    line-height: 75px;
    font-size: 26px;
    font-weight: normal;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    width: 270px;
    color: #fff !important;
}

.commercal_single .btn-primary {
    border-radius: 24px;
}

[dir="rtl"] .commercal_single .btn-primary {
    background: linear-gradient(90deg, #015E9B 0%, #002035 100%);
}

[dir="ltr"] .commercal_single .btn-primary {
    background: linear-gradient(-90deg, #015E9B 0%, #002035 100%);
}

.commercal_single .btn-success {
    border-radius: 24px;
}

[dir="rtl"] .commercal_single .btn-success {
    background: linear-gradient(90deg, #0A861E 0%, #11EC34 100%);
}

[dir="ltr"] .commercal_single .btn-success {
    background: linear-gradient(-90deg, #0A861E 0%, #11EC34 100%);
}

.modal-dialog {
    width: 991px;
    max-width: 90%;
}

.modal-dialog .btn-orange {
    color: #fff !important;
}

[dir="rtl"] .modal-dialog .btn-orange {
    background: linear-gradient(90deg, #983500 0%, #FE5900 100%);
}

[dir="ltr"] .modal-dialog .btn-orange {
    background: linear-gradient(-90deg, #983500 0%, #FE5900 100%);
}

.modal-dialog .btn-close {
    color: var(--blue);
}

.report-container {
    padding: 15px;
}

.report-reasons {
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    justify-content: center;
    /* Center items horizontally */
    gap: 15px;
    /* Space between items */
    margin-bottom: 40px;
    padding: 15px;
    /* Padding around the buttons as in the image */
    border: 1px solid #ACC0CF;
    /* Border around the reasons container */
    border-radius: 24px;
}


/* Styles for the hidden radio input */

.report-reason-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.report-reason-label {
    background-color: #fff;
    color: #aaabad;
    border: 1px solid #ced4da;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.report-reason-label:hover {
    border-color: var(--orange);
}

.report-reason-radio:checked+.report-reason-label {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 10px 0.25rem rgba(255, 140, 0, 0.25);
}

.submit-report-btn {
    width: 50%;
    min-width: 250px;
    margin: 0 auto;
    display: table;
}

.submit-report-btn:hover {
    /* Reverse gradient on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

[dir="rtl"] .submit-report-btn:hover {
    background: linear-gradient(to right, #ff4500, #ff8c00);
}

[dir="ltr"] .submit-report-btn:hover {
    background: linear-gradient(to left, #ff4500, #ff8c00);
}


/* Responsive adjustments */

@media (max-width: 767.98px) {
    .report-container {
        padding: 25px;
    }

    .report-reasons {
        flex-direction: column;
        /* Stack buttons vertically on small screens */
        padding: 15px;
        gap: 10px;
    }

    .report-reason-label {
        width: 100%;
        /* Full width labels */
        max-width: unset;
        /* Remove max-width constraint */
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    .submit-report-btn {
        min-width: unset;
        width: 100%;
    }
}

.ads_pend p {
    font-size: 20px;
    text-align: center;
}

.iti{
    width:100%;
}
[dir="ltr"] .text-start{
    text-align: left !important;
}
.table-responsive .table{
    min-width: max-content;
}
.tab-content .row{
    margin-bottom: 25px;
}

/*responsive*/
@media (max-width: 1200px){
    [dir="rtl"] .nav-menu .nav-item {
        margin-right: 20px;
    }
    
    [dir="ltr"] .nav-menu .nav-item {-
        margin-left: 20px;
    }
    [dir="ltr"] .single_gallery{
        padding-left: 0;
    }
    
    [dir="rtl"] .single_gallery{
        padding-right: 0;
    }  
    .classified_single .info h3 {
        font-size: 15px;
        gap: 5px;
    }
    .classified_single .info h3 a{
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .title {
        font-size: 26px
    }
    .hero_slider{
        padding: 0 7% !important;
    }
    .hero_slider img {
        object-fit: cover;
        border-radius: 24px;
        height: 300px;
        max-height: 300px !important;
    }
    [dir="rtl"] .myHeroSwiper .swiper-button-next{
        left: 0% !important;
    }
    
    [dir="ltr"] .myHeroSwiper .swiper-button-next{
        right: 0% !important;
    }
    .seller-social a{
        padding: 6px;
    }
    .myHeroSwiper.swiper-horizontal>.swiper-pagination-bullets{
        width: 100% !important;
    }
    .main-header .logo {
        max-width: 110px;
        margin: 0
    }

    [dir="rtl"] .top-bar select {
        margin-left: 0
    }

    [dir="ltr"] .top-bar select {
        margin-right: 0
    }

    header .social-icons {
        display: none !important;
    }

    header .btn-orange {
        min-width: 90px;
        font-size: 14px;
        height: 35px;
        line-height: 35px;
    }

    .main-header {
        padding: 10px 0
    }

    header form {
        flex-grow: 0;
        width: auto;
    }

    .dropdown-menu-custom {
        height: 60vh;
        overflow-y: auto;
        /*flex-direction: column;*/
        z-index: 1050;
    }
    .dropdown-menu-custom .main-cats,
    .dropdown-menu-custom .sub-cats,
    .dropdown-menu-custom .products-preview {
        /*width: 100%;
        border-left: none;
        border-bottom: 1px solid #eee;*/
    }

    .dropdown-menu-custom .products-preview {
        display: none;
    }

    .main-header .search-box {
        width: 100%;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu .desktop-nav {
        display: none !important;
    }

    .nav-menu .mobile-nav-links {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    [dir="rtl"] .form-select {
        padding: .375rem .75rem .375rem 1.25rem;
    }

    [dir="ltr"] .form-select {
        padding: .375rem 1.25rem .375rem .75rem;
    }

    .login .login_content,
    .login .img_box {
        padding: 0 3%
    }

    .login .img_box p {
        font-size: 22px;
        width: 100%
    }

    .ads .col-lg-2 {
        width: 32%;
    }

    .ads .col-lg-10 {
        width: 68%;
    }

    .story-box {
        width: 100px;
        height: 100px
    }

    .category-box .img_box {
        height: 100px
    }

    .feature-box {
        border: none !important;
    }

    .banner-section h4 {
        font-size: 34px
    }

    .banner-section p {
        font-size: 20px
    }

    footer {
        padding-top: 200px
    }

    footer {
        background-size: 110% 110%;
        background-position: top center;
        padding-bottom: 10px;
        padding-top: 200px;
    }

    footer .row {
        flex-direction: column-reverse;
    }

    footer .col-lg-5>.d-flex {
        flex-direction: column-reverse;
    }

    footer form {
        width: 100%
    }

    .categories-dropdown .btn {
        min-width: auto;
        background-color: transparent;
        padding: 0 12px;
        border: none !important;
        color: #fff;
        font-size: 14px;
        font-weight: normal;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }

    .hero_cat .col-lg-8 {
        order: -1;
    }

    .hero_cat .main {
        height: auto;
        margin-bottom: 20px;
    }

    .classified_single h1 {
        width: 100%
    }

    .single_gallery {
        order: -1;
    }

    .classified_single h2 {
        margin-top: 50px
    }

    .feature_title {
        margin-top: 0
    }

    .classified_single .map .btn,
    .commercal_single .map .btn {
        font-size: 20px
    }

    .report {
        height: 70px;
        line-height: 70px;
        margin-top: 50px;
        font-size: 23px;
        width: 220px;
    }

    .classified_single .gallery-main img {
        height: 400px
    }

    .ads_features h3 {
        font-size: 18px;
        margin-bottom: 20px
    }

    .feature_title {
        font-size: 18px
    }

    .classified_single p,
    .commercal_single p {
        font-size: 16px
    }

    .ad-card_2 {
        width: 32%
    }

    .commercal_single .map iframe {
        width: 100%;
    }

    .commercal_single .map .btn {
        position: absolute;
    }

    [dir="rtl"] .commercal_single .map .btn {
        transform: translateX(-50%);
    }

    [dir="ltr"] .commercal_single .map .btn {
        transform: translateX(50%);
    }

    .commercal_single .btn_group .btn {
        margin-top: 20px
    }

    .commercal_single .main_img {
        margin-bottom: 20px
    }
    .content-section{
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .classified_single form .btn{margin-top:0 !important;}
    .category-box a {
        padding: 10px;
    }
    .h3, h3 {
        font-size: calc(0.9rem + .6vw);
    }
    .title {
        font-size: 22px;
    }
    .login .img_box {
        display: none;
    }
    .hero_slider{
        padding: 0 3% !important;
    }
    .login .container {
        background-color: #fff;
        background-image: none;
    }

    .login {
        background: #fff
    }

    .login .login_content {
        height: auto;
        padding-bottom: 30px;
        align-items: center;
    }

    .login .white_logo {
        margin: 0 auto;
        margin-top: 30px;
        display: table;
    }

    .login form {
        max-width: 100%
    }

    .banner2 {
        flex-direction: column;
    }

    .banner2 .btn {
        display: none;
    }

    .ads .col-lg-2 {
        width: 30%;
        display: none;
    }

    .ads .col-lg-10 {
        width: 100%;
    }

    .category-box {
        width: 48%;
        margin-bottom: 15px
    }

    .view {
        font-size: 14px;
        gap: 10px
    }

    .banner-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        text-align: center;
    }

    .banner-section .price-badge {
        width: 90px;
        height: 60px;
        padding: 5px 6px;
        top: 0;
        border: 4px solid #FFFFFF;
    }

    [dir="rtl"] .banner-section .price-badge {
        left: 0;
    }

    [dir="ltr"] .banner-section .price-badge {
        right: 0;
    }

    .main-cats,
    .sub_content {
        width: max-content;
        min-width: 140px;
    }

    .report {
        float: none;
        margin: 0 auto;
        margin-bottom: 30px;
        display: table;
    }

    .seller-card {
        width: 100%
    }

    .seller-card .btn {
        height: 60px;
        line-height: 60px;
        font-size: 19px;
        gap: 15px;
        min-width: 150px;
    }

    .ad-card_2 {
        width: 49%
    }

    .ads_pend .justify-content-between {
        justify-content: center !important;
    }
    .main-header .gap-3{
        gap: .3rem !important;
    }
    .breadcrumb-item img{
        width: 20px !important;
    }
}

@media (max-width: 460px) {
    .classified_single .info {
        flex-wrap: wrap;
    }

    .classified_single .info h3 {
        width: 50%;
        font-size:13px;
        justify-content: flex-start;
    }
    .classified_single .info h3 a {
        font-size: 19px;
    }

    [dir="rtl"] .classified_single .info h3:nth-of-type(3) {
        border-right: none;
    }

    [dir="ltr"] .classified_single .info h3:nth-of-type(3) {
        border-left: none;
    }
    .contact p {
        font-size: 16px
    }
    .seller-social a{padding:0;}
    .contact form {
        width: 100%
    }

    .contact .social-icons {
        width: 100%;
        flex-direction: row;
        gap: 10px
    }

    footer {
        background-size: 510px 110%
    }

    .classified_single .map .btn,
    .commercal_single .map .btn {
        font-size: 18px;
        padding: 0 15px;
        width: 100%;
        height: 60px;
        line-height: 60px;
    }

    .seller-card {
        flex-direction: column;
        border: 1px solid #ACC0CF;
        overflow: hidden;
    }

    .seller-card .card_info {
        border-radius: 24px 24px 0 0;
        padding: 15px;
        border: none;
    }

    .seller-card .card_info+.d-flex {
        flex-direction: row;
    }

    .seller-card .card_info+.d-flex {
        flex-direction: row !important;
        flex-wrap: wrap;
        width: 100%;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .seller-card .card_info+.d-flex .seller-social {
        order: -1;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    .seller-card .btn {
        height: 55px;
        line-height: 55px;
        font-size: 18px;
        gap: 10px;
        min-width: 90px;
        width: 47%;
    }

    [dir="rtl"] .seller-card .btn-primary {
        border-radius: 10px 0;
    }

    [dir="ltr"] .seller-card .btn-primary {
        border-radius: 0 10px;
    }
    
    [dir="rtl"] .seller-card .btn-success{
        border-radius: 0 10px;
    }
    
    [dir="ltr"] .seller-card .btn-success{
        border-radius: 10px 0;
    }

    .report {
        height: 60px;
        line-height: 60px;
        font-size: 20px;
        width: 100%;
    }

    .classified_single .gallery-thumbs img {
        height: 150px
    }

    .classified_single h2 {
        margin-top: 30px;
        font-size: 20px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .ads_features h3 {
        font-size: 16px;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .classified_single .gallery-main img {
        height: 350px
    }

    .ad-card_2 {
        width: 100%
    }

    .commercal_single .btn_group .btn {
        height: 70px;
        line-height: 70px;
        font-size: 21px;
        min-width: 50px;
        gap: 5px;
    }

    .breadcrumb {
        font-size: 13px
    }
    .tabs-nav .nav-link{
        padding: 5px 6px;
    }
    .content-section {
        border-radius: 10px;
        padding: 10px;
    }
}

@media (max-width: 484px){
    .ad-card{
        height:auto;
    }
    .ad-card .img_box{
        height:auto;
        max-height:300px;
    }
    .ad-card .img_box img{
        max-height:300px;
    }
}

