
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(91, 126, 255, 0.4) 0%, rgba(255, 122, 89, 0.22) 40%, rgba(18, 203, 255, 0.15) 65%, transparent 100%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: normal;
    box-shadow: 0 0 22px rgba(91, 126, 255, 0.24), 0 0 70px rgba(18, 203, 255, 0.2);
    will-change: transform;
}
html.dark-mode #cursor-glow {
    background: radial-gradient(circle, rgba(120, 180, 255, 0.4) 0%, rgba(164, 99, 255, 0.22) 45%, rgba(18, 203, 255, 0.16) 70%, transparent 100%);
    mix-blend-mode: screen;
    box-shadow: 0 0 26px rgba(120, 180, 255, 0.35), 0 0 90px rgba(164, 99, 255, 0.22);
}

img {
    max-width: 100%;
    height: auto;
}
/* ==========================================
   IMPORTS & GLOBAL STYLES
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* Material Icons Styling */
.material-icons,
.material-icons-outlined {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Light Mode */
    --primary-blue: #5B7EFF;
    --secondary-blue: #6B9EFF;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --green-accent: #04B369;
    --light-bg: #F3F4F6;
    --border-color: #E5E7EB;
    --white: #FFFFFF;
    
    /* Dark Mode Colors */
    --dark-bg: #0F172A;
    --dark-surface: #1E293B;
    --dark-border: #334155;
    --dark-text-primary: #F1F5F9;
    --dark-text-secondary: #CBD5E1;
}

