:root{

--primary:#f97316;

--bg:#f6f8fc;

--white:#ffffff;

--text:#2d3748;

--border:#ececec;

}

body{

background:var(--bg);

font-family:Poppins,sans-serif;

color:var(--text);

}

.wrapper{

min-height:100vh;

}

.sidebar{

width:260px;

background:#fff;

border-right:1px solid var(--border);

position:fixed;

height:100vh;

overflow-y:auto;

}

.content{

margin-left:260px;

}

.logo{

padding:25px;

text-align:center;

}

.logo img{

/* max-width:170px; */

}

.sidebar .nav-link{

display:flex;

align-items:center;

gap:15px;

padding:15px 25px;

color:#555;

font-weight:500;

border-left:4px solid transparent;

}

.sidebar .nav-link:hover{

background:#fff7f2;

color:var(--primary);

}

.sidebar .active{

background:#fff7f2;

border-left:4px solid var(--primary);

color:var(--primary);

}

.top-header{

padding:20px;

}

.search-bar{

background:#fff;

padding:12px;

border-radius:15px;

}

.header-right{

display:flex;

justify-content:flex-end;

align-items:center;

gap:20px;

}

.icon-btn{

width:45px;

height:45px;

border-radius:50%;

border:none;

background:#fff7f2;

position:relative;

}

.icon-btn span{

position:absolute;

top:-5px;

right:-5px;

background:red;

color:#fff;

font-size:11px;

padding:2px 6px;

border-radius:20px;

}

.user-menu{

display:flex;

align-items:center;

gap:12px;

cursor:pointer;

}

.user-menu img{

width:48px;

height:48px;

border-radius:50%;

}
.dashboard-body{
padding:30px;
}

.hero-card{

border-radius:22px;

overflow:hidden;

background:#fff;

}

.hero-card h2{

font-size:34px;

font-weight:700;

}

.hero-card p{

font-size:16px;

}

.profile-progress{

position:relative;

width:140px;

height:140px;

margin:auto;

}

.profile-progress svg{

transform:rotate(-90deg);

}

.progress-bg{

fill:none;

stroke:#ececec;

stroke-width:10;

}

.progress-bar{

fill:none;

stroke:#f97316;

stroke-width:10;

stroke-linecap:round;

stroke-dasharray:364;

stroke-dashoffset:102;

}

.progress-text{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

text-align:center;

}

.progress-text h2{

margin:0;

font-size:32px;

color:#f97316;

}

.membership-card{

border-radius:22px;

}

.membership-list{

padding:0;

margin:20px 0;

list-style:none;

}

.membership-list li{

padding:10px 0;

display:flex;

gap:12px;

align-items:center;

}

.membership-list i{

color:#22c55e;

font-size:18px;

}

.btn-warning{

background:#f97316;

border:none;

}

.btn-warning:hover{

background:#ea580c;

}

.match-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.06);

transition:.35s;

height:100%;

}

.match-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.match-image{

position:relative;

overflow:hidden;

}

.match-image img{

width:100%;

height:330px;

object-fit:cover;

}

.match-score{

position:absolute;

top:18px;

right:18px;

background:#22c55e;

color:#fff;

padding:8px 14px;

font-weight:700;

border-radius:30px;

}

