:root {
    --rg-bg: #f6f8fc;
    --rg-text: #1a1a1a;
    --rg-muted: #6a6f7a;
    --rg-border: #e5e7eb;
    --rg-soft: #ffffff;
    --rg-primary: #131921;
    --rg-accent: #febd69;
    --rg-highlight: #2874f0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0;
    /* font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; */
    color: var(--rg-text);
    background: var(--rg-bg);
    line-height: 1.5;
}

body {
    /* font-family: "Montserrat", Arial, sans-serif; */
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
} 
.container {
  /* max-width: 1500px; */
  /* margin: 0 auto; */
}
.top-navbar {
    background: var(--rg-primary);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.search-wrap {
    flex: 2;
    max-width: 650px;
    margin-left: 1rem;
    margin-right: 1rem;
    background: #fff;
    border-radius: 0.35rem;
    overflow: hidden;
    border: 2px solid transparent;
}

.search-wrap:focus-within {
    border-color: var(--rg-accent);
}

.search-wrap .form-control {
    border: 0;
    border-radius: 0;
}

.search-wrap .btn {
    border-radius: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.header-icon-btn:hover,
.header-icon-btn:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
}

.icon-count {
    position: absolute;
    top: -0.3rem;
    right: -0.25rem;
    min-width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
    padding: 0 0.2rem;
}

.category-strip {
    background: #fff;
}

.chip-link {
    text-decoration: none;
    color: #2f3542;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #eceef3;
    transition: all 0.2s ease;
}

.chip-link:hover {
    color: #111827;
    background: #f5f7fb;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 0.85rem;
    background: linear-gradient(120deg, #12203b 0%, #1b3d7a 50%, #2967d8 100%);
}

.hero-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130px;
    object-fit: cover;
    opacity: 0.22;
    pointer-events: none;
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--rg-muted);
}

.quick-deals {
    background: #fff;
    border: 1px solid var(--rg-border);
    border-radius: 0.8rem;
    /* padding: 1rem; */
}

.deal-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.5rem;
    background: #f8f9fd;
    border: 1px dashed #dfe4ef;
    font-size: 0.9rem;
}

.deal-line img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    object-fit: cover;
    flex-shrink: 0;
}

.deal-line strong {
    margin-left: auto;
}

.feature-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.75rem;
    padding: 1rem;
    background: #fff;
}

.offer-card-thumb {
    width: 100%;
    height: 90px;
    border-radius: 0.55rem;
    object-fit: cover;
    margin-bottom: 0.55rem;
}

.flash-offer {
    animation: flashPulse 1.6s ease-in-out infinite;
}

@keyframes flashPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 80, 80, 0);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.25);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 80, 80, 0);
    }
}

.section-box {
    border: 1px solid var(--rg-border);
    border-radius: 0.85rem;
    background: #fff;
    padding: 1rem;
}

.recent-product-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.7rem;
    background: #fff;
    padding: 0.65rem;
}

.recent-product-card img {
    width: 100%;
    height: 170px;
    border-radius: 0.55rem;
    object-fit: cover;
    display: block;
}

.new-items-carousel {
    border: 1px solid var(--rg-border);
    border-radius: 0.85rem;
    background: #fff;
    padding: 1rem 2.5rem;
}

.new-item-card {
    border: 1px solid #edf1f7;
    border-radius: 0.75rem;
    background: #fbfdff;
    padding: 0.6rem;
}

.new-item-card img {
    width: 100%;
    height: 210px;
    border-radius: 0.55rem;
    object-fit: cover;
    display: block;
}

.new-items-carousel .carousel-control-prev,
.new-items-carousel .carousel-control-next {
    width: 2.1rem;
}

.new-items-carousel .carousel-control-prev-icon,
.new-items-carousel .carousel-control-next-icon {
    background-color: rgba(17, 24, 39, 0.65);
    border-radius: 999px;
    background-size: 60%;
}

.hot-deal-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 1rem;
    height: 100%;
}

.deal-thumb {
    width: 100%;
    height: 231px;
    border-radius: 0.6rem;
    object-fit: cover;
}

.old-price {
    color: #6b7280;
    text-decoration: line-through;
    margin-left: 0.35rem;
    font-size: 0.88rem;
}

