/* ================================================
   Career Expo 2026 — Main Stylesheet
   Font: Sora (headings) + DM Sans (body)
   Theme: Light — White + Sky Blue + Navy
   ================================================ */

:root {
    --navy: #0d2b5e;
    --blue: #1a4fa0;
    --blue-mid: #2563c0;
    --sky: #e8f1fb;
    --sky-dark: #ccddf5;
    --accent: #f0c040;
    --accent-dark: #d4a800;
    --white: #ffffff;
    --light-bg: #f5f8ff;
    --text-dark: #141e35;
    --text-mid: #3d4d6a;
    --text-light: #6b7a99;
    --border: #d8e4f5;
    --shadow-sm: 0 2px 12px rgba(13,43,94,0.08);
    --shadow-md: 0 8px 30px rgba(13,43,94,0.12);
    --shadow-lg: 0 20px 60px rgba(13,43,94,0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

/* ===== NAVBAR ===== */
#mainNavbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.navbar-scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.brand-icon {
        width: 48%;
     
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-icon-light {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
}

.brand-name {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.brand-accent { color: var(--blue-mid); }
.brand-year { font-size: 0.65rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; letter-spacing: 2px; }

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--text-mid) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.92rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--blue) !important;
    background: var(--sky);
}

.btn-expo {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white !important;
    border: none;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26,79,160,0.3);
}

.btn-expo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,79,160,0.4);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d2b5e 0%, #1a4fa0 40%, #2563c0 70%, #1a3a6b 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(240,192,64,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        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");
}

.hero-floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: white;
    animation: float 8s ease-in-out infinite;
}

.shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; bottom: 50px; left: -80px; animation-delay: 3s; }
.shape-3 { width: 150px; height: 150px; top: 40%; left: 10%; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,192,64,0.15);
    border: 1px solid rgba(240,192,64,0.4);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.hero-title .highlight { 
    color: var(--accent); 
    display: block;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    font-size: 0.92rem;
    font-weight: 500;
}

.hero-meta-item i { color: var(--accent); font-size: 1.1rem; }

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero-primary {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(240,192,64,0.4);
}

.btn-hero-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240,192,64,0.5);
    color: var(--navy);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-3px);
}

/* Hero image section */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-img-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    object-fit: cover;
   
}

.hero-stats-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stats-card.card-left {
    bottom: -20px;
    left: -30px;
}

.hero-stats-card.card-right {
    top: -20px;
    right: -30px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-num { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-light); }

/* ===== SECTION STYLES ===== */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ===== CATEGORY CARDS ===== */
.category-section { background: var(--light-bg); }

.cat-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.cat-card:hover::before { opacity: 1; }

.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover .cat-icon-wrap { background: rgba(255,255,255,0.15); color: white; }
.cat-card:hover .cat-title, .cat-card:hover .cat-desc { color: white; }

.cat-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--sky);
    color: var(--blue);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.cat-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.cat-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    line-height: 1.5;
}

/* Animate on scroll */
.anim-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== ABOUT EXPO ===== */
.about-img-block {
    position: relative;
}

.about-img-main {
   
    border-radius: 24px;
    
    box-shadow: var(--shadow-lg);
}

.about-badge-float {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}

.about-badge-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.about-badge-text { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* ===== WHY ATTEND ===== */
.why-attend { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); position: relative; overflow: hidden; }
.why-attend::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.why-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-6px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.why-title { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }

/* ===== EXHIBITOR SECTION ===== */
.exhibitor-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    transition: var(--transition);
}

.exhibitor-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
    transform: translateY(-4px);
}

.exhibitor-num {
    width: 40px;
    height: 40px;
    background: var(--sky);
    color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 100px 0 70px; }
.about-hero h1 { color: white; }
.about-hero p { color: rgba(255,255,255,0.7); }

.mission-vision-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue), var(--accent));
}

.mission-vision-card:hover {
    border-color: var(--blue-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: var(--sky);
    color: var(--blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ===== COURSES PAGE ===== */
.courses-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 100px 0 70px; }
.courses-hero h1, .courses-hero p { color: white; }

.stream-section { border-bottom: 1px solid var(--border); padding-bottom: 60px; margin-bottom: 60px; }
.stream-section:last-child { border-bottom: none; }

.stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.stream-science { background: #e8f5e9; color: #2e7d32; }
.stream-commerce { background: #fff3e0; color: #e65100; }
.stream-arts { background: #f3e5f5; color: #7b1fa2; }

.course-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);
    height: 100%;
    cursor: default;
}

.course-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
    transform: translateY(-4px);
}

.course-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

/* ===== REGISTER PAGE ===== */
.register-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 80px 0 50px; }
.register-hero h1 { color: white; }
.register-hero p { color: rgba(255,255,255,0.7); }

.register-form-wrap {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 48px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--light-bg);
}

