
.author_message {
    background: #d9eef1;
}


/* Compact Icons Only */
.right-corner-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto !important;
}

.right-corner-menu .nav-link.icon-only {
    color: #333;
    padding: 8px 10px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.right-corner-menu .nav-link.icon-only:hover,
.right-corner-menu .nav-link.icon-only.active {
    background: #f0f0f0;
    color: #007bff;
    transform: translateY(-2px);
}

    /* Right Corner Menu Styles */
    .right-corner-menu {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto !important;
    }
    
    .right-corner-menu .nav-link.icon-link {
        color: #333;
        padding: 8px 10px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        border-radius: 6px;
        transition: all 0.3s ease;
        text-decoration: none;
        min-width: 70px;
    }
    
    .right-corner-menu .nav-link.icon-link:hover,
    .right-corner-menu .nav-link.icon-link.active {
        background: #f0f0f0;
        color: #007bff;
    }
    
    .right-corner-menu .icon-link i {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .right-corner-menu .icon-text {
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .right-corner-menu {
            flex-direction: row;
            justify-content: center;
            padding: 10px 0;
            border-top: 1px solid #eee;
            margin-top: 10px;
            width: 100%;
            gap: 15px;
        }
        
        .right-corner-menu .nav-link.icon-link {
            min-width: 60px;
        }
        
        .right-corner-menu .icon-text {
            font-size: 11px;
        }
    }
    
    @media (max-width: 768px) {
        .right-corner-menu {
            gap: 8px;
        }
        
        .right-corner-menu .nav-link.icon-link {
            padding: 6px 8px !important;
            min-width: 55px;
        }
        
        .right-corner-menu .icon-link i {
            font-size: 18px;
        }
        
        .right-corner-menu .icon-text {
            font-size: 10px;
        }
    }


.menu_search_form {
    max-width: 380px;   /* desktop width */
    width: 100%;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd;
    overflow: hidden;
}

/* INPUT */
.menu-search-input {
    flex: 1;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

/* BUTTON */
.menu-search-btn {
    border: none;
    background: #0d6efd; /* bootstrap primary */
    color: #fff;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-search-btn i {
    font-size: 14px;
}
/* ================= HERO SLIDER ================= */
/* ================= HERO SECTION WRAPPER ================= */
.hero-wrapper {
    margin-top: 60px; /* TOP GAP */
}

/* ================= LEFT HERO SLIDER ================= */
.hero-slider {
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark Overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

/* Hero Text */
.hero-content {
    position: absolute;
    bottom: 45px;
    left: 45px;
    color: #fff;
    max-width: 520px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 18px;
}

.hero-content .btn {
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 6px;
}

/* ================= RIGHT SIDE CARDS ================= */
.side-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-card {
    position: relative;
    height: 128px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

/* Card Image */
.side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

/* Dark overlay */
.side-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* Hover zoom */
.side-card:hover::before {
    transform: scale(1.08);
}

/* Card Content */
.side-card-content {
    position: absolute;
    bottom: 16px;
    left: 18px;
    z-index: 2;
    color: #fff;
}

.side-card-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.side-card-content p {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ================= BACKGROUND IMAGES ================= */
.card-building::before {
    background-image: url("/uploads/home/building.jpg");
}

.card-industrial::before {
    background-image: url("/uploads/home/industrial.jpg");
}

.card-electrical::before {
    background-image: url("/uploads/home/electrical.jpg");
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .hero-slider,
    .hero-slide {
        height: 360px;
    }

    .hero-content {
        bottom: 30px;
        left: 30px;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .side-card {
        height: 115px;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .hero-wrapper {
        margin-top: 5%;
    }

    .hero-slider,
    .hero-slide {
        height: 260px;
        border-radius: 12px;
    }

    .hero-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .side-cards {
        margin-top: 15px;
    }

    .side-card {
        height: 100px;
    }
}

/* nav baar new css code start */

/* herader css  */

.top-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo-img {
    height: 80px;
}

.location-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 6px;
    gap: 6px;
}

.location-box select {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    cursor: pointer;
}

.search-box {
    max-width: 520px;
    width: 100%;
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.search-box button {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 0 18px;
}

.top-icons {
    display: flex;
    gap: 18px;
}

.top-icons li {
    list-style: none;
}

.top-icons a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-icons i {
    font-size: 18px;
    margin-bottom: 2px;
}
/* HEADER */
.sd-navbar{
    height:64px;
}

/* LOGO */
.sd-logo{
    height:28px;
    width:auto;
}

/* SEARCH */
.sd-search-wrap{
    max-width:620px;
}

.sd-location{
    display:flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    white-space:nowrap;
    background:#fff;
}

.sd-search-input{
    height:38px;
    border-radius:8px 0 0 8px;
}

.sd-search-btn{
    height:38px;
    border-radius:0 8px 8px 0;
}

/* NAV LINKS */
.nav-link{
    font-size:14px;
    font-weight:500;
    color:#222;
}
.nav-link:hover{
    color:#0d6efd;
}

/* ICON MENU */
.nav-item.text-center i{
    font-size:16px;
}
.nav-item.text-center small{
    font-size:12px;
}

/* MOBILE */
@media(max-width:991px){
    .sd-navbar{
        height:auto;
        padding:10px 0;
    }
    .sd-search-wrap{
        flex-direction:column;
        align-items:stretch;
    }
    .sd-location{
        margin-bottom:6px;
    }
}/* Location dropdown ko compact bana do */
.navbar .form-select-sm{
    height: 34px;
    padding: 4px 26px 4px 8px;
    font-size: 13px;
}

/* Mobile me layout clean */
@media(max-width: 576px){

  .main_menu .d-flex.align-items-center{
     width: 100%;
  }

  #headerLocation{
     width: 100%;
  }

  .menu_search_form{
     width: 100%;
     margin-top: 6px !important;
  }

  .menu_search_form input{
     width: 100%;
  }
}
.select2-container .select2-selection--single{
   height: 34px !important;
}

.select2-selection__rendered{
   line-height: 32px !important;
   font-size: 13px;
}

.select2-selection__arrow{
   height: 32px !important;
}
/* Select box */
.sd-location .select2-container--default .select2-selection--single {
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Selected text */
.sd-location .select2-selection__rendered {
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

/* Arrow */
.sd-location .select2-selection__arrow {
    height: 100%;
}

/* Dropdown */
.sd-location-dropdown {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Options */
.sd-location-dropdown .select2-results__option {
    padding: 12px 15px;
    font-size: 14px;
}

/* Hover */
.sd-location-dropdown .select2-results__option--highlighted {
    background: #f1f5f9;
    color: #111;
}

/* Selected option */
.sd-location-dropdown .select2-results__option--selected {
    background: #1e73be;
    color: white;
    font-weight: 600;
}



/* ===== SevenDial Style Header ===== */
/* ================= SevenDial Header ================= */

.sd-header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 0px 0;
}

.sd-container {

    max-width: 1500px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* LOGO */
.sd-logo img {
    height: 150px;
    position: relative;
    margin-top: -62px;
    /* margin-left: 0%; */
}

/* LOCATION */
.sd-location {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.sd-location select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
}
/* ================= STICKY HEADER ================= */

/* Desktop Header */
.sd-header {
    position: sticky;
    top: 0;
    z-index: 9999;           /* sabke upar rahe */
    background: #ffffff;
}

/* Mobile Header */
.sd-mobile-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
}

/* Optional: scroll pe shadow effect */
.sd-header.scrolled,
.sd-mobile-header.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


/* SEARCH */
.sd-search {
    flex: 1;
    display: flex;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 20px;
}

.sd-search input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
}

.sd-search button {
    background: #0d5cab;
    color: #fff;
    border: none;
    padding: 0 22px;
    cursor: pointer;
}

/* RIGHT MENU */
.sd-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.sd-menu a {
    text-decoration: none;
    color: #222;
    font-size: 13px;
    text-align: center;
}

.sd-menu a i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.sd-menu a:hover {
    color: #0d5cab;
}


/* ================= COMMON HEADER ================= */
.sd-header{
    background:#fff;
    border-bottom:1px solid #e6e6e6;
}

/* ================= DESKTOP HEADER ================= */
.sd-container{
    max-width:1500px;
    margin:auto;
    padding:10px 24px;
    display:flex;
    align-items:center;
    gap:18px;
}

.sd-logo img{
    height:155px;
}

/* LOCATION */
.sd-location{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    font-size:14px;
    background:#fff;
}

.sd-location select{
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
}

/* SEARCH */
.sd-search{
    flex:1;
    display:flex;
    border:1px solid #e1e1e1;
    border-radius:10px;
    overflow:hidden;
    margin:0 20px;
}

.sd-search input{
    flex:1;
    border:none;
    padding:12px 16px;
    font-size:14px;
}

.sd-search button{
    background:#0d5cab;
    color:#fff;
    border:none;
    padding:0 22px;
    cursor:pointer;
}

/* RIGHT MENU */
.sd-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.sd-menu a{
    text-decoration:none;
    color:#222;
    font-size:13px;
    text-align:center;
}

.sd-menu a i{
    display:block;
    font-size:18px;
    margin-bottom:4px;
}

.sd-menu a:hover{
    color:#0d5cab;
}

/* ================= MOBILE HEADER ================= */
.sd-mobile-header{
    display:none;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px){

    /* hide desktop */
    .sd-container{
        display:none;
    }

    /* show mobile */
    .sd-mobile-header{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:10px 12px;
        background:#fff;
        border-bottom:1px solid #eee;
    }

    .sd-mobile-menu,
    .sd-mobile-search{
        background:none;
        border:none;
        font-size:20px;
        color:#333;
    }

    .sd-mobile-logo img{
        height:136px;
    }

    .sd-mobile-location{
        display:flex;
        align-items:center;
        gap:4px;
        padding:4px 8px;
        border:1px solid #ddd;
        border-radius:6px;
        font-size:13px;
        background:#fafafa;
    }

    .sd-mobile-location select{
        border:none; 
        background:transparent;
        outline:none;
        font-size:13px;
    }
}


/* nav baar new css code end */
/* new css code slider section */
/* ================= HERO WRAPPER ================= */
/* ================= FULL WIDTH HERO ================= */
.sd-hero-full{
    width:98%;
    background:#fff;
    margin-top:20px;
}

.sd-hero-inner{
    max-width:1460px;       /* SevenDial style */
    margin:auto;
    /* padding:0 24px; */
    display:flex;
    gap:18px;
}

/* LEFT */
.sd-hero-left{
    flex: 0 0 72%;
}

/* RIGHT */
.sd-hero-right{
    flex: 0 0 28%;
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* SLIDER */
.sd-hero-slider,
.sd-hero-slide{
    height:480px;
    border-radius:8px;
    overflow:hidden;
}

.sd-hero-slide{
    background-size:cover;
    background-position:center;
    position:relative;
}

/* OVERLAY */
.sd-hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.1)
    );
}

/* CONTENT */
.sd-hero-content{
    position:absolute;
    left:56px;
    bottom:90px;
    max-width:540px;
    color:#fff;
    z-index:2;
}

.sd-hero-content h1{
    font-size:2.8rem;
    font-weight:900;
    margin-bottom:14px;
}

.sd-hero-content p{
    font-size:1.05rem;
    opacity:.9;
    margin-bottom:22px;
}

.sd-hero-btn{
    background:#fff;
    color:#0d5cab;
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
}

/* RIGHT CARDS */
.sd-side-card{
    height:150px;
    border-radius:16px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    position:relative;
}

.sd-side-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.sd-side-card-content{
    position:absolute;
    left:18px;
    bottom:18px;
    color:#fff;
    z-index:2;
}

.sd-side-card-content h5{
    font-size:1.1rem;
    font-weight:700;
}

.sd-side-card-content p{
    font-size:.9rem;
    opacity:.85;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .sd-hero-inner{
        flex-direction:column;
    }

    .sd-hero-left,
    .sd-hero-right{
        flex:100%;
    }

    .sd-hero-slider,
    .sd-hero-slide{
        height:360px;
    }
}

.sd-hero-content p{
    /* font-size:1rem; */
   color: rgb(255, 255, 255);
}

@media(max-width:575px){
    .sd-hero-slider,
    .sd-hero-slide{
        height:260px;
        border-radius:14px;
    }

    .sd-hero-content{
        left:20px;
        bottom:30px;
    }

    .sd-hero-content h1{
        font-size:1.5rem;
    }

    .sd-side-card{
        height:110px;
    }
}


/* end new css slider section coded */
/* ===============================
   POPULAR CATEGORIES – EXACT UI
================================ */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 👈 EXACT 10 */
    gap: 16px;
}

/* CARD */
.category-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 8px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #edf1f7;
    transition: all 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 12px 30px rgba(13, 92, 171, 0.18);
    transform: translateY(-5px);
    border-color: #0d5cab;
}

/* ICON BACKGROUND */
.category-icon {
    width: 64px;
    height: 64px;
    background: #0d5cab; /* EXACT blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

/* ICON */
.category-icon i {
    font-size: 26px;
    color: #ffffff;
}

/* TITLE */
.category-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

/* Explore all */
.explore-all-link {
    font-weight: 600;
    color: #0d5cab;
    text-decoration: none;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Laptop small */
@media (max-width: 1400px) {
    .categories-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-icon {
        width: 56px;
        height: 56px;
    }

    .category-icon i {
        font-size: 22px;
    }

    .category-title {
        font-size: 12px;
    }
}


/* product section css */
/* ===========================
   SEVENDIAL FOOTER
=========================== */

.sd_footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 20px;
    font-size: 14px;
    color: #555;
}

.footer_logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer_about p {
    font-size: 14px;
    line-height: 22px;
    color: #555;
}

.footer_social {
    margin-top: 15px;
}

.footer_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0d47a1;
    margin-right: 8px;
    transition: 0.3s;
}

.footer_social a:hover {
    background: #0d47a1;
    color: #fff;
}

.footer_title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links li {
    margin-bottom: 8px;
}

.footer_links a {
    color: #555;
    text-decoration: none;
    transition: 0.2s;
}

.footer_links a:hover {
    color: #0d47a1;
    padding-left: 4px;
}

/* Bottom */
.footer_bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #777;
}
/* Default (Desktop) → hide */
.footer_toggle .arrow{
    display: none;
}

/* Mobile → show */
@media (max-width: 768px){
    .footer_toggle .arrow{
        display: inline-block;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .sd_footer {
        padding: 40px 0 15px;
    }
}
@media (max-width: 768px) {

    .footer_links {
        display: none;
        margin-top: 10px;
    }

    .footer_title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .footer_title .arrow {
        font-size: 18px;
        transition: 0.3s;
    }

    .footer_title.active .arrow {
        transform: rotate(45deg);
    }
}

/* ===============================
   PRODUCT STYLE (COMMON)
================================ */

.product_like_section {
    background: #f4f6f9;
}

.section_title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

.view_all {
    font-size: 14px;
    color: #0d47a1;
    font-weight: 500;
    text-decoration: none;
}

.view_all i {
    margin-left: 4px;
}

.product_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.product_card:hover {
    transform: translateY(-6px);
}

.product_img {
    height: 170px;
    overflow: hidden;
}

.product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_content {
    padding: 14px;
}

.product_title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    min-height: 38px;
}

.company_name {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.location {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.location i {
    color: #0d47a1;
    margin-right: 4px;
}

.rating_area {
    font-size: 12px;
    color: #f4b400;
    margin-bottom: 6px;
}

.rating_area span {
    color: #777;
    margin-left: 4px;
}

.price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.common_btn {
    display: block;
    background: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
}

.common_btn:hover {
    background: #08306b;
}

/* responsive */
@media (max-width: 991px) {
    .product_img {
        height: 160px;
    }
}

@media (max-width: 575px) {
    .section_title {
        font-size: 18px;
    }
}



/* filetering css */
.filter-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.filter-header h5 {
    font-weight: 600;
}

.clear-filter {
    font-size: 14px;
    color: #0d6efd;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.filter-group select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.service-top-bar {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wsus__single_services {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
}

.wsus__services_text {
    padding: 15px;
}

.common_btn {
    margin-top: 12px;
    background: #0d47a1;
    color: #fff;
    border-radius: 6px;
}

.service_title_link{
    color:#111;
    text-decoration:none;
    transition:0.3s;
}
.service_title_link:hover{
    color:#0d6efd;
    /* text-decoration:underline; */
}

/* card */
/* ===== SERVICE CARD ===== */

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-card-img {
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CATEGORY BADGE */
.service-category {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #eaf2ff;
    color: #0d6efd;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* BODY */
.service-card-body {
    padding: 16px;
}

/* PRICE */
.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
    text-align: right;
}

/* TITLE */
.service-title {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin: 8px 0 12px;
    line-height: 1.4;
}

.service-title:hover {
    color: #0d6efd;
}

/* PROVIDER */
.service-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.service-provider img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.service-provider span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* BUTTON */
.service-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: #0d47a1;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #08306b;
    color: #fff;
}

/* loan section css */
/* ================= HERO ================= */
.sd-loan-hero{
    background: linear-gradient(90deg,#1f4ed8,#10327f);
    padding:72px 0;
    color:#fff;
}

.sd-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.sd-trusted{
    font-size:13px;
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:16px;
    opacity:.95;
}

.sd-left h1{
    font-size:46px;
    font-weight:700;
    line-height:1.18;
    margin-bottom:16px;
}

.sd-sub{
    font-size:15px;
    line-height:1.6;
    opacity:.9;
    max-width:620px;
    margin-bottom:34px;
    color:#e5e7eb;
}

.sd-stats{
    display:flex;
    gap:38px;
}

.sd-stat{
    display:flex;
    align-items:center;
    gap:14px;
}

.sd-icon{
    width:46px;
    height:46px;
    background:rgba(255,255,255,.22);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.sd-stat strong{
    font-size:14px;
}

.sd-stat span{
    font-size:12px;
    color:#d1d5db;
}

/* ================= LOAN CATEGORY ================= */
.loan-type-section{
    padding:60px 0;
    text-align:center;
    background:#fff;
}

.loan-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:40px;
}

.loan-card-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

.loan-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:14px;
    padding:28px 15px;
    transition:.25s;
}

.loan-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.loan-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 14px;
    color:#fff;
    font-size:22px;
}

.loan-card h4{
    font-size:15px;
    font-weight:500;
    margin-bottom:6px;
}

.loan-card p{
    font-size:13px;
    font-weight:600;
    color:#1f4ed8;
}

/* ICON COLORS */
.blue{background:#3b82f6;}
.purple{background:#8b5cf6;}
.green{background:#22c55e;}
.orange{background:#f97316;}
.red{background:#ef4444;}
.teal{background:#14b8a6;}

/* RESPONSIVE */
@media(max-width:992px){
    .loan-card-grid{grid-template-columns:repeat(3,1fr);}
}

@media(max-width:576px){
    .loan-card-grid{grid-template-columns:repeat(2,1fr);}
}

/* ================= LOAN PROCESS ================= */


.sd-side-card-content p{
    color: rgb(255, 255, 255);
}





/* ===============================
   TRUSTED BRANDS – SLIDER (FINAL)
================================ */

.trusted-brands-section {
    background: #ffffff;
    padding: 60px 0 50px;
    border-top: 1px solid #f1f1f1;
}

/* Title */
.trusted-title {
    text-align: center;
    font-family: "Poppins,sans-serif";
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 40px;
}

/* Swiper container */
.trustedBrandsSlider {
    width: 100%;
    overflow: hidden; /* 🔑 extra safety */
}

/* Swiper wrapper */
.trustedBrandsSlider .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Each slide */
.trustedBrandsSlider .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand logo image */
.trusted-brand img {
    max-height: 20px;          /* 🔑 CONTROL SIZE */
    max-width: 50px;          /* 🔑 PREVENT BIG LOGOS */
    width: auto;
    object-fit: contain;
    margin: 0 26px;            /* 🔑 EVEN SPACING */
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.trusted-brand img:hover {
    opacity: 1;
    transform: scale(1.06);
}

/* Tablet */
@media (max-width: 768px) {
    .trusted-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .trusted-brand img {
        max-height: 38px;
        max-width: 140px;
        margin: 0 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .trusted-brand img {
        max-height: 32px;
        max-width: 120px;
        margin: 0 14px;
    }
}
/* ===============================
   TRUSTED BRANDS SECTION
================================ */

.trusted-brands-section {
    background: #ffffff;
    padding: 60px 0 50px;
    border-top: 1px solid #f1f1f1;
}

/* Heading */
.trusted-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 40px;
}

/* Swiper main container */
.trustedBrandsSlider {
    width: 100%;
    overflow: hidden; /* important */
}

/* Swiper wrapper */
.trustedBrandsSlider .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Each slide */
.trustedBrandsSlider .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand image */
.trustedBrandsSlider img {
    max-height: 44px;       /* control size */
    max-width: 160px;       /* prevent very wide logos */
    width: auto;
    object-fit: contain;
    margin: 0 26px;         /* spacing between logos */
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.trustedBrandsSlider img:hover {
    opacity: 1;
    transform: scale(1.06);
}

/* Tablet */
@media (max-width: 768px) {
    .trusted-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .trustedBrandsSlider img {
        max-height: 38px;
        max-width: 140px;
        margin: 0 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .trustedBrandsSlider img {
        max-height: 32px;
        max-width: 120px;
        margin: 0 14px;
    }
}

.trustedBrandsSlider .swiper-wrapper {
    transition-timing-function: linear !important;
}



.wsus__message__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08306b;
    border-radius: 50%;
    margin-bottom: 10px;
    
}

.wsus__message__button i {
    font-size: 30px;
}


.floating-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1f6bb8; /* blue */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
}

.floating-chat i {
    color: #fff;
    font-size: 22px;
}

.chat-sparkle {
    position: absolute;
    top: -4px;
    right: -5px;
    background: #fff;
    color: #f5b301;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
