﻿:root {
    /* Color Palette - Pretty Pink */
    --primary-color: #ec4899;     /* Pink 500 */
    --primary-dark: #db2777;      /* Pink 600 */
    --primary-light: #fce7f3;     /* Pink 100 */
    --secondary-color: #475569;   /* Slate 600 */
    --accent-color: #f472b6;      /* Pink 400 */

    /* Gradients */
    --bg-gradient-start: #fdf2f8; /* Pink 50 */
    --bg-gradient-end: #fce7f3;   /* Pink 100 */
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    color: var(--text-dark);
}

/* Glassmorphism Utilities */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Enhanced Card Styles */
.hover-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-light);
}

.card-feature {
    border-top: 4px solid var(--primary-color);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-box-modern {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, #e9d5ff 100%);
    border-radius: 16px;
    color: var(--primary-color);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hover-card:hover .icon-box-modern {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Button Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Admin Sidebar */
.sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    background: white;
    box-shadow: 1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    margin: 0.2rem 1rem;
    transition: all 0.2s;
}

.sidebar .nav-link:hover {
    background-color: var(--bg-gradient-end);
    color: var(--primary-color);
}

.sidebar .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(5, 150, 105, 0.1);
}

.sidebar .nav-link .bi {
    margin-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    main {
        margin-left: 0 !important;
    }
}

main {
    margin-left: 240px;
    /* Width of sidebar */
    padding: 2rem;
}

/* =========================================
   PREMIUM UTILITIES
   ========================================= */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-gradient-end) 100%);
    border-radius: 50% 30% 70% 40%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

/* =========================================
   NAVBAR POLISH
   ========================================= */

/* Floating Glass Pill Navbar */
.navbar-floating-pill {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 40px -10px rgba(249, 115, 22, 0.15);
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar-floating-pill.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px -10px rgba(249, 115, 22, 0.25);
}