.ads-banner {
    border-radius: 0.9rem;
    padding: 1.4rem;
    background: linear-gradient(120deg, #6528f7 0%, #9c27b0 50%, #ea4c89 100%);
}

.ads-flash-text {
    animation: adsTextFlash 3s ease-in-out infinite;
}

@keyframes adsTextFlash {
    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        opacity: 0.45;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    }
}

.brand-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 1rem;
}

.brand-list li + li {
    margin-top: 0.55rem;
}

.brand-list a {
    text-decoration: none;
    color: #334155;
    font-size: 0.92rem;
}

.brand-list a:hover {
    color: #1d4ed8;
}

.product-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.85rem;
    padding: 0.85rem;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0.6rem;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.product-image-offer {
    position: relative;
    background: #fff;
}

.product-image-offer img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-offer {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    background: #cc0c39;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
}

.discount-badge {

    background: #cc0c39;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.1rem 0.25rem;
    border-radius: 0.35rem;
    margin-left: 5px;
}

.rating-badge {
    /* display: block;
    flex-direction: row-reverse; */
    font-size: 0.83rem;
    color: #ffe30b;
    background: #D8A437;
    display: inline-flex;
    gap: 0.35rem;
    border-radius: 0.3rem;
    padding: 0.1rem 0.4rem;
}

.rating-badge span {
    color: #fff;
    background: transparent;
    font-weight: 500;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.price span {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 0.84rem;
    margin-left: 0.35rem;
    font-weight: 500;
}

.btn-cart {
    border: 1px solid #f59e0b;
    background: #facc15;
    color: #111827;
    font-weight: 700;
}

.btn-cart:hover {
    background: #fbbf24;
    color: #111827;
}

.related-item {
    display: block;
    text-decoration: none;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #dbe4f5;
    background: #f8fbff;
    border-radius: 0.6rem;
    padding: 0.7rem 0.8rem;
    height: 100%;
}

.related-item:hover {
    color: #1d4ed8;
    border-color: #c8d7f0;
}

.newsletter-wrap {
    border: 1px solid var(--rg-border);
    border-radius: 1rem;
    background: #fff;
}

#newsletterMessage.success {
    color: #0f5132;
}

#newsletterMessage.error {
    color: #842029;
}

@media (max-width: 991.98px) {
    .search-wrap {
        display: none;
    }

    .header-actions {
        margin-top: 0.5rem;
    }

    .hero-banner {
        padding: 1.5rem;
    }

    .new-items-carousel {
        padding: 1rem;
    }

    .new-items-carousel .carousel-control-prev,
    .new-items-carousel .carousel-control-next {
        display: none;
    }

    .select-style{        
        height: 37px;
        /* border-radius: 12px; */
    }

    .search-filters .form-select, .form-search-select {
        height: 34px;
        /* border-radius: 12px; */
        box-shadow: none;
    }
}

@media (max-width: 575.98px) {
    .hero-section .display-6 {
        font-size: 1.7rem;
    }

    #newsletterForm {
        flex-direction: column;
    }

    #newsletterForm .btn {
        width: 100%;
    }

     .new-items-carousel .carousel-control-prev,
    .new-items-carousel .carousel-control-next {
        display: none;
    }

    .select-style{
        height: 37px;
        /* border-radius: 12px; */
    }

    
    .search-filters .form-select, .form-search-select {
        height: 34px;
        /* border-radius: 12px; */
        box-shadow: none;
    }
}

.bg-primary{
    background-color:#D8A437!important; 
}

.filter-sidebar .btn-primary{
    --bs-btn-bg:#D8A437;
    --bs-btn-border-color : #D8A437;
}   

.filter-sidebar .dual-range-slider .slider-range{
    background: #D8A437 !important;
}
.filter-sidebar .dual-range-slider .slider-thumb{
    background: #D8A437 !important;
}

.brand-intro-section .brand-hero-image{
    width:100px;
}

body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image{
    width: 130px !important;
}

body.page-product .page-product-top .product-info .product-title{
    font-size: 20px!important;
}
.h6 {
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: #D8A437;
}

.filter-sidebar .subcategory-link.active{
    color:#D8A437!important;
}
.dropdown-item{
    font-size: 16px;
}

header .header-desktop .left .logo{
        margin-top: -7px!important;
}
.h-60{
    height: 66px!important;
}

.mobile-cart-icon li {
    list-style: none;
}
.header-mobile{
    background-color: #fff;
}