.verified{

position:absolute;

left:15px;

top:15px;

background:#fff;

padding:6px 12px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.online{

position:absolute;

width:14px;

height:14px;

background:#22c55e;

border-radius:50%;

right:18px;

bottom:18px;

border:3px solid #fff;

}

.match-body{

padding:22px;

}

.profile-info{

padding:0;

margin:20px 0;

list-style:none;

}

.profile-info li{

margin-bottom:10px;

display:flex;

gap:10px;

}

.profile-info i{

color:#f97316;

width:20px;

}

.match-tags{

display:flex;

flex-wrap:wrap;

gap:8px;

margin-bottom:20px;

}

.match-tags span{

background:#fff3e6;

padding:7px 12px;

border-radius:25px;

font-size:13px;

color:#f97316;

}

.match-buttons{

display:flex;

gap:10px;

}

.match-buttons .btn{

flex:1;

border-radius:10px;

}

/* ===========================================
   Profile Completion Checklist
=========================================== */

.profile-checklist{
    margin-top:25px;
    padding:18px 22px;
    background:#fafbfc;
    border:1px solid #edf1f5;
    border-radius:16px;
}

.profile-checklist .d-flex{
    align-items:center;
    padding:10px 0;
    border-bottom:1px dashed #e9ecef;
}

.profile-checklist .d-flex:last-child{
    border-bottom:none;
}

.profile-checklist span:first-child{
    font-size:15px;
    font-weight:500;
    color:#2d3748;
}

.profile-checklist span.text-success{
    font-size:14px;
    font-weight:700;
    color:#22c55e !important;
}

.profile-checklist a{
    font-size:14px;
    font-weight:600;
    color:#f97316;
    text-decoration:none;
    transition:.3s;
}

.profile-checklist a:hover{
    color:#ea580c;
    text-decoration:underline;
}
/* ==========================================
   Statistics Cards
========================================== */

.stats-card{

    background:#fff;

    border-radius:18px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

    cursor:pointer;

    position:relative;

    overflow:hidden;

}

.stats-card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.stats-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.stats-content{

    flex:1;

}

.stats-content small{

    color:#6b7280;

    font-size:14px;

}

.stats-content h3{

    margin:4px 0;

    font-size:34px;

    font-weight:700;

}

.stats-content a{

    text-decoration:none;

    font-size:14px;

    font-weight:600;

}
.received{

background:#fff5f5;

}

.received .stats-icon{

background:#ffe2e2;

color:#ff4d6d;

}

.received a{

color:#ff4d6d;

}

.sent{

background:#eef6ff;

}

.sent .stats-icon{

background:#d9ecff;

color:#0d6efd;

}

.sent a{

color:#0d6efd;

}

.accepted{

background:#eefcf3;

}

.accepted .stats-icon{

background:#daf8e3;

color:#22c55e;

}

.accepted a{

color:#22c55e;

}

.declined{

background:#fff8ef;

}

.declined .stats-icon{

background:#ffe8cc;

color:#f97316;

}

.declined a{

color:#f97316;

}

.views{

background:#f7f2ff;

}

.views .stats-icon{

background:#e9ddff;

color:#8b5cf6;

}

.views a{

color:#8b5cf6;

}
@media(max-width:768px){

.stats-card{

padding:18px;

}

.stats-content h3{

font-size:28px;

}

.stats-icon{

width:50px;

height:50px;

font-size:20px;

}

}

/*===========================================
    Section Header
===========================================*/

.matches-section{

    margin-top:50px;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.section-header h2{

    font-size:28px;

    font-weight:700;

    color:#212529;

    margin-bottom:6px;

}

.section-header p{

    color:#6c757d;

    margin:0;

}



/*===========================================
    Premium Match Card
===========================================*/

.match-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border:1px solid #edf1f5;
}

.match-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.match-image{
    position:relative;
    overflow:hidden;
}

.match-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.match-card:hover .match-image img{
    transform:scale(1.08);
}
.verified-badge{

    position:absolute;
    left:15px;
    top:15px;

    background:#fff;

    padding:7px 12px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    color:#198754;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

}

.match-score{

    position:absolute;

    right:15px;

    top:15px;

    background:linear-gradient(135deg,#ff9800,#ff5722);

    color:#fff;

    padding:8px 14px;

    border-radius:30px;

    font-weight:700;

}

.online-status{

    position:absolute;

    bottom:18px;

    right:18px;

    width:16px;

    height:16px;

    border-radius:50%;

    background:#28c76f;

    border:3px solid #fff;

}
.match-body{

    padding:22px;

}

.member-name{

    font-size:20px;

    font-weight:700;

    margin-bottom:2px;

}

.member-id{

    color:#888;

}

.wishlist-btn{

    border:none;

    background:#fff4e5;

    width:40px;

    height:40px;

    border-radius:50%;

    color:#ff9800;

    transition:.3s;

}

.wishlist-btn:hover{

    background:#ff9800;

    color:#fff;

}
.member-details{

    margin-top:18px;

    display:grid;

  /*  grid-template-columns:1fr 1fr; */

    gap:10px;

}

.member-details div{

    font-size:14px;

    color:#555;

}

.member-details i{

    color:var(--primary);

    margin-right:8px;

}
.compatibility-box{

    margin-top:20px;

    background:#fff8ef;

    padding:15px;

    border-radius:12px;

}

.compatibility-box h6{

    font-weight:700;

    margin-bottom:12px;

}

.compatibility-box span{

    display:block;

    margin-bottom:8px;

    font-size:14px;

}
.action-buttons{

    margin-top:20px;

}

.action-buttons .btn-light{

    border:1px solid #e9ecef;

}

.action-buttons .btn-light:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}
.profileSwiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.profileSwiper .swiper-wrapper {
    align-items: stretch;
}

.profileSwiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.match-card {
    width: 100%;
    max-width: 100%;
}
.wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    flex: 0 0 280px;   /* or whatever your sidebar width is */
}

.content {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
}

.profileSwiper {
    width: 100%;
    overflow: hidden;
}

.profileSwiper .swiper-slide {
    height: auto;
}

.discover-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:.35s;
    height:100%;
    border:1px solid #edf1f7;
}

.discover-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.discover-card h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:4px;
}

.discover-card p{
    color:#6c757d;
    margin-bottom:0;
    font-size:14px;
}

.view-all{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
    font-size:14px;
}

.view-all i{
    transition:.3s;
}

.discover-card:hover .view-all i{
    transform:translateX(4px);
}

.avatar-group{
    display:flex;
    align-items:center;
    margin:24px 0 18px;
}

.avatar-group img{
    width:54px;
    height:54px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    margin-left:-14px;
    transition:.3s;
}

.avatar-group img:first-child{
    margin-left:0;
}

.discover-card:hover .avatar-group img{
    transform:translateY(-4px);
}

.avatar-count{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#f4e8ff;
    color:#7b2cbf;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:-14px;
    border:3px solid #fff;
}

