/* ============================================
   OnlineDegree247 - Main Stylesheet
   Font: Poppins | Colors: Blue #1a4fba / Orange #f5a623
   ============================================ */

:root {
    --primary: #1a4fba;
    --primary-dark: #1039a0;
    --primary-light: #e8eefb;
    --secondary: #f5a623;
    --secondary-dark: #e09010;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #f8f9fc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(26,79,186,0.10);
    --shadow-hover: 0 12px 40px rgba(26,79,186,0.20);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    background: #fff;
    font-size: 15px;
    line-height: 1.7;
}

/* ---- TOPBAR ---- */
.topbar {
    background: var(--dark);
    color: #ccc;
    font-size: 13px;
    padding: 7px 0;
}
.topbar span { color: #ccc; }
.topbar i { color: var(--secondary); }
.topbar a { color: #ccc; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--secondary); }
.whatsapp-btn {
    background: #25d366;
    color: #fff !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
}

/* ---- NAVBAR ---- */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0;
    z-index: 1000;
    transition: all .3s;
}
.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(26,79,186,0.15);
}
.navbar-brand img { height: 55px; }
.main-navbar .nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    padding: 22px 14px !important;
    transition: color .2s;
    position: relative;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--primary); }
.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}
.btn-apply {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.5); }

/* Mega Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 15px;
    animation: fadeDown .2s ease;
}
.mega-dropdown { min-width: 280px; flex-direction: column; }
.mega-dropdown.show { display: flex !important; }
.dropdown-item-group { margin-bottom: 10px; }
.dropdown-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    padding: 5px 10px;
    display: block;
}
.dropdown-item {
    font-size: 13px;
    border-radius: 8px;
    padding: 7px 12px;
    color: var(--dark);
    font-weight: 500;
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
@keyframes fadeDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #0d2461 0%, #1a4fba 50%, #1e6bb8 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245,166,35,0.2);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,166,35,0.3);} 50%{box-shadow:0 0 0 8px rgba(245,166,35,0);} }
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    font-weight: 300;
}
.hero-search-box {
    background: #fff;
    border-radius: 60px;
    padding: 8px;
    display: flex;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    max-width: 600px;
}
.hero-search-box select,
.hero-search-box input {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    flex: 1;
}
.hero-search-box .divider { width: 1px; background: var(--border); margin: 8px 0; }
.hero-search-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform .2s;
    white-space: nowrap;
}
.hero-search-btn:hover { transform: scale(1.05); }
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.hero-stat-item { color: #fff; }
.hero-stat-item strong { font-size: 1.8rem; font-weight: 800; color: var(--secondary); display: block; }
.hero-stat-item span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* Hero Image Side */
.hero-img-wrap {
    position: relative;
    z-index: 2;
}
.hero-img-main {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.4rem; }
.card-1 { bottom: 30px; left: -30px; animation-delay: 0s; }
.card-2 { top: 30px; right: -20px; animation-delay: 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-pad { padding: 80px 0; }
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-title .accent { color: var(--primary); }
.section-title .accent-orange { color: var(--secondary); }
.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
}
.section-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin: 12px auto 20px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-bar {
    background: var(--light-gray);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.trust-item i { color: var(--primary); font-size: 1.5rem; }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2461 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card-box {
    text-align: center;
    color: #fff;
    padding: 20px;
}
.stat-card-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    display: block;
}
.stat-card-box .stat-suffix { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.stat-card-box .stat-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 5px; font-weight: 500; }

/* ============================================
   COURSE CARDS
   ============================================ */
.course-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.course-card-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}
.course-card-body { padding: 20px; }
.course-level-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.course-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.course-meta { font-size: 12px; color: var(--gray); }
.course-meta span { margin-right: 12px; }
.course-meta i { color: var(--primary); margin-right: 3px; }
.course-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.fee-label { font-size: 11px; color: var(--gray); }
.fee-amount { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.fee-amount small { font-size: 11px; font-weight: 400; color: var(--gray); }
.btn-course { font-size: 13px; padding: 8px 20px; border-radius: 30px; font-weight: 600; }

/* ============================================
   UNIVERSITY CARDS
   ============================================ */
.uni-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 25px 20px;
    text-align: center;
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.uni-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.uni-logo-wrap {
    width: 80px; height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    border: 2px solid var(--border);
}
.uni-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.uni-location { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.naac-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #e09010);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.uni-tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.uni-tag {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 500;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all .3s;
}
.process-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.process-number {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(26,79,186,0.3);
}
.process-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary);
    z-index: 2;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--primary-light);
    position: absolute;
    top: -15px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: #fbbf24; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: #555; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testimonial-info { font-size: 12px; color: var(--gray); }

/* ============================================
   WHY CHOOSE
   ============================================ */