.form-control:focus, .form-select:focus {
    border-color: var(--blue-mid);
    background: white;
    box-shadow: 0 0 0 3px rgba(37,99,192,0.12);
    color: var(--text-dark);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(26,79,160,0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26,79,160,0.4);
    color: white;
}

.register-info-card {
    background: var(--sky);
    border: 1px solid var(--sky-dark);
    border-radius: var(--radius);
    padding: 28px;
}

/* ===== ADMIN PAGE ===== */
.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--navy) 0%, var(--blue) 100%);
    width: 260px;
    position: fixed;
    top: 0; left: 0;
    padding: 0;
    z-index: 100;
}

.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    background: #f0f4ff;
}

.admin-logo { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: var(--transition);
}
.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white;
    border-right: 3px solid var(--accent);
}

.admin-top-bar {
    background: white;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-widget {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.stat-widget-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.admin-table-wrap {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.admin-table-wrap .table {
    margin: 0;
    font-size: 0.9rem;
}

.admin-table-wrap .table thead th {
    background: var(--sky);
    color: var(--navy);
    font-weight: 700;
    padding: 14px 18px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.admin-table-wrap .table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table-wrap .table tbody tr:hover { background: var(--light-bg); }
.admin-table-wrap .table tbody tr:last-child td { border-bottom: none; }

.badge-interest {
    background: var(--sky);
    color: var(--blue);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* Admin login page */
.admin-login-wrap {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer-main { background: transparent; margin-top: 0; }

.footer-wave svg { display: block; width: 100%; }
.footer-wave { line-height: 0; }

.footer-body { background: #1a3a6b; padding: 60px 0 0;    margin-top: -1px; }

.footer-heading {
    font-family: 'Sora', sans-serif;
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-info-list { list-style: none; padding: 0; margin: 0; }
.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}
.footer-info-list li i { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.social-btn {
        width: 38px;
    height: 38px;
    background: rgb(232 241 251);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(27 127 195);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}
.social-btn:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); transform: translateY(-3px); }

.footer-divider { border-color: rgba(255,255,255,0.1); }

/* ===== ALERTS ===== */
.alert-success-custom {
    background: #e8f5e9;
    border: 1.5px solid #81c784;
    border-radius: 12px;
    color: #1b5e20;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-error-custom {
    background: #fdecea;
    border: 1.5px solid #e57373;
    border-radius: 12px;
    color: #b71c1c;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* ===== UTILITIES ===== */
.bg-light-blue { background: var(--light-bg); }
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }
.text-accent { color: var(--accent); }

.divider-gold {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 16px 0 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .admin-sidebar { width: 100%; min-height: auto; position: static; }
    .admin-content { margin-left: 0; }
    .hero-stats-card { position: static; margin-top: 12px; }
    .about-badge-float { position: static; margin-top: 16px; display: inline-block; }
    .register-form-wrap { padding: 28px 20px; margin-top: 0; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
}


/*---- Visiter Section ----*/


/* Card Style */
.visitor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 100%;
}

.visitor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.visitor-card img {
  max-width: 100%;
   
}

.visitor-card .content {
  padding: 15px;
  text-align: center;
  padding-top: 44px;
}

.visitor-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a2b49;
  margin-bottom: 8px;
}

.visitor-card p {
  font-size: 14px;
  color: #6c757d;
}

.image-wrapper {
  position: relative;
}

.icon-box {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #f1f1f1;
}

.icon-box i {
  font-size: 22px;
  color: #3b6ef5;
}
.orga-block {
	width:100%;
	display:inline-block;
	text-align:center;
	margin-top:28px;
}

.orga-block h3 {
	    text-align: center;
    color: #1a55a1;
    font-size: 18px;
    margin-bottom: 12px;
}
.orga-block img {
	display: inline-block;
    background: #fff;
    padding: 8px;
    width: 50%;
    border-radius: 8px;
}

small.exhibitor-inner {
	    min-height: 72px;
    display: block;
}
img.media-partner {
	width:40%;
}