.discover-card small{
    color:#6c757d;
    font-size:14px;
}

.dashboard-card{
    background:#fff;
    border-radius:20px;
    border:1px solid #edf1f7;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.35s;
    overflow:hidden;
}

.card-header-custom{

    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.card-header-custom h5{

    margin:0;
    font-weight:700;

}

.card-header-custom a{

    text-decoration:none;
    font-weight:600;
    color:#0d6efd;

}

.visitor-item{

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 24px;
    border-top:1px solid #edf2f7;
    transition:.3s;

}

.visitor-item:hover{

    background:#fafafa;

}

.visitor-avatar{

    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;

}

.visitor-info{

    flex:1;
    margin-left:15px;

}

.visitor-info h6{

    margin:0;
    font-weight:600;

}

.visitor-info span{

    color:#6c757d;
    font-size:14px;

}

.interest-header{

    padding:24px 24px 10px;

}

.interest-header h5{

    margin:0;
    font-weight:700;

}

.interest-tabs{

    border-bottom:1px solid #edf2f7;
    padding:0 24px;

}

.interest-tabs .nav-link{

    color:#6c757d;
    font-weight:600;
    border:none;
    border-bottom:3px solid transparent;
    border-radius:0;
    padding:14px 18px;

}

.interest-tabs .nav-link.active{

    color:#ff6b00;
    border-color:#ff6b00;
    background:none;

}

.interest-item{

    display:flex;
    align-items:center;
    padding:24px;
    gap:25px;

}

.interest-item img{

    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;

}

.interest-name{

    min-width:170px;

}

.interest-name h6{

    margin-bottom:2px;
    font-weight:700;

}

.interest-name span{

    color:#6c757d;

}

.interest-location{

    color:#6c757d;
    min-width:120px;

}

.interest-time{

    color:#6c757d;
    min-width:120px;

}

.interest-actions{

    margin-left:auto;
    display:flex;
    gap:12px;

}

.btn-success-soft{

    background:#ebfff1;
    color:#16984b;
    border:1px solid #b9ebca;
    padding:8px 18px;
    border-radius:10px;
    font-weight:600;

}

.btn-success-soft:hover{

    background:#16984b;
    color:#fff;

}

.btn-danger-soft{

    background:#fff1f2;
    color:#e63946;
    border:1px solid #fecdd3;
    padding:8px 18px;
    border-radius:10px;
    font-weight:600;

}

.btn-danger-soft:hover{

    background:#e63946;
    color:#fff;

}

/* ==============================
   Header Right
============================== */

.header-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:18px;

}

/* ==============================
   User Menu
============================== */

.user-menu{

    display:flex;

    align-items:center;

    gap:15px;

    cursor:pointer;

    padding:0;

}

.user-menu img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #fff;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.user-info h6{

    margin:0;

    font-size:20px;

    font-weight:700;

}

.user-info small{

    color:#777;

    font-size:14px;

}

.user-menu .bi-chevron-down{

    font-size:18px;

    color:#666;

    transition:.3s;

}

.dropdown.show .bi-chevron-down{

    transform:rotate(180deg);

}

/* ==============================
   Dropdown
============================== */

.profile-dropdown{

    width:280px;

    border:none;

    border-radius:18px;

    padding:12px;

    margin-top:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    animation:dropdownFade .25s ease;

}

.dropdown-profile{

    display:flex;

    align-items:center;

    gap:15px;

    padding:10px;

}

.dropdown-profile img{

    width:60px;

    height:60px;

    border-radius:50%;

}

.dropdown-profile h6{

    margin:0;

    font-weight:700;

}

.dropdown-profile small{

    color:#6c757d;

}

.logout-item{

    color:#dc3545;

    border-radius:12px;

    font-weight:600;

    padding:12px;

}

.logout-item:hover{

    background:#fff5f5;

    color:#dc3545;

}

/* ==============================
   Animation
============================== */

@keyframes dropdownFade{

    from{

        opacity:0;

        transform:translateY(-12px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
@media(max-width:991px){

.content{

margin-left:0;

}

.top-header{

display:none;

}

}

@media(max-width:991px){

.dashboard-body{

padding:20px;

}

.hero-card{

text-align:center;

}

.hero-card h2{

font-size:28px;

}

.profile-progress{

margin-top:30px;

}

.membership-card{

margin-top:20px;

}

}
@media(max-width:992px){

.match-image img{

height:270px;

}

}

@media(max-width:768px){

.match-image img{

height:320px;

}

.match-buttons{

flex-direction:column;

}

}

@media (max-width:992px){

.interest-item{

    flex-wrap:wrap;
    gap:15px;

}

.interest-actions{

    width:100%;
    margin-left:0;

}

.interest-actions button{

    flex:1;

}

}

@media (max-width:768px){

.visitor-item{

    flex-wrap:wrap;
    gap:15px;

}

.visitor-item .btn{

    width:100%;

}

.interest-tabs{

    overflow:auto;
    flex-wrap:nowrap;

}

.interest-tabs .nav-link{

    white-space:nowrap;

}

}