:root {
    --brand-pink: #ec4899;
    --brand-teal: #14b8a6;
    --brand-amber: #f59e0b;
    --bg-main: #060b19;
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.6);
    --bg-card-hover: rgba(30, 41, 59, 0.8);

    /* Primary (Indigo/Blue) */
    --accent-primary: #6366f1;
    --accent-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);

    /* Secondary (Pink/Rose) */
    --accent-secondary: #ec4899;
    --accent-gradient-2: linear-gradient(135deg, #f43f5e, #db2777);

    /* Tertiary (Teal/Cyan) */
    --accent-tertiary: #14b8a6;
    --accent-gradient-3: linear-gradient(135deg, #0ea5e9, #14b8a6);

    /* Quaternary (Amber/Orange) */
    --accent-quaternary: #f59e0b;
    --accent-gradient-4: linear-gradient(135deg, #f59e0b, #ea580c);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Navbar */
.glass-nav {
    background-color: rgba(6, 11, 25, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color) !important;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards Restyling */
.bg-dark {
    background-color: var(--bg-card) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.border-secondary {
    border-color: var(--border-color) !important;
}

.text-secondary {
    color: var(--text-muted) !important;
}

.card {
    border-radius: 1.2rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), var(--glow);
    border-color: rgba(99, 102, 241, 0.3) !important;
}

/* Buttons Update */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    border-radius: 50rem;
    /* pill */
    padding: 0.5rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-success {
    background: var(--accent-gradient-3);
    border: none;
    border-radius: 50rem;
    /* pill */
    padding: 0.5rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-success:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-outline-primary {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50rem;
}

.btn-outline-primary:hover {
    background: var(--accent-gradient);
    border-color: transparent;
}

/* Hero */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1e293b 0%, var(--bg-main) 70%);
    border-bottom: 3px solid var(--accent-primary);
}

/* Timeline Fixes */
.timeline {
    border-left: 2px solid var(--accent-primary);
    padding-left: 20px;
    list-style: none;
    margin-left: 10px;
}

.timeline li {
    margin-bottom: 25px;
    position: relative;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: var(--glow);
}

/* Hover Glow (from Home Index) */
.hover-glow:hover {
    color: var(--accent-primary) !important;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

/* ========================================================================= */
/* GLobal Modern Design System Entities                                      */
/* ========================================================================= */

/* Animated Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: floatOrb 15s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-primary {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.15);
    /* Indigo */
    top: -100px;
    left: -150px;
    animation-delay: 0s;
}

.orb-secondary {
    width: 600px;
    height: 600px;
    background: rgba(236, 72, 153, 0.15);
    /* Pink */
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
    animation-duration: 20s;
}

.orb-tertiary {
    width: 400px;
    height: 400px;
    background: rgba(20, 184, 166, 0.12);
    /* Teal */
    top: 40%;
    right: 30%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}

/* Base Glass Containers */
.glass-container {
    /* background: rgba(15, 23, 42, 0.5); */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    /*box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);*/
}

/* Modern Alerts */
.alert {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
    color: #34d399 !important;
}

.alert-danger {
    background: rgba(220, 38, 38, 0.1) !important;
    border-color: rgba(220, 38, 38, 0.2) !important;
    color: #f87171 !important;
}

/* Global Social Icons Hover */
.social-icon {
    background: transparent;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary) !important;
}

/* ========================================================================= */
/* Site Footer                                                                */
/* ========================================================================= */

.site-footer {
    position: relative;
    background: rgba(6, 11, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Animated Gradient Divider */
.footer-divider {
    height: 3px;
    background: linear-gradient(90deg,
            var(--accent-primary),
            var(--accent-secondary),
            var(--accent-tertiary),
            var(--accent-quaternary),
            var(--accent-primary));
    background-size: 300% 100%;
    animation: footerGradientShift 8s ease infinite;
}

@keyframes footerGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Footer Content */
.footer-content {
    border-bottom: 1px solid var(--border-color);
}

/* Brand */
.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-brand:hover {
    opacity: 0.8;
}

/* Headings */
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a .bi-chevron-right {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 4px;
}

.footer-links a:hover .bi-chevron-right {
    transform: translateX(3px);
}

/* Social Icons */
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.footer-social-icon:hover {
    color: #fff;
    transform: translateY(-4px);
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent-primary);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.footer-social-linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    border-color: #0a66c2;
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.25);
    color: #0a66c2;
}

.footer-social-facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877f2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.25);
    color: #1877f2;
}

.footer-social-instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    border-color: #e4405f;
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.25);
    color: #e4405f;
}

.footer-social-email:hover {
    background: rgba(20, 184, 166, 0.15);
    border-color: var(--accent-tertiary);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
    color: var(--accent-tertiary);
}

/* Bottom Bar */
.footer-bottom {
    padding: 1.25rem 0;
}

.footer-bottom .bi-heart-fill {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}