/* Modern Design Enhancements */
:root {
    --primary: #39a4d4;
    --primary-dark: #2e85ac;
    --primary-gradient: linear-gradient(135deg, #39a4d4 0%, #2e85ac 100%);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --premium-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    --text-main: #2d3436;
}

body {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-main);
}

/* Smooth Scroll Base */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* Glassmorphism Navbar */
.rd-navbar-corporate.rd-navbar-static.rd-navbar-stick-up .rd-navbar-main {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Section Headings */
h3 {
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Hero Section Refinement */
.jumbotron-classic-content h1 {
    font-weight: 800 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.title-decorated::before {
    border-bottom-color: var(--primary) !important;
}

/* Project Cards */
.project-card {
    border-radius: 20px !important;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.2) !important;
}

.status-badge {
    background: var(--primary-gradient) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    border-radius: 12px !important;
}

/* Custom Cursor (Optional but Premium) */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}