.navbar-brand-pill {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-link-pill {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link-pill:hover,
.nav-link-pill.active {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* Adjust main content padding because navbar is fixed but floats */
body {
    padding-top: 100px;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Timeline Component */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(5, 150, 105, 0));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 2rem;
    /* Adjusted for better alignment */
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transform: translateX(-50%);
    /* Center on the line */
    margin-left: 1px;
    /* Subtle pixel adjustment */
}

.timeline-dot .bi {
    font-size: 1rem;
    color: var(--primary-color);
}

.timeline-content {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.date-badge-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 1rem 0.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0 1rem 1rem 0;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Premium Footer */
.footer-premium {
    background: linear-gradient(to bottom, #064e3b, #022c22);
    /* Dark Emerald to Darker */
    color: #e2e8f0;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-premium .text-muted {
    color: #94a3b8 !important;
}

.footer-premium .text-secondary {
    color: #cbd5e1 !important;
}

.footer-premium h5,
.footer-premium h6 {
    color: white !important;
}

.footer-premium a.text-muted:hover {
    color: var(--primary-light) !important;
    text-decoration: underline !important;
}

.footer-premium .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-premium .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-premium .social-link {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-premium .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* =========================================
   ADMIN PANEL PREMIUM
   ========================================= */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Admin Navbar (Premium Top Bar) */
.navbar-admin {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px -10px rgba(249, 115, 22, 0.1);
    z-index: 1030;
}

.admin-brand {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-link-admin {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.2s ease;
    margin: 0 0.2rem;
}

.nav-link-admin:hover,
.nav-link-admin.active {
    background: var(--primary-light);
    color: var(--primary-color);
}

.main-content-admin {
    padding: 2rem;
    background: var(--bg-gradient-start);
    min-height: calc(100vh - 80px);
    /* Adjust for navbar height */
}

/* Dashboard Widgets */
.card-stat {
    border: none;
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    color: white;
    transition: transform 0.3s ease;
}

.card-stat:hover {
    transform: translateY(-5px);
}

.card-stat::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.stat-icon-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #8b5cf6 0%, #c4b5fd 100%);
}

/* pink */
.bg-gradient-2 {
    background: linear-gradient(135deg, #a855f7 0%, #d8b4fe 100%);
}

/* Pink */
.bg-gradient-3 {
    background: linear-gradient(135deg, #7c3aed 0%, #c4b5fd 100%);
}

/* Deep pink */

/* =========================================
   ADVANCED VISUAL POLISH
   ========================================= */

/* Dynamic Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: 20%;
    right: -50px;
    animation-delay: -5s;
}

.bg-orb-3 {
    width: 200px;
    height: 200px;
    background: #c4b5fd;
    /* Pink 300 */
    top: 40%;
    left: 20%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Transition */
.navbar {
    transition: all 0.3s ease;
}

.navbar-transparent {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
}

/* Button Glow */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    animation: sheath 3s infinite;
}

@keyframes sheath {
    100% {
        transform: rotateZ(60deg) translate(1em, -9em);
    }
}

/* Footer Social Icon Box */
.social-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icon-box:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.social-icon-box i {
    font-size: 1.2rem;
}

/* =========================================
   FOOTER & BIODATA POLISH
   ========================================= */

/* Floating Glass Footer */
.footer-floating {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 3rem 0;
    box-shadow: 0 -10px 40px -10px rgba(249, 115, 22, 0.1);
    position: relative;
    z-index: 100;
}

/* Morphing Blob Profile */
.profile-blob-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-blob {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
    z-index: 2;
    background: white;
    padding: 10px;
}

.blob-glow-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite reverse;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
}

@keyframes blob-morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Text Gradient */
.text-gradient-pink {
    background: linear-gradient(135deg, var(--primary-color), #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* =====
====================================
   pink THEME ENHANCEMENTS
   ========================================= */

/* Enhanced pink Gradients */
.bg-gradient-pink-soft {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
}

.bg-gradient-pink-vibrant {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
}

.bg-gradient-pink-dark {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 50%, #8b5cf6 100%);
}

/* pink Card Variants */
.card-pink-glow {
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.card-pink-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

/* pink Button Variants */
.btn-pink-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-pink-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-pink-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-pink-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* pink Badge */
.badge-pink {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* pink Progress Bar */
.progress-pink {
    height: 8px;
    background: var(--primary-light);
    border-radius: 50px;
    overflow: hidden;
}

.progress-pink .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* pink Alert */
.alert-pink {
    background: var(--primary-light);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-dark);
    border-radius: 15px;
    padding: 1rem 1.5rem;
}

/* pink Form Controls */
.form-control-pink:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-control-pink {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control-pink:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

/* pink Navigation Pills */
.nav-pills-pink .nav-link {
    color: var(--text-muted);
    background: transparent;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-pills-pink .nav-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.nav-pills-pink .nav-link.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* pink Timeline Enhancement */
.timeline-pink::before {
    background: linear-gradient(to bottom, var(--primary-color), rgba(139, 92, 246, 0.3));
}

.timeline-pink .timeline-dot {
    background: white;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.timeline-pink .timeline-content {
    border-left: 4px solid var(--primary-color);
    background: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

/* pink Stats Cards */
.stat-card-pink {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-card-pink:hover {
    transform: translateY(-5px);
}

.stat-card-pink::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

/* pink Loading Spinner */
.spinner-pink {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* pink Floating Action Button */
.fab-pink {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fab-pink:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* pink Tooltip */
.tooltip-pink .tooltip-inner {
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.tooltip-pink .arrow::before {
    border-top-color: var(--primary-color);
}

/* pink Modal */
.modal-pink .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.modal-pink .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.modal-pink .btn-close {
    filter: invert(1);
}

/* pink Accordion */
.accordion-pink .accordion-item {
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px !important;
    margin-bottom: 0.5rem;
}

.accordion-pink .accordion-button {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

.accordion-pink .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-pink .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-pink .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* pink Table */
.table-pink {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.table-pink thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table-pink tbody tr:hover {
    background: var(--primary-light);
}

.table-pink tbody td {
    padding: 1rem;
    border-color: rgba(139, 92, 246, 0.1);
}

/* pink Breadcrumb */
.breadcrumb-pink {
    background: var(--primary-light);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.breadcrumb-pink .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-pink .breadcrumb-item.active {
    color: var(--primary-dark);
    font-weight: 600;
}

/* pink Pagination */
.pagination-pink .page-link {
    color: var(--primary-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    margin: 0 0.25rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.pagination-pink .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-pink .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}/*
 =========================================
   FLOATING ACTION BUTTON & SCROLL TO TOP
   ========================================= */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    color: white;
}

/* =========================================
   ENHANCED ANIMATIONS
   ========================================= */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
}

/* =========================================
   RESPONSIVE ENHANCEMENTS
   ========================================= */

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .profile-blob-container {
        width: 250px;
        height: 250px;
    }
    
    .navbar-floating-pill {
        width: 95%;
        padding: 0.6rem 1.5rem;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-dot {
        left: -2rem;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card-pink {
        padding: 1.5rem;
    }
    
    .icon-box-modern {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .btn-pink-gradient,
    .btn-pink-outline {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .card-pink-glow {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
}

/* =========================================
   DARK MODE SUPPORT (Optional)
   ========================================= */

@media (prefers-color-scheme: dark) {
    :root {
        --bg-gradient-start: #1a1a2e;
        --bg-gradient-end: #16213e;
        --text-dark: #e2e8f0;
        --text-muted: #94a3b8;
        --glass-bg: rgba(0, 0, 0, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
    
    body {
        background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
        color: var(--text-dark);
    }
    
    .card-pink-glow {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(139, 92, 246, 0.3);
    }
    
    .navbar-floating-pill {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .footer-floating {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* =========================================
   PRINT STYLES
   ========================================= */

@media print {
    .navbar-floating-pill,
    .fab-pink,
    .scroll-to-top,
    .bg-orb {
        display: none !important;
    }
    
    .hero-section {
        padding: 1rem 0;
    }
    
    .card-pink-glow {
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .text-gradient-pink {
        color: var(--primary-color) !important;
        -webkit-text-fill-color: var(--primary-color) !important;
    }
}

/* =========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-gradient-pink {
        background: none;
        color: var(--primary-color);
        -webkit-text-fill-color: var(--primary-color);
    }
    
    .card-pink-glow {
        border: 2px solid var(--primary-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .profile-blob,
    .hero-blob,
    .bg-orb {
        animation: none !important;
    }
}/* =
========================================
   FINAL pink THEME POLISH
   ========================================= */

/* Enhanced pink Navbar */
.navbar-floating-pill {
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
}

.navbar-floating-pill.scrolled {
    box-shadow: 0 15px 50px -10px rgba(139, 92, 246, 0.3);
}

/* pink Alert Variants */
.alert-success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
    color: #166534;
}

.alert-info {
    background: var(--primary-light);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-dark);
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
    color: #92400e;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #f87171;
    color: #991b1b;
}

/* Enhanced Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

/* pink List Group */
.list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.list-group-item:hover {
    background-color: var(--primary-light);
}

/* Enhanced Dropdown */
.dropdown-menu {
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
}

/* pink Offcanvas */
.offcanvas-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.offcanvas-title {
    color: white;
}

.btn-close {
    filter: invert(1);
}

/* Enhanced Badge */
.badge {
    font-weight: 600;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.badge.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* pink Toast */
.toast-header {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.toast-body {
    background: white;
}

/* Enhanced Spinner */
.spinner-border-primary {
    color: var(--primary-color);
}

/* pink Progress */
.progress {
    background-color: var(--primary-light);
}

.progress-bar {
    background-color: var(--primary-color);
}

/* Enhanced Nav Tabs */
.nav-tabs .nav-link {
    color: var(--text-muted);
    border: 1px solid transparent;
}

.nav-tabs .nav-link:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: white;
    border-color: var(--primary-color) var(--primary-color) white;
}

/* pink Carousel */
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Enhanced Close Button */
.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

/* pink Range Input */
.form-range::-webkit-slider-thumb {
    background-color: var(--primary-color);
}

.form-range::-moz-range-thumb {
    background-color: var(--primary-color);
    border: none;
}

.form-range::-webkit-slider-track {
    background-color: var(--primary-light);
}

.form-range::-moz-range-track {
    background-color: var(--primary-light);
}

/* Enhanced Text Selection */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

/* pink Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Enhanced Focus States */
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* pink Link Hover */
a:not(.btn):not(.nav-link):not(.navbar-brand) {
    color: var(--primary-color);
    text-decoration: none;
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Enhanced Shadow Utilities */
.shadow-pink {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15) !important;
}

.shadow-pink-lg {
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2) !important;
}

/* pink Border Utilities */
.border-pink {
    border-color: var(--primary-color) !important;
}

.border-pink-light {
    border-color: var(--primary-light) !important;
}

/* Text Color Utilities */
.text-pink {
    color: var(--primary-color) !important;
}

.text-pink-dark {
    color: var(--primary-dark) !important;
}

.text-pink-light {
    color: var(--primary-light) !important;
}

/* Background Color Utilities */
.bg-pink {
    background-color: var(--primary-color) !important;
}

.bg-pink-dark {
    background-color: var(--primary-dark) !important;
}

.bg-pink-light {
    background-color: var(--primary-light) !important;
}

/* Final Touch: Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}/*
 =========================================
   PROFILE IMAGE FIXES
   ========================================= */

/* Ensure profile images load properly */
.profile-blob {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
    z-index: 2;
    background: white;
    padding: 10px;
    max-width: 400px;
    max-height: 400px;
}

/* Fallback for broken images */
img[src=""], img:not([src]) {
    opacity: 0;
}

/* Loading state for images */
.profile-blob {
    transition: opacity 0.3s ease;
}

.profile-blob[src*="ui-avatars.com"] {
    background: var(--primary-color);
}

/* Responsive profile images */
@media (max-width: 768px) {
    .profile-blob-container {
        width: 200px;
        height: 200px;
    }
    
    .profile-blob {
        max-width: 200px;
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    .profile-blob-container {
        width: 150px;
        height: 150px;
    }
    
    .profile-blob {
        max-width: 150px;
        max-height: 150px;
    }
}

/* Image error handling */
.image-error {
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}/* ======
===================================
   ACTIVITY CARDS ENHANCEMENT
   ========================================= */

/* Enhanced Activity Cards */
.activity-card-modern {
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.activity-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.activity-date-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.activity-description {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color);
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    margin-top: auto;
}

.activity-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Fallback Avatar Styles */
.avatar-fallback {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.avatar-fallback.large {
    font-size: 6rem;
}

.avatar-fallback.medium {
    font-size: 4rem;
}

.avatar-fallback.small {
    font-size: 2rem;
}

/* Image Loading States */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Activity Grid */
@media (max-width: 768px) {
    .activity-card-modern {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .activity-title {
        font-size: 1rem;
    }
    
    .activity-date-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Enhanced Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}/* ========
=================================
   ACTIVITY CARD LAYOUT FIXES
   ========================================= */

/* Fix for activity cards layout */
.activity-card-container {
    min-height: 280px;
}

.activity-card-container .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card-container .card-title {
    flex-shrink: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.activity-card-container .activity-description {
    flex-grow: 1;
    overflow: hidden;
}

.activity-card-container .card-footer-custom {
    flex-shrink: 0;
    margin-top: auto;
}

/* Ensure badges don't overlap content */
.badge-container {
    position: relative;
    z-index: 1;
}

.activity-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.activity-header .icon-box-modern {
    flex-shrink: 0;
}

.activity-header .badge {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Better text truncation */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .activity-card-container {
        min-height: auto;
    }
    
    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .activity-header .badge {
        align-self: flex-end;
    }
}

/* Card hover effects enhancement */
.hover-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

/* Ensure proper spacing */
.card-pink-glow .card-body {
    padding: 1.5rem !important;
}

.card-pink-glow h5,
.card-pink-glow h6 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Progress bar enhancement */
.progress-pink {
    background-color: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
}

.progress-pink .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}/
* =========================================
   FINAL LAYOUT FIXES
   ========================================= */

/* Ensure proper card spacing and layout */
.card-pink-glow {
    position: relative;
    overflow: visible;
    min-height: 200px;
}

.card-pink-glow .card-body {
    position: relative;
    z-index: 1;
}

/* Activity card specific fixes */
.activity-card-wrapper {
    margin-bottom: 1.5rem;
}

.activity-card-wrapper .card {
    height: 100%;
    min-height: 280px;
}

.activity-card-wrapper .card-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.activity-card-wrapper .activity-header {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.activity-card-wrapper .activity-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-card-wrapper .activity-footer {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 1rem;
}

/* Badge positioning fix */
.badge-pink {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

/* Title spacing fix */
.text-gradient-pink {
    line-height: 1.3;
    margin-bottom: 1rem;
    word-break: break-word;
}

/* Description box fix */
.bg-gradient-pink-soft {
    position: relative;
    z-index: 1;
    margin: 1rem 0;
}

/* Icon box positioning */
.icon-box-modern {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Responsive card adjustments */
@media (max-width: 768px) {
    .activity-card-wrapper .card {
        min-height: auto;
    }
    
    .activity-card-wrapper .card-body {
        padding: 1rem;
    }
    
    .badge-pink {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Profile image fixes */
.profile-blob-container {
    position: relative;
    z-index: 1;
}

.profile-blob {
    position: relative;
    z-index: 2;
}

.blob-glow-ring {
    position: absolute;
    z-index: 1;
}

/* Avatar initials styling */
.avatar-initials {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    user-select: none;
}

/* Ensure proper stacking context */
.hero-section {
    position: relative;
    z-index: 1;
}

.card-header {
    position: relative;
    z-index: 1;
}

/* Fix any potential overflow issues */
.container-fluid,
.container {
    overflow-x: hidden;
}

.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