.feature-card {
    padding: 30px 25px;
    border-radius: var(--radius);
    background: #fff;
    border: 1.5px solid var(--border);
    transition: all .3s;
    height: 100%;
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 18px;
}
.icon-blue { background: var(--primary-light); color: var(--primary); }
.icon-orange { background: rgba(245,166,35,0.15); color: var(--secondary-dark); }
.icon-green { background: rgba(34,197,94,0.1); color: #16a34a; }
.icon-purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.feature-text { font-size: 13px; color: var(--gray); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #e09010 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cta-title { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
.cta-subtitle { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 30px; }
.btn-cta-primary {
    background: #fff;
    color: var(--secondary-dark);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); color: var(--primary); }
.btn-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.7);
    transition: all .3s;
    margin-left: 15px;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================
   LEAD FORM SECTION
   ============================================ */
.lead-form-section {
    background: var(--primary-light);
    padding: 80px 0;
}
.lead-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(26,79,186,0.12);
}
.form-control, .form-select {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    padding: 12px 16px;
    transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,79,186,0.1);
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(26,79,186,0.3);
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,79,186,0.4); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all .3s;
    height: 100%;
    background: #fff;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}
.blog-card-body { padding: 20px; }
.blog-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-dark);
    background: rgba(245,166,35,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.blog-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-meta { font-size: 12px; color: var(--gray); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-item.active { color: var(--secondary); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid var(--border);
}
.filter-label { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 8px; display: block; }
.filter-btn {
    padding: 8px 18px;
    border-radius: 25px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    margin: 3px;
    color: var(--dark);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ============================================
   APPLY PAGE
   ============================================ */
.apply-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}
.apply-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    position: relative;
}
.apply-step.active { color: var(--primary); }
.apply-step.completed { color: #16a34a; }
.step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.apply-step.active .step-num { background: var(--primary); color: #fff; }
.apply-step.completed .step-num { background: #16a34a; color: #fff; }
.step-connector { flex: 1; height: 2px; background: var(--border); min-width: 40px; }
.step-connector.done { background: var(--primary); }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-sidebar {
    width: 260px;
    background: var(--dark);
    min-height: 100vh;
    position: fixed;
    left: 0; top: 0;
    z-index: 1000;
    transition: all .3s;
    overflow-y: auto;
}
.admin-sidebar .brand { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar .brand img { height: 40px; }
.admin-nav-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); padding: 20px 20px 8px; font-weight: 700; }
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.07);
    border-left-color: var(--secondary);
}
.admin-nav-link i { font-size: 1rem; width: 20px; color: var(--secondary); }
.admin-main { margin-left: 260px; min-height: 100vh; background: #f0f2f5; }
.admin-topbar {
    background: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-content { padding: 25px; }
.admin-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}
.stat-widget {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.stat-widget-icon {
    width: 55px; height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.stat-widget-value { font-size: 1.8rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-widget-label { font-size: 13px; color: var(--gray); margin-top: 3px; }
.badge-status-new { background: #dbeafe; color: #1e40af; }
.badge-status-contacted { background: #fef3c7; color: #92400e; }
.badge-status-converted { background: #d1fae5; color: #065f46; }
.badge-status-closed { background: #fee2e2; color: #991b1b; }

/* ============================================
   LEAD MODAL
   ============================================ */
.lead-modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; }
.lead-modal-content .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px 25px;
    border: none;
}
.lead-modal-content .modal-title { font-weight: 700; }
.btn-lead-submit {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s;
}
.btn-lead-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.4); }

/* ============================================
   FOOTER
   ============================================ */
.main-footer { background: #0d1b3e; }
.footer-top { padding: 70px 0 50px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: all .2s;
    font-size: 14px;
}
.footer-social a:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.footer-heading { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact-list i { color: var(--secondary); width: 15px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; }
.footer-bottom a:hover { color: var(--secondary); }
.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}
.whatsapp-footer-btn:hover { background: #128c7e; color: #fff; transform: translateY(-2px); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 55px; height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all .3s;
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.4);} 50%{box-shadow:0 0 0 12px rgba(37,211,102,0);} }
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 25px;
    width: 40px; height: 40px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 999;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(26,79,186,0.3);
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .topbar { display: none; }
    .process-arrow { display: none; }
}
@media (max-width: 767px) {
    .hero-section { min-height: auto; padding: 60px 0 40px; }
    .hero-title { font-size: 1.8rem; }
    .hero-search-box { flex-wrap: wrap; border-radius: 12px; }
    .hero-stats { gap: 20px; }
    .cta-title { font-size: 1.8rem; }
    .section-pad { padding: 50px 0; }
    .btn-cta-secondary { margin-left: 0; margin-top: 10px; }
    .apply-steps { flex-wrap: wrap; gap: 10px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-secondary-custom { background: var(--secondary) !important; }
.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff; }
.section-bg-gray { background: var(--light-gray); }