/* Search Filters */

.search-filters {
    position: sticky;
    top: 60px;
    z-index: 1020;
}

.filter-pill .form-select {
    min-width: 160px;
    border-radius: 999px;
    padding-left: 16px;
    padding-right: 36px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    background-color: #fff;
}

.filter-pill .form-select:focus, .form-search-select:focus {
    border-color: #D8A437;
    box-shadow: 0 0 0 0.15rem rgba(240, 173, 78, 0.18);
}

.search-filters form {
    justify-content: center;
}

.btn-primary-btn{
    color: rgb(255, 255, 255);
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: rgba(220, 42, 47, 0.28) 0px 5px 18px;
    background: rgb(219, 146, 0);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 999px;
    padding: 8px 10px;
}

.btn-primary-btn:hover{
    background: rgb(227, 161, 30);
     color: rgb(255, 255, 255);
}

.search-filters form{
    /* display: flex; */
    /* flex-direction: column; */
    gap: 18px;
} 


/* Combo box container */
.combo-box {
  position: relative;
  width: 300px;
  max-width: 100%;
  margin-bottom: 16px;
}

/* Main input field */
.combo-box .combo-input {
  width: 100%;
  padding: 10px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-shadow: 0 0 0 0 transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus state */
.combo-box .combo-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Datalist (dropdown) customization (limited by browser) */
/* You can style the options’ font size and color in most browsers */
@supports (caret-color: #000) {
  datalist option {
    padding: 6px 10px;
    font-size: 14px;
    color: #333;
  }
}


.form-card input,
.form-card select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  padding: 12px 0;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #333;
}

/* Select box designs */
.search-filters {
    position: sticky;
    top: 60px;
    z-index: 3;
    font-size: 12px;
}

.filter-bar {
    padding: 6px 0;
}

.filter-box {
    min-width: 180px;
    position: relative;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    display: block;
    padding-left: 6px;
}

.filter-select {
    width: 100%;
}

.select2-container--bootstrap-5 .select2-selection {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
    line-height: 46px;
    color: #111827;
    font-weight: 500;
}

.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.select2-container--bootstrap-5 .select2-results__option {
    padding: 12px 14px;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background: #f3f4f6;
    color: #111827;
}

.filter-btn {
    height: 48px;
    border-radius: 14px;
    padding: 0 24px;
    margin-top: 24px;
}

.search-filters .form-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

/* .search-filters .form-select {
    height: 46px;
    border-radius: 12px;
    box-shadow: none;
} */

.search-filters .btn-primary-btn {
   
    border-radius: 12px;
    height: 35px;
}


.select-style{
    /* border:1px solid #999;
    border-radius:5px;
    margin-top: 0px; */
    height: 37px;
    /* width: 205px;
    padding-left: 6px; */
}


@media (max-width: 575.98px) {
    .select-style{
        height: 37px;
        /* border-radius: 12px; */
    }
}

.search-filters .form-control,
.search-filters .form-select, .form-search-select {
    height: 37px;
    /* border-radius: 12px; */
}

@media (max-width: 767px) {
    .search-filters .row {
        row-gap: 10px;
    }

    .search-filters .btn-primary-btn {
        height: 46px;
    }
}

.mobile-filter-trigger {
    height: 35px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    cursor: pointer;
    margin: 8px;
}

.mobile-filter-offcanvas {
    height: 85vh;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.select2-container--default .select2-selection--single{
    height: 40px;
}

.h35{
    height: 35px;
}
.select2-container{
    margin-top:4px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #999!important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-right: 0px!important;
}

.form-select , .form-search-select, .select-style{
    width: 100%;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    padding: 2px 11px;
    font-size: 15px;
    outline: none;
    /* background: transparent; */
    color: #746e6e;
}

.fsize25{
    font-size: 25px;
}



/* Home Slider */
.contact-btn {
    background: #D8A437;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(220, 42, 47, 0.25);
}


.view-btn {
    background: #D8A437;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(220, 42, 47, 0.25);
}

.content-grid {
    display: grid;
    /* grid-template-columns: 1fr 320px; */
    gap: 32px;
    align-items: start;
}

.plan-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 115px 1fr;
  min-height: 150px;
}

.plan-card-small {
  grid-template-columns: 1fr;
}
.cards-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 0.6fr 40px;
  
  gap: 16px;
  align-items: center;
  /* margin-bottom: 40px; */
}

