/* =============================================
   FILE: public/css/matrimony.css
   Telugu Matrimony — Global Stylesheet
   ============================================= */

:root {
    --primary: #ff2d8b;
    --primary-dark: #c96b0e;
    --green: #6a1b9a;
    --green-light: #43a047;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f0f7f0;
    --white: #ffffff;
    --border: #dee2e6;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
}

* { box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--bg-light); margin: 0; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar-matrimony {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-logo {
    /*background: var(--primary);*/
    padding: 6px 14px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

.btn-login-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    padding: 7px 22px;
    background: transparent;
    transition: all .2s;
    cursor: pointer;
}
.btn-login-outline:hover { background: var(--primary); color: white; }

/* ── HERO ───────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg,#e8f5e9 0%,#f1f8e9 50%,#e0f2f1 100%);
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    padding: 40px 0;
}
.hero-title { font-size: 2.2rem; font-weight: 700; line-height: 1.3; }
.hero-title span { color: var(--green); }

/* ── REGISTER CARD ──────────────────────────────── */
.register-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.register-card .card-header { background: var(--green); color: white; text-align: center; padding: 18px; font-size: 1.1rem; font-weight: 600; }
.register-card .card-body { padding: 28px; }

/* ── AUTH PAGE ──────────────────────────────────── */
.auth-page { min-height: 100vh; background: linear-gradient(135deg,#e8f5e9,#f1f8e9); display: flex; align-items: center; justify-content: center; padding: 20px; }
.auth-card { background: white; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.12); width: 100%; max-width: 480px; }
.auth-card .auth-header { background: var(--green); color: white; padding: 24px; text-align: center; }
.auth-card .auth-body { padding: 32px; }

/* ── FORM CONTROLS ──────────────────────────────── */
.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid var(--border);
    padding: 10px 14px;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
    font-family: 'Poppins', sans-serif;
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(224,123,28,.12); outline: none; }
.floating-label { position: relative; }
.floating-label label { position: absolute; top: -9px; left: 12px; background: white; padding: 0 4px; font-size: .78rem; color: var(--text-muted); z-index: 1; }
.phone-input-group { display: flex; gap: 8px; }
.phone-input-group .country-code { width: 110px; flex-shrink: 0; }

/* ── BUTTONS ────────────────────────────────────── */
.btn-orange { background: var(--primary); color: white; border: none; border-radius: 8px; font-weight: 600; padding: 12px 30px; transition: background .2s, transform .1s; width: 100%; cursor: pointer; font-family:'Poppins',sans-serif; }
.btn-orange:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.btn-green  { background: var(--green); color: white; border: none; border-radius: 8px; font-weight: 600; padding: 12px 30px; transition: background .2s; width: 100%; cursor: pointer; font-family:'Poppins',sans-serif; }
.btn-green:hover { background: var(--green-light); color: white; }

/* ── STEP INDICATOR ─────────────────────────────── */
.step-indicator { display: flex; align-items: center; justify-content: center; }
.step-dot { width: 34px; height: 34px; border-radius: 50%; background: #e0e0e0; color: #999; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .85rem; position: relative; z-index: 1; flex-shrink: 0; }
.step-dot.active { background: var(--primary); color: white; }
.step-dot.completed { background: var(--green); color: white; }
.step-line { flex: 1; height: 3px; background: #e0e0e0; max-width: 80px; }
.step-line.completed { background: var(--green); }
/* ── Enhanced step indicator with labels ─────────────────────── */
.step-indicator-wrap { width: 100%; }

.step-indicator-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.step-indicator-row .step-dot { width: 34px; height: 34px; flex-shrink: 0; }
.step-indicator-row .step-line { flex: 1; height: 3px; background: #e0e0e0; max-width: 80px; }
.step-indicator-row .step-line.completed { background: var(--green); }

.step-labels-row {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
}
.step-label {
    font-size: .68rem;
    text-align: center;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
}


/* ── CHIP BUTTONS ───────────────────────────────── */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 2px solid var(--border); border-radius: 30px; padding: 8px 18px; cursor: pointer; font-size: .9rem; font-weight: 500; transition: all .2s; background: white; user-select: none; }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--green); border-color: var(--green); color: white; }

/* ── OTP INPUT ──────────────────────────────────── */
.otp-input-group { display: flex; gap: 14px; justify-content: center; }
.otp-box { width: 58px; height: 58px; border: 2px solid var(--border); border-radius: 10px; text-align: center; font-size: 1.5rem; font-weight: 700; transition: border-color .2s; font-family:'Poppins',sans-serif; }
.otp-box:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(224,123,28,.12); }

/* ── SECTION TITLE ──────────────────────────────── */
.section-title { font-weight: 600; font-size: .95rem; margin-bottom: 10px; }

/* ── SIDEBAR + DASHBOARD ────────────────────────── */
.sidebar { width: 260px; min-height: 100vh; position: fixed; top: 0; left: 0; z-index: 100; display: flex; flex-direction: column; }
.sidebar .logo-area { padding: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.sidebar nav a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; color: rgba(255,255,255,.75); text-decoration: none; font-size: .92rem; transition: all .2s; }
.sidebar nav a:hover, .sidebar nav a.active { background: rgba(255,255,255,.1); color: white; border-left: 3px solid var(--primary); }
.sidebar nav a i { width: 20px; text-align: center; }

.main-content { margin-left: 260px; min-height: 100vh; background: #f4f6f8; width: 100%}
.top-bar { background: white; padding: 14px 28px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.content-area { padding: 28px; }


/* ── STAT CARDS ─────────────────────────────────── */
.stat-card { background: white; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); border-left: 4px solid; }
.stat-card.green { border-color: var(--green); }
.stat-card.orange { border-color: var(--primary); }
.stat-card.blue { border-color: #1976d2; }
.stat-card.red { border-color: #d32f2f; }
.stat-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.stat-card.green .stat-icon { background: #e8f5e9; color: var(--green); }
.stat-card.orange .stat-icon { background: #fff3e0; color: var(--primary); }
.stat-card.blue .stat-icon { background: #e3f2fd; color: #1976d2; }
.stat-card.red .stat-icon { background: #ffebee; color: #d32f2f; }

/* ── TABLE CARD ─────────────────────────────────── */
.table-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.table-card .table-header { padding: 18px 22px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 1rem; display: flex; align-items: center; }

/* ── MATCH CARD ─────────────────────────────────── */
.match-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.match-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }

/* ── BADGE STATUS ───────────────────────────────── */
.badge-status { font-size: .75rem; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.badge-active { background: #e8f5e9; color: #2e7d32; }
.badge-pending { background: #fff8e1; color: #f57f17; }
.badge-inactive { background: #ffebee; color: #c62828; }

/* ── SUCCESS ANIMATION ──────────────────────────── */
@keyframes popIn {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
    .sidebar { width: 100%; min-height: auto; position: relative; }
    .main-content { margin-left: 0; }
    .hero-title { font-size: 1.6rem; }
    .otp-box { width: 46px; height: 46px; font-size: 1.2rem; }
    .step-line { max-width: 40px; }
}


.mainbanners{
    width: 100%;
     text-align: center;
}
 


.btn-orange {
    background: var(--primary) !important;
    color: white !important;
}








