/**
 * empowering routes Pro - Premium Dark Theme Styles
 * Modern glassmorphism design with animations
 */

/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 80px;
}

/* ===== Base Styles ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted-custom {
    color: var(--text-muted);
}

/* ===== Glassmorphism ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.glass-modal {
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* ===== Buttons ===== */
.btn-glow {
    background: linear-gradient(135deg,#FFD700 0%,#F4C430 50%,#D4AF37 100%);
    border: none;
    color: #000 !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(255,215,0,0.25);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.35);
    color: #000 !important;
}

.btn-glow:hover::before {
    opacity: 1;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
    color: #ffffff !important;
}
.btn-glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid #7c3aed;
    color: #fff !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all .3s ease;
}

.btn-glass:hover {
    background: #7c3aed;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(124,58,237,.5);
}


/*  price tag */
.price-tag{
    display:inline-block;
    background:linear-gradient(135deg,#005fec,#00ff88);
    color:#ffffff;
    font-weight:700;
    padding:6px 14px;
    border-radius:20px;
    font-size:.9rem;
    box-shadow:0 0 12px rgba(255,215,0,.4);
}
/* ===== Navbar ===== */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    color: var(--accent-primary);
    font-size: 1.3rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
    background: var(--glass-bg);
}

.navbar-toggler {
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== Floating Social Icons ===== */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(-5px);
    border-color: transparent;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.3);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.25);
    bottom: -50px;
    left: -100px;
    animation-delay: -2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.2);
    top: 50%;
    left: 50%;
    animation-delay: -4s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-tertiary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInRight 1s ease;
}

.hero-floating-card {
    position: absolute;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -30px;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: -2s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: var(--text-muted);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15), transparent 60%);
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    position: relative;
}

.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 16px auto 0;
    position: relative;
}

/* ===== Sections ===== */
.section-padding {
    padding: 100px 0;
}

.bg-section {
    background: var(--bg-secondary);
}

.section-header {
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== Stats ===== */
.stat-card {
    padding: 40px 30px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Event Cards ===== */
.event-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-category.workshop {
    background: linear-gradient(135deg, #10b981, #06b6d4);
}

.event-category.webinar {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.event-featured {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #fbbf24;
}

.event-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-meta i {
    color: var(--accent-primary);
    margin-right: 4px;
}

.event-card-body h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.event-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 16px;
}

.workshop-details {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
}

/* ===== Gallery ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* ===== CTA Section ===== */
.cta-card {
    padding: 80px 60px;
    background: var(--gradient-glow);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}

/* ===== About Page ===== */
.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.about-feature h5 {
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.team-card {
    padding: 30px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--glass-border);
}

/* ===== Contact Page ===== */
.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-top: 4px;
}

.contact-item h6 {
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    padding: 40px;
}

.glass-alert {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* ===== Footer ===== */
.site-footer {
    position: relative;
    background: var(--bg-secondary);
    padding-top: 60px;
    margin-top: 100px;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand i {
    color: var(--accent-primary);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-primary);
    margin-top: 3px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== Modals ===== */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ===== Empty State ===== */
.empty-state {
    padding: 60px;
}

.empty-state i {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .floating-social {
        display: none;
    }

    .hero-floating-card {
        display: none;
    }

    .cta-card {
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .hero-actions .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .hero-actions .me-3 {
        margin-right: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}









.about-image-wrapper{
    width:100%;
    overflow:hidden;
    border-radius:25px;
}

.about-image-wrapper img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    display:block;
}

.about-text{
    color:#cfcfcf;
    line-height:1.9;
    font-size:17px;
}

.about-feature{
    display:flex;
    gap:18px;
    margin-bottom:25px;
    align-items:flex-start;
}

.about-feature i{
    font-size:28px;
    color:#8b5cf6;
}

.about-feature h5{
    color:white;
    margin-bottom:5px;
}

.about-feature p{
    color:#bdbdbd;
    margin:0;
}

@media(max-width:991px){

    .about-image-wrapper img{
        height:350px;
    }

}



.price-tag{
    display:inline-flex !important;
    align-items:center;
    gap:6px;
    width:auto !important;
    max-width:max-content;
    background:linear-gradient(135deg,#3B82F6,#06B6D4,#22C55E);
    color:#fff;
    font-weight:700;
    padding:8px 16px;
    border-radius:30px;
    font-size:.9rem;
    box-shadow:0 0 18px rgba(34,197,94,.35);
    margin-top:10px;
}







/* login page */
.glass-card .text-muted{
    color: rgba(255,255,255,0.7) !important;
}





/* =========================
   PROFILE DROPDOWN
========================= */

.glass-dropdown{

    margin-top:12px !important;

    padding:0 !important;

    overflow:hidden;

    background:#111118 !important;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:18px;

    min-width:230px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.45);

    animation:dropdownFade .25s ease;
}

/* REMOVE EMPTY TOP SPACE */

.glass-dropdown .dropdown-header{

    padding:16px 20px;

    margin:0;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #d946ef
        );

    color:#fff !important;

    font-size:15px;

    border:none;
}

/* ITEMS */

.glass-dropdown .dropdown-item{

    padding:14px 20px;

    color:#fff;

    transition:0.25s ease;
}

.glass-dropdown .dropdown-item:hover{

    background:rgba(139,92,246,0.15);

    color:#fff;
}

/* DIVIDER */

.glass-dropdown .dropdown-divider{

    margin:0;

    border-color:rgba(255,255,255,0.08);
}

/* ANIMATION */

@keyframes dropdownFade{

    from{

        opacity:0;

        transform:
            translateY(10px)
            scale(.98);
    }

    to{

        opacity:1;

        transform:
            translateY(0)
            scale(1);
    }
}