.cards-row {
grid-template-columns:repeat(4, 1fr);
}

/* .cards-row {
grid-template-columns: 36px 1fr 1fr 36px;
}   */

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: grid;
    place-items: center;
    color: #888;
    font-size: 22px;
}

.plan-image {
    position: relative;
    background: #f6f6f6;
    overflow: hidden;
    min-height: 150px;
}

.plan-info {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.small-label {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 4px;
}

.plan-size {
    font-size: 17px;
    font-weight: 700;
    color: #333;
}
.plan-price {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #444;
}

.plan-possession {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}
.plan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}


.plan-footer a {
  /* color: #c43a44; */
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}


.posted{
    font-size: 12px;
}

.custom-login{
    width:35%
}

@media (max-width: 1100px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
  }

  .cards-row {
    grid-template-columns:repeat(4, 1fr);
  }

  .plan-card-small {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .cards-row {
    grid-template-columns: 1fr;
  }

  .nav-btn {
    display: none;
  }

  .plan-card {
    grid-template-columns: 90px 1fr;
  }

  .property-strip {
    grid-template-columns: 1fr 1fr;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .property-section h2 {
    font-size: 22px;
  }
}

.img-h200{
    height: 200px;
}

.forgot {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #7e9dc5;
    text-decoration:none;
}
/* Property Detail Page design */

.details-card {
    /* border: 1px solid #e5e7eb; */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.detail-row {
    display: flex;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f1f1;
    align-items: center;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 35%;
    font-weight: 600;
    color: #6b7280;
}

.detail-value {
    flex: 1;
    color: #111827;
    font-weight: 500;
}

@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .detail-label,
    .detail-value {
        width: 100%;
    }
}

#toggleFilterSidebar{
    background-color: #D8A437 !important;
    border-color: #c88d16 !important;
}

.about-text, .footer-box a {
    color: #e1dddd!important;
}
.contact-btn-mob{
    background: #D8A437;
    color: #fff;
    border: none;
    border-radius: 182px;
    padding: 5px 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(220, 42, 47, 0.25);
}

/* header .logo{
    margin-left:23px;
} */
header .header-mobile{
    padding:0px!important;
    padding-bottom:14px!important;
}

.breadcrumb-wrap{
    padding: 12px 0!important;
}
.btn-primary-btn-search{
    color: rgb(255, 255, 255);
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: hsla(130, 34%, 71%, 0.855) 0px 5px 18px;
    background: #538253;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 999px;
    padding: 8px 10px;
}


/* ==========================================
   FLOATING SHARE
========================================== */

.floating-share{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;
}

/* Toggle Button */

.share-toggle{
    width:48px;
    height:48px;
    border:none;
    background:#D8A437;
    color:#fff;
    border-radius:10px 0 0 10px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.share-toggle i{
    font-size:22px;
    transition:.3s;
}

/* Share Icons */

.share-icons{
    position:absolute;
    top:0;
    right:-48px;
    display:flex;
    flex-direction:column;
    transition:.35s ease;
}

.share-icons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.share-icons a:hover{
    width:58px;
}

/* Desktop */

@media (min-width:992px){

    .floating-share:hover .share-icons{
        right:48px;
    }

}

/* Mobile */

@media (max-width:991px){

    .share-icons.open{
        right:48px;
    }

}

/* Colors */

.whatsapp{
    background:#25D366;
}

.instagram{
    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}

.facebook{
    background:#1877F2;
}

.email{
    background:#EA4335;
}

.copy-link{
    background:#6c757d;
}

/* header .header-desktop .left .logo{
        max-width: 215px!important;
} */


/* Home Page Design */


    .hero{
      background:
        linear-gradient(rgba(9,14,29,.72),rgba(9,14,29,.72)),
        url('/images/background_v1.jpg') center/cover;
      color:#fff;
      padding:90px 0 70px;
      position:relative;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:30px;
      align-items:center;
    }
    .hero h1{
      font-size:clamp(32px,5vw,58px);
      line-height:1.1;
      margin-bottom:16px;
          color: #fff;
    }
    .hero p{
      max-width:650px;
      color:#e5e7eb;
      margin-bottom:24px;
      font-size:16px;
    }
    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .hero h1 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 16px;
}

 .hero .container {
    width: min(1200px, 92%);
    margin: auto;
}