/* Dark Mode */
html.dark-mode {
    --dark-text: var(--dark-text-primary);
    --light-text: var(--dark-text-secondary);
    --white: var(--dark-surface);
    --light-bg: var(--dark-bg);
    --border-color: var(--dark-border);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

body.loaded {
    opacity: 1;
}

html.dark-mode body {
    color: var(--dark-text-primary);
    background-color: var(--dark-bg);
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */

.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

html.dark-mode .navbar.is-scrolled {
    background-color: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid var(--dark-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-text);
}

.logo-image {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Button */
.btn-theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-theme-toggle:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
}

.btn-theme-toggle .material-icons,
.btn-theme-toggle .material-icons-outlined {
    font-size: 22px;
}

.btn-download-cv {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download-cv:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 120px 20px 40px 40px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--white) 0%, #F8F9FF 65%, #F0F7FF 100%);
    position: relative;
    transition: background 0.3s ease;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(91, 126, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 126, 255, 0.08) 1px, transparent 1px);
    background-size: clamp(30px, 5vw, 60px) clamp(30px, 5vw, 60px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

html.dark-mode .hero {
    background: linear-gradient(to bottom, var(--dark-surface) 0%, #1a2644 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Freelance Badge */
.freelance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F0FEF5;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    width: fit-content;
    transition: all 0.3s ease;
}

html.dark-mode .freelance-badge {
    background-color: rgba(4, 179, 105, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green-accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.badge-dot2 {
    width: 8px;
    height: 8px;
    background-color: orangered;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--green-accent);
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-headline {
    font-size: clamp(28px, 8vw, 56px);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: clamp(16px, 4vw, 24px);
    letter-spacing: -0.8px;
    background: linear-gradient(120deg, var(--dark-text) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: clamp(24px, 6vw, 32px);
    max-width: 480px;
    transition: color 0.3s ease;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: clamp(12px, 2vw, 16px);
    margin-bottom: clamp(32px, 8vw, 48px);
    flex-wrap: wrap;
}

.btn {
    padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 32px);
    border-radius: 8px;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(91, 126, 255, 0.35);
}

.btn-primary:hover {
    background-color: #4463E0;
    box-shadow: 0 10px 32px rgba(91, 126, 255, 0.45);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: var(--light-bg);
    box-shadow: 0 4px 12px rgba(91, 126, 255, 0.15);
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: clamp(24px, 5vw, 40px);
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    font-size: 20px;
    color: var(--primary-blue);
}

.metric-text {
    font-size: clamp(12px, 1.5vw, 14px);
    color: var(--dark-text);
    font-weight: 500;
}

/* Hero Visual */
.hero-image {
    display: flex;
    border-radius: 200px;
    justify-content: center;
    align-items: center;
    position: relative;
    height: clamp(280px, 40vw, 420px);
    min-height: 280px;
}

.hero-illustration {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(91, 126, 255, 0.15);
    transition: all 0.3s ease;
    will-change: transform;
    cursor: default;
}

html.dark-mode .hero-image-placeholder {
    background: linear-gradient(135deg, rgba(91, 126, 255, 0.1) 0%, rgba(107, 158, 255, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(91, 126, 255, 0.15);
}

.chart-container {
    display: flex;
    gap: clamp(12px, 3vw, 20px);
    align-items: flex-end;
    height: clamp(100px, 30vh, 200px);
    width: 100%;
    justify-content: center;
}

.chart-bar {
    background: linear-gradient(to top, var(--primary-blue), var(--secondary-blue));
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    min-width: 24px;
    flex: 0 1 clamp(24px, 8vw, 60px);
}

.chart-bar:nth-child(1) {
    height: 60%;
}

.chart-bar:nth-child(2) {
    height: 85%;
}

.chart-bar:nth-child(3) {
    height: 70%;
}

/* Circular Element/Button in Hero Visual */
.hero-visual::after {
    content: '';
    position: absolute;
    width: clamp(60px, 12vw, 120px);
    height: clamp(60px, 12vw, 120px);
    background: var(--primary-blue);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    opacity: 0.9;
    box-shadow: 0 8px 32px rgba(91, 126, 255, 0.3);
    transition: all 0.3s ease;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 5vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.scroll-mouse {
  width: 30px;        /* adjust to your preference */
  height: auto;
  animation: bounce 1.2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Large desktops (1201px+) - No changes needed */

/* Tablets & Small Laptops (769px - 1200px) */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 30px;
        margin: 0 30px;
    }

    .hero-container {
        gap: 40px;
    }
}

/* Tablets (601px - 768px) */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
    }

    .nav-item {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .btn-download-cv {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        height: 250px;
    }

    .hero-visual::after {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -20px;
    }

    .chart-container {
        gap: 12px;
    }

    .chart-bar {
        min-width: 20px;
    }
}

/* Mobile Phones (481px - 600px) */
@media (max-width: 600px) {
    .navbar-container {
        padding: 0 16px;
    }

    .navbar-logo {
        font-size: 16px;
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .btn-download-cv {
        padding: 8px 16px;
        font-size: 11px;
    }

    .btn-theme-toggle {
        width: 36px;
        height: 36px;
    }

    .btn-theme-toggle .material-icons,
    .btn-theme-toggle .material-icons-outlined {
        font-size: 18px;
    }

    .hero {
        min-height: auto;
        padding: 96px 16px 40px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-metrics {
        gap: 16px;
        flex-direction: column;
    }

    .metric {
        gap: 8px;
    }

    .metric-text {
        font-size: 11px;
    }

    .hero-visual {
        height: 200px;
        margin-bottom: 40px;
    }

    .hero-image-placeholder {
        padding: 16px;
    }

    .hero-visual::after {
        width: 60px;
        height: 60px;
        bottom: -20px;
        right: -20px;
    }

    .chart-container {
        gap: 8px;
        height: 120px;
    }

    .chart-bar {
        min-width: 16px;
    }
}

/* Small Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0 12px;
    }

    .navbar-logo {
        font-size: 14px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .btn-download-cv {
        padding: 6px 12px;
        font-size: 10px;
    }

    .hero {
        padding: 90px 12px 30px;
    }

    .hero-headline {
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .freelance-badge {
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .badge-text {
        font-size: 11px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 6px;
    }

    .hero-metrics {
        gap: 12px;
    }

    .metric-text {
        font-size: 10px;
    }

    .hero-visual {
        height: 160px;
        margin-bottom: 30px;
    }

    .hero-image-placeholder {
        padding: 12px;
        border-radius: 12px;
    }

    .hero-visual::after {
        width: 50px;
        height: 50px;
        bottom: -15px;
        right: -15px;
    }

    .chart-container {
        gap: 6px;
        height: 100px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

html.dark-mode .about {
    background-color: var(--dark-surface);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(50px, 8vw, 100px);
    align-items: flex-start;
}

/* Section Badge */
.section-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
    display: inline-block;
}

.badge-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

/* About Headline */
.about-headline {
    font-size: clamp(28px, 6vw, 48px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: clamp(24px, 5vw, 36px);
    letter-spacing: -0.5px;
}

/* About Text */
.about-text {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: clamp(32px, 6vw, 48px);
}

.about-text p {
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--light-text);
    line-height: 1.8;
    font-weight: 400;
}

/* My Approach Section */
.my-approach {
    margin: auto;
}

.approach-title {
    font-size: clamp(18px, 4vw, 24px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: clamp(24px, 4vw, 32px);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: clamp(20px, 3vw, 28px);
    margin-right: auto;
    max-width: 100%;
}

.approach-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(240, 247, 255, 0.5) 100%);
    padding: clamp(18px, 3vw, 28px);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(91, 126, 255, 0.2);
    box-shadow: 0 2px 8px rgba(91, 126, 255, 0.06);
}

html.dark-mode .approach-card {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-color: rgba(91, 126, 255, 0.15);
}

.approach-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 28px rgba(91, 126, 255, 0.2);
    transform: translateY(-4px);
}

.approach-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(91, 126, 255, 0.3);
}

.approach-card:hover .approach-icon {
    transform: translateY(-4px);
}

.approach-icon .material-icons-outlined {
    font-size: 24px;
}

.approach-card h4 {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.approach-card p {
    font-size: clamp(12px, 1.3vw, 14px);
    color: var(--light-text);
    line-height: 1.6;
}

/* About Image */
.about-image {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 32px);
    margin-top: clamp(0px, 4vw, 40px);
}

.about-image-placeholder {
    width: 100%;
    height: clamp(300px, 50vh, 450px);
    background: linear-gradient(135deg, #E8F0FF 0%, #F0F7FF 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 126, 255, 0.2);
}

html.dark-mode .about-image-placeholder {
    background: linear-gradient(135deg, rgba(91, 126, 255, 0.1) 0%, rgba(107, 158, 255, 0.05) 100%);
    box-shadow: 0 12px 40px rgba(91, 126, 255, 0.15);
}

.about-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tags */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding: 7px 14px;
    border-radius: 22px;
    font-size: clamp(11px, 1.2vw, 12px);
    font-weight: 500;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 6px rgba(91, 126, 255, 0.08);
}

html.dark-mode .tag {
    background-color: rgba(91, 126, 255, 0.1);
    border-color: var(--primary-blue);
    box-shadow: 0 2px 6px rgba(91, 126, 255, 0.15);
}

.tag:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ==========================================
   ABOUT SECTION RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .about-image-placeholder {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 40px 16px;
    }

    .about-headline {
        font-size: 24px;
    }

    .about-text p {
        font-size: 13px;
    }

    .approach-title {
        font-size: 18px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .approach-card {
        padding: 20px;
    }

    .about-image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 12px;
    }

    .section-badge {
        margin-bottom: 16px;
    }

    .badge-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .about-headline {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .about-text {
        gap: 12px;
        margin-bottom: 24px;
    }

    .about-text p {
        font-size: 12px;
    }

    .approach-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .approach-card {
        padding: 16px;
    }

    .approach-card h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .approach-card p {
        font-size: 12px;
    }

    .approach-icon {
        width: 40px;
        height: 40px;
    }

    .approach-icon .material-icons-outlined {
        font-size: 20px;
    }

    .about-image-placeholder {
        height: 200px;
    }

    .about-tags {
        gap: 10px;
    }

    .tag {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background: linear-gradient(135deg, var(--light-bg) 0%, #F0F7FF 100%);
    transition: background 0.3s ease;
}

html.dark-mode .services {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1d2d 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.services-header .section-badge {
    justify-content: center;
    margin-bottom: 24px;
}

.services-headline {
    font-size: clamp(32px, 7vw, 52px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: clamp(16px, 3vw, 24px);
    letter-spacing: -0.8px;
}

.services-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3.5vw, 36px);
}

.service-card {
    background-color: var(--white);
    padding: clamp(32px, 5vw, 44px);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

html.dark-mode .service-card {
    background-color: var(--dark-surface);
    border-color: var(--dark-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.18);
    background-color: var(--white);
    transform: translateY(-6px);
}

html.dark-mode .service-card:hover {
    background-color: var(--dark-surface);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 10px 28px rgba(91, 126, 255, 0.35);
    flex-shrink: 0;
}

.service-icon .material-icons-outlined {
    font-size: 32px;
}

.service-card:hover .service-icon {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 14px 36px rgba(91, 126, 255, 0.45);
}

.service-icon.ui-design {
    background: linear-gradient(135deg, #5B7EFF, #6B9EFF);
}

.service-icon.product-design {
    background: linear-gradient(135deg, #A855F7, #D946EF);
}

.service-icon.dashboard-design {
    background: linear-gradient(135deg, #5B7EFF, #6B9EFF);
}

.service-icon.tech-support {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.service-icon.it-support {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
}

.service-icon.customer-service {
    background: linear-gradient(135deg, #F97316, #FB923C);
}

.service-card h3 {
    font-size: clamp(16px, 1.8vw, 20px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.3px;
    margin: 4px 0 0 0;
}

.service-card p {
    font-size: clamp(13px, 1.2vw, 14px);
    color: var(--light-text);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: clamp(12px, 1.15vw, 13px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 10px;
    color: var(--secondary-blue);
}

.learn-more .material-icons-outlined {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.learn-more:hover .material-icons-outlined {
    transform: translateX(2px);
}

/* ==========================================
   SERVICES SECTION RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 3vw, 28px);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 20px;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-headline {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon .material-icons-outlined {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 40px 16px;
    }

    .services-header {
        margin-bottom: 28px;
    }

    .services-headline {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .services-subtitle {
        font-size: 13px;
    }

    .service-card {
        padding: 24px;
        gap: 12px;
        border-radius: 16px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon .material-icons-outlined {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 30px 12px;
    }

    .services-header {
        margin-bottom: 24px;
    }

    .services-headline {
        font-size: 20px;
    }

    .services-subtitle {
        font-size: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 12px;
    }
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background: linear-gradient(135deg, #0F172A 0%, #1a2d4d 50%, #0F172A 100%);
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(91, 126, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(91, 126, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vw, 70px);
}

.process-headline {
    font-size: clamp(32px, 7vw, 52px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white !important;
    margin-bottom: clamp(16px, 3vw, 24px);
    letter-spacing: -0.8px;
}

.non-dark {
    color: var(--white) !important; /* fixed color, overrides dark mode */
}

.process-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #94A3B8;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3.5vw, 36px);
}

.process-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(91, 126, 255, 0.3);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 40px);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.process-card:hover {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 0 12px 48px rgba(91, 126, 255, 0.2);
    transform: translateY(-6px);
}

.process-step {
    font-size: clamp(36px, 8vw, 56px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: rgba(91, 126, 255, 0.4);
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 2px 8px rgba(91, 126, 255, 0.1);
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 126, 255, 0.2) 0%, rgba(91, 126, 255, 0.1) 100%);
    border: 1.5px solid var(--primary-blue);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.process-icon .material-icons-outlined {
    font-size: 24px;
    color: var(--primary-blue);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, rgba(91, 126, 255, 0.3) 0%, rgba(91, 126, 255, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(91, 126, 255, 0.25);
    transform: translateY(-4px);
}

.process-card h3 {
    font-size: clamp(16px, 1.8vw, 20px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white !important;
    margin: 0;
}

.process-card p {
    font-size: clamp(13px, 1.2vw, 14px);
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.process-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1.1vw, 13px);
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 8px;
}

.process-duration .material-icons-outlined {
    font-size: 16px;
}

/* ==========================================
   PROCESS SECTION RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 3vw, 28px);
    }
}

@media (max-width: 768px) {
    .process {
        padding: 50px 20px;
    }

    .process-header {
        margin-bottom: 36px;
    }

    .process-headline {
        font-size: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 28px;
    }

    .process-step {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .process {
        padding: 40px 16px;
    }

    .process-header {
        margin-bottom: 28px;
    }

    .process-headline {
        font-size: 24px;
    }

    .process-subtitle {
        font-size: 13px;
    }

    .process-card {
        padding: 24px;
        gap: 12px;
    }

    .process-step {
        font-size: 28px;
    }

    .process-icon {
        width: 48px;
        height: 48px;
    }

    .process-icon .material-icons-outlined {
        font-size: 20px;
    }
}

/* ==========================================
   FEATURED PROJECTS SECTION
   ========================================== */

.projects {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

html.dark-mode .projects {
    background-color: var(--dark-surface);
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vw, 70px);
}

.projects-headline {
    font-size: clamp(32px, 7vw, 52px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: clamp(16px, 3vw, 24px);
    letter-spacing: -0.8px;
}

.projects-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--light-text);
    line-height: 1.6;
}

/* Featured Project */
.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 60px);
    align-items: center;
    margin-bottom: clamp(50px, 10vw, 80px);
    padding: clamp(32px, 5vw, 48px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    background: linear-gradient(135deg, transparent 0%, rgba(91, 126, 255, 0.02) 100%);
    transition: all 0.3s ease;
}

html.dark-mode .featured-project {
    background: linear-gradient(135deg, transparent 0%, rgba(91, 126, 255, 0.05) 100%);
    border-color: var(--dark-border);
}

.featured-project:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.12);
}

.project-badge {
    display: inline-block;
    background-color: #F0FEF5;
    color: var(--green-accent);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.project-badge2 {
    display: inline-block;
    background-color: rgb(255, 210, 210);
    color: orangered;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: capitalize;
}

html.dark-mode .project-badge {
    background-color: rgba(4, 179, 105, 0.15);
}

html.dark-mode .project-badge2 {
    background-color: rgba(4, 179, 105, 0.15);
}

.featured-content h3 {
    font-size: clamp(24px, 5vw, 40px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.featured-content > p:first-of-type {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--light-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.project-description {
    font-size: clamp(13px, 1.3vw, 15px);
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 24px !important;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.project-tag {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}

html.dark-mode .project-tag {
    background-color: rgba(91, 126, 255, 0.1);
}

.project-tag:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.featured-image {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(91, 126, 255, 0.15);
    transition: all 0.3s ease;
}

.featured-project:hover .featured-image {
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.2);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 40px);
}

.project-card {
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

html.dark-mode .project-card {
    background-color: var(--dark-surface);
    border-color: var(--dark-border);
}

.project-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.15);
    transform: translateY(-6px);
}

.project-image {
    width: 100%;
    height: clamp(180px, 30vw, 280px);
    overflow: hidden;
    background-color: var(--light-bg);
}

html.dark-mode .project-image {
    background-color: rgba(91, 126, 255, 0.05);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: clamp(20px, 4vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.project-info h4 {
    font-size: clamp(16px, 1.8vw, 20px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.project-info p {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.project-tags-small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.project-tags-small span {
    background-color: var(--light-bg);
    color: var(--light-text);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

html.dark-mode .project-tags-small span {
    background-color: rgba(91, 126, 255, 0.1);
    color: var(--light-text);
}

.project-card:hover .project-tags-small span {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ==========================================
   PROJECTS SECTION RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .featured-project {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 50px 20px;
    }

    .projects-header {
        margin-bottom: 40px;
    }

    .projects-headline {
        font-size: 32px;
    }

    .featured-project {
        padding: 28px;
        margin-bottom: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .projects {
        padding: 40px 16px;
    }

    .projects-header {
        margin-bottom: 32px;
    }

    .projects-headline {
        font-size: 24px;
    }

    .featured-project {
        padding: 20px;
        margin-bottom: 32px;
    }

    .featured-content h3 {
        font-size: 22px;
    }

    .project-card {
        border-radius: 14px;
    }

    .project-image {
        height: 180px;
    }

    .project-info {
        padding: 16px;
    }
}

/* ==========================================
   SKILLS & TOOLS SECTION
   ========================================== */

.skills {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F7FF 100%);
    transition: background 0.3s ease;
}

html.dark-mode .skills {
    background: linear-gradient(135deg, #0F172A 0%, #1a2d4d 100%);
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
}

.skills-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vw, 70px);
}

.skills-headline {
    font-size: clamp(32px, 7vw, 52px);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: darkblue;
    margin-bottom: clamp(16px, 3vw, 24px);
    letter-spacing: -0.8px;
}

html.dark-mode .skills-headline {
    color: white;
}

.skills-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--light-text);
    line-height: 1.6;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: clamp(40px, 7vw, 56px);
    max-width: 950px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
}

.skill-item:hover {
    transform: translateY(-12px);
}

.skill-icon {
    width: clamp(90px, 14vw, 130px);
    height: clamp(90px, 14vw, 130px);
    border-radius: 50%;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(91, 126, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(91, 126, 255, 0.1);
}

html.dark-mode .skill-icon {
    background: linear-gradient(135deg, var(--dark-surface) 0%, #1f2d3d 100%);
    box-shadow: 0 8px 32px rgba(91, 126, 255, 0.15);
    border: 2px solid rgba(91, 126, 255, 0.2);
}

.skill-item:hover .skill-icon {
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.25);
    background: linear-gradient(135deg, #E8F0FF 0%, #D6E4FF 100%);
    transform: scale(1.08);
    border-color: var(--primary-blue);
}

html.dark-mode .skill-item:hover .skill-icon {
    background: linear-gradient(135deg, rgba(91, 126, 255, 0.15) 0%, rgba(91, 126, 255, 0.08) 100%);
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.35);
    border-color: var(--primary-blue);
}

.skill-icon .material-icons-outlined {
    font-size: clamp(36px, 7vw, 52px);
    color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-item:hover .skill-icon .material-icons-outlined {
    transform: scale(1.15) rotateZ(5deg);
    color: var(--primary-blue);
}

.skill-item p {
    font-size: clamp(13px, 1.4vw, 16px);
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

html.dark-mode .skill-item p {
    color: var(--dark-text-primary);
}

.skill-item:hover p {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ==========================================
   SKILLS SECTION RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: clamp(32px, 6vw, 48px);
    }
}

@media (max-width: 768px) {
    .skills {
        padding: 50px 20px;
    }

    .skills-header {
        margin-bottom: 40px;
    }

    .skills-headline {
        font-size: 32px;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
        gap: 28px;
    }

    .skill-icon {
        width: 85px;
        height: 85px;
    }

    .skill-icon .material-icons-outlined {
        font-size: 36px;
    }

    .skill-item p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .skills {
        padding: 40px 16px;
    }

    .skills-header {
        margin-bottom: 32px;
    }

    .skills-headline {
        font-size: 24px;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        gap: 20px;
    }

    .skill-icon {
        width: 75px;
        height: 75px;
    }

    .skill-icon .material-icons-outlined {
        font-size: 32px;
    }

    .skill-item p {
        font-size: 12px;
        font-weight: 600;
    }

    .skill-item {
        gap: 12px;
    }
}

/* Contact Section */

.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    transition: background 0.3s ease;
}
html.dark-mode .contact {
    background: linear-gradient(135deg, #0f172a 0%, #1a2d4d 100%);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-headline {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 16px;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}
html.dark-mode .contact-headline {
    color: var(--dark-text-primary);
}

.contact-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--light-text);
    max-width: 500px;
    margin: 0 auto;
}
html.dark-mode .contact-subtitle {
    color: var(--dark-text-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
html.dark-mode .contact-form {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form:hover {
    box-shadow: 0 16px 48px rgba(91, 126, 255, 0.15);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
    display: block;
}
html.dark-mode .form-group label {
    color: var(--dark-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-text);
}
html.dark-mode .form-group input,
html.dark-mode .form-group select,
html.dark-mode .form-group textarea {
    background: var(--dark-bg);
    color: var(--dark-text-primary);
    border: 2px solid var(--dark-border);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(91, 126, 255, 0.1);
}
html.dark-mode .form-group input:focus,
html.dark-mode .form-group select:focus,
html.dark-mode .form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(91, 126, 255, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B7EFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    padding-right: 40px;
}
html.dark-mode .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393c5fd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.char-count {
    font-size: 12px;
    color: var(--light-text);
    text-align: right;
    margin-top: 4px;
}
html.dark-mode .char-count {
    color: var(--dark-text-secondary);
}

.btn-submit {
    margin-top: 12px;
    padding: 14px 32px !important;
    font-size: 16px !important;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-status-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 200;
}

.form-status-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.form-status-dialog {
    background: var(--white);
    color: var(--dark-text);
    padding: 28px 32px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    width: min(90vw, 420px);
    text-align: center;
    transform: translateY(12px);
    transition: transform 0.25s ease;
    border: 1px solid var(--border-color);
}

.form-status-modal.is-visible .form-status-dialog {
    transform: translateY(0);
}

.form-status-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 30px;
}

.form-status-modal.is-success .form-status-icon {
    background: rgba(4, 179, 105, 0.15);
    color: var(--green-accent);
}

.form-status-modal.is-error .form-status-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.form-status-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.form-status-message {
    font-size: 14px;
    color: var(--light-text);
}

html.dark-mode .form-status-dialog {
    background: var(--dark-surface);
    color: var(--dark-text-primary);
    border: 1px solid var(--dark-border);
}

html.dark-mode .form-status-message {
    color: var(--dark-text-secondary);
}

/* Contact Sidebar */

.contact-sidebar {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
html.dark-mode .contact-sidebar {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}
html.dark-mode .sidebar-title {
    color: var(--dark-text-primary);
}

.contact-info {
    margin-bottom: 36px;
}

.contact-email {
    font-size: 15px;
    color: var(--light-text);
    mb-12px;
    margin-bottom: 12px;
    word-break: break-all;
}
html.dark-mode .contact-email {
    color: var(--dark-text-secondary);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green-accent);
    background-color: rgba(4, 179, 105, 0.1);
    padding: 8px 12px;
    border-radius: 16px;
    margin-top: 12px;
}
html.dark-mode .availability-badge {
    background-color: rgba(4, 179, 105, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green-accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.connect-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text);
    margin-bottom: 16px;
}
html.dark-mode .connect-title {
    color: var(--dark-text-secondary);
}

.social-links {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    font-size: 24px;
}
html.dark-mode .social-links a {
    background: rgba(91, 126, 255, 0.1);
    border: 2px solid var(--dark-border);
    color: var(--dark-text-primary);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px) scale(1.12);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(91, 126, 255, 0.3);
}

/* Contact Responsive */

@media (max-width: 1000px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .contact {
        padding: 60px 16px;
    }
    .contact-form {
        padding: 32px;
    }
    .contact-sidebar {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 40px 16px;
    }
    .contact-header {
        margin-bottom: 32px;
    }
    .contact-headline {
        font-size: 28px;
    }
    .contact-subtitle {
        font-size: 15px;
    }
    .contact-form {
        padding: 24px;
        gap: 18px;
    }
    .contact-sidebar {
        padding: 24px;
    }
    .form-group label {
        font-size: 13px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 11px 14px;
    }
    .form-group textarea {
        min-height: 120px;
    }
    .btn-submit {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
    .sidebar-title {
        font-size: 16px;
    }
}

.btn.btn-primary {
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(91, 126, 255, 0.35);
}
html.dark-mode .btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(91, 126, 255, 0.45);
}

/* Contact Social */

.contact-social {
    margin-top: 48px;
    text-align: center;
}

.contact-social h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #111827;
}
html.dark-mode .contact-social h3 {
    color: var(--dark-text-primary);
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    justify-content: center;
}

.social-list a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
html.dark-mode .social-list a {
    background: var(--dark-border);
    color: var(--dark-text-primary);
}

.social-list a:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer */

.site-footer {
    background: linear-gradient(135deg, #0a1428 0%, #1a2d4d 50%, #142d4d 100%);
    color: var(--footer-text, #e5e7eb);
    padding: 80px 20px 40px;
    margin-top: 0;
    border-top: 2px solid rgba(91, 126, 255, 0.15);
    transition: all 0.3s ease;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}

.footer-container p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--footer-text, #e5e7eb);
    letter-spacing: 0.3px;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(91, 126, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(91, 126, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 20px;
    border: 2px solid rgba(91, 126, 255, 0.25);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-6px) scale(1.15);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 28px rgba(91, 126, 255, 0.25);
}

@media (max-width: 700px) {
    .site-footer {
        padding: 60px 16px 30px;
        margin-top: 100px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-social {
        justify-content: center;
    }
}

/* Responsive */

@media (max-width: 640px) {
    .contact-headline {
        font-size: 28px;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 25, 25, 0.9) 0%, rgba(88, 202, 13, 0) 50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.2s ease;
    mix-blend-mode: screen;
}

html.dark-mode #cursor-glow {
    background: radial-gradient(circle, rgba(120,180,255,0.25) 0%, rgba(120,180,255,0.12) 40%, transparent 70%);
}

/* Full screen overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white); /* light bg for light mode */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* The actual spinner */
.loader {
    width: 50px;
    height: 50px;
    border: 6px solid rgba(91, 126, 255, 0.2); /* light border */
    border-top-color: var(--primary-blue);    /* spinning color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Section Entrance Animation */
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections initially invisible and no animation */
section,
.site-footer {
    opacity: 1;
}

/* Apply animation only when section enters viewport */
section.animate-in,
.site-footer.animate-in {
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

/* Navbar entrance animation on page load */
.navbar {
    animation: slideUpFadeIn 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0s;
}