/* .hero-section{
    padding: 90px 0 70px;
    color: #fff;
    overflow: hidden;
    padding:90px 0 70px;
    position:relative;
    background:
        linear-gradient(rgba(9,14,29,.72),rgba(9,14,29,.72)),
        url('/images/background_v1.jpg') center/cover;
} */

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero-content{
  max-width: 650px;
}

.hero-badge{
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #fbbf24;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1{
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content p{
  font-size: 16px;
  color: #d1d5db;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary,
.btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.btn-primary{
  background: #f59e0b;
  color: #111827;
}

.btn-primary:hover{
  background: #d97706;
}

.btn-outline{
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: transparent;
}

.hero-stats{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats div{
  min-width: 110px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

.hero-stats strong{
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.hero-stats span{
  font-size: 13px;
  color: #cbd5e1;
}

.hero-image-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img{
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
}

@media (max-width: 992px){
  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-image-wrap{
    order: -1;
  }

  .hero-content{
    max-width: 100%;
    text-align: center;
  }

  .hero-content p{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats{
    justify-content: center;
  }

  .hero-img{
    max-width: 420px;
  }
}

@media (max-width: 576px){
  .hero-section{
    padding: 70px 0 50px;
  }

  .hero-content h1{
    font-size: 32px;
  }

  .hero-content p{
    font-size: 14px;
  }

  .hero-actions{
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline{
    width: 100%;
  }

  .hero-stats{
    gap: 10px;
  }

  .hero-stats div{
    flex: 1 1 calc(50% - 10px);
    min-width: unset;
  }
}

.hero-card {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.hero-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 16px;
    border-radius: 18px;
}
.stat strong {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
    color: #fff;
}

.hero-actions .btn-primary {
    background: var(--primary);
    color: #fff;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
    border: 1px solid transparent;
}

.hero-actions .btn-outline {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 15px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.section-head h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.section-head p {
    color: var(--muted);
    max-width: 640px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: .3s;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}



.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card ul {
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}
.service-card li {
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    margin-top: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
}
.section {
    padding: 70px 0;
}

.section{
  padding:70px 0;
}

.section-head{
  margin-bottom:30px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 14px;
  border-radius:999px;
  background:#fff7ed;
  color:#E2AD40;
  font-size:12px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.section-head h2{
  font-size:34px;
  margin-bottom:10px;
  color:#111827;
}

.section-head p{
  color:#6b7280;
  max-width:760px;
  margin:0 auto;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:22px;
  box-shadow:0 12px 28px rgba(15,23,42,.05);
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(15,23,42,.10);
}

.service-card.featured{
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#fff;
  border-color:transparent;
}

.service-top{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.service-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg,#f59e0b,#D8A437);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;.contact-btn
  flex:0 0 auto;
   margin-bottom: 16px;
}

.featured .service-icon{
  background:rgba(255,255,255,.14);
}

.service-card h3{
  font-size:20px;
  margin-bottom:8px;
}

.service-card p{
  font-size:14px;
  line-height:1.7;
  color:#6b7280;
}

.featured p{
  color:#cbd5e1;
}

.service-list{
  list-style:none;
  margin-top:18px;
}

.service-list li{
  position:relative;
  padding-left:20px;
  margin-bottom:10px;
  font-size:14px;
  color:#374151;
}

.service-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#f59e0b;
  font-weight:800;
}

.featured .service-list li{
  color:#e5e7eb;
}

.why-section{
  background:#f8fafc;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.why-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:22px;
  padding:22px;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
  text-align:left;
}

.why-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:#fff7ed;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:14px;
}

.why-card h4{
  margin-bottom:8px;
  font-size:18px;
}

.why-card p{
  color:#6b7280;
  font-size:14px;
  line-height:1.7;
}

@media (max-width: 992px){
  .services-grid,.why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 768px){
  .services-grid,.why-grid{
    grid-template-columns:1fr;
  }
  .section{
    padding:52px 0;
  }
  .section-head h2{
    font-size:26px;
  }
}

body.page-news-details .newest-box .newes-title{
    line-height: 30px!important;
}

/* Whats APP floating */

.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    z-index: 9999;
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.1);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:30px;
        bottom:15px;
        right:15px;
    }
}

.whatsapp-float{
    bottom: calc(20px + env(safe-area-inset-bottom));
}
