:root {
    --bg-dark: #07090f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-1: #00f2fe;
    --accent-2: #4facfe;
    --accent-3: #f093fb;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(0, 242, 254, 0.15);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden !important;
    touch-action: none;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-svg {
    overflow: visible;
    transform: scale(1.5);
}

.anim-m {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: drawPath 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.anim-d {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-1);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 242, 254, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 242, 254, 0.1);
    border-color: transparent;
}

/* Background Glowing Shapes Wrapper */
.bg-shapes-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: -1;
    opacity: 0.45;
    animation: float 20s infinite alternate;
    pointer-events: none;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-2), transparent 70%);
    top: -120px;
    left: -120px;
}

.shape-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--accent-3), transparent 70%);
    bottom: -220px;
    right: -120px;
    animation-delay: -5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-1), transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Typography & Layout */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 1.75rem;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container {
    max-width: 1350px;
    width: 92%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Status Indicator Pill */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 1.1rem;
    background: rgba(39, 201, 63, 0.08);
    border: 1px solid rgba(39, 201, 63, 0.25);
    border-radius: 50px;
    font-size: 0.84rem;
    color: #27c93f;
    font-weight: 500;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(39, 201, 63, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
    }
}

/* Glassmorphism Components */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.98rem;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    color: #fff;
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.35);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-1);
    color: var(--accent-1);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: max(1.25rem, calc(0.75rem + env(safe-area-inset-top)));
    padding-bottom: 1.25rem;
    z-index: 100;
    background: rgba(7, 9, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--text-main);
}

.md-icon {
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .name {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-text .title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-1);
    letter-spacing: 2px;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.25rem;
}

.mobile-menu-brand,
.mobile-menu-social {
    display: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-1);
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.line {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
}

/* Sections */
section {
    padding: 7rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 100px;
}

/* Hero Section */
#hero {
    padding-top: 150px;
    padding-bottom: 5rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.hero-content,
.hero-visual {
    min-width: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-1);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    line-height: 1.22;
    margin-bottom: 1.25rem;
    max-width: 660px;
}

/* Hero Animated Gradient Heading */
.hero-animated-gradient {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGradientShift 5s ease infinite;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Dynamic Typing Bar */
.hero-typing-bar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 1.15rem;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.typing-prefix {
    color: var(--text-muted);
    font-weight: 500;
}

.typing-text {
    color: var(--accent-1);
    font-weight: 700;
    font-family: 'Consolas', monospace;
}

.typing-cursor {
    color: var(--accent-1);
    font-weight: 700;
    animation: blinkCursor 0.8s infinite;
}

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

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 2rem;
}

/* Hero Stats Highlights Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-btns .btn {
    white-space: nowrap;
}

/* Hero IDE Card Visual */
.hero-visual {
    position: relative;
}

.ide-window-card {
    width: 100%;
    aspect-ratio: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    border-radius: 24px;
    background: rgba(13, 17, 26, 0.95);
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 242, 254, 0.12);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: visible;
}

.ide-window-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 30px 70px -10px rgba(0, 242, 254, 0.25);
}

.ide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px 24px 0 0;
}

.window-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ide-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ide-tab {
    padding: 0.35rem 0.85rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
}

.ide-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.ide-tab.active {
    color: var(--accent-1);
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.3);
    font-weight: 700;
}

.ide-body {
    padding: 1.25rem;
    position: relative;
    flex-grow: 1;
}

.ide-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ide-pane.active {
    display: block;
    opacity: 1;
}

.code-snippet {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 14px;
    padding: 1.25rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.86rem;
    line-height: 1.6;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-snippet pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Floating Decorative Badges */
.float-badge {
    position: absolute;
    padding: 0.65rem 1.25rem;
    background: rgba(7, 9, 15, 0.9);
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.15);
    backdrop-filter: blur(16px);
    z-index: 10;
    pointer-events: none;
    animation: floatBadge 4s infinite alternate ease-in-out;
}

.float-badge-top-right {
    top: -18px;
    right: 15px;
    animation-delay: -1s;
}

.float-badge-bottom-left {
    bottom: -18px;
    left: 15px;
    animation-delay: -2.5s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.code-snippet pre {
    margin: 0;
}

.code-snippet .keyword { color: #ff79c6; }
.code-snippet .variable { color: #50fa7b; }
.code-snippet .string { color: #f1fa8c; }
.code-snippet .function { color: #8be9fd; }
.code-snippet .operator { color: #ff79c6; }

/* About Section */
#about {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
}

.about-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0,242,254,0.1), rgba(240,147,251,0.1));
    border: 1px solid rgba(0, 242, 254, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-fallback {
    position: absolute;
    z-index: 1;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.35);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
}

.about-experience-badge .years {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.skill-tag {
    padding: 0.55rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--accent-1);
    color: #fff;
    transform: translateY(-2px);
}

/* Marquee Ticker */
.marquee-section {
    padding: 2.5rem 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    min-height: auto;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 1.6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    margin: 0 1.5rem;
    letter-spacing: 3px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.service-card {
    position: relative;
    min-height: 280px;
    padding: 2.25rem;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 242, 254, 0.14), transparent 45%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.1);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.75rem;
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--accent-1);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Journey Timeline */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem;
    position: relative;
    width: 50%;
    margin-bottom: 2.25rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--accent-1);
    border-radius: 50%;
    top: 2rem;
    z-index: 1;
    box-shadow: 0 0 15px var(--accent-1);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-date {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    color: var(--accent-1);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.4rem;
}

/* Projects & Filters */
.work-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.65rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(79, 172, 254, 0.25));
    border-color: var(--accent-1);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.work-card.is-hidden {
    display: none !important;
}

.work-card {
    padding: 1.35rem 1.15rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.12);
}

.work-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.work-category-badge {
    padding: 0.35rem 0.85rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-card-icon {
    font-size: 1.6rem;
}

.work-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.work-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.work-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 50px;
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    transition: var(--transition);
}

.work-link-btn:hover,
.work-link-btn:active {
    color: #fff;
    background: rgba(0, 242, 254, 0.25);
    border-color: var(--accent-1);
    transform: translateX(2px);
}

.work-url-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Courses & Training Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.course-card {
    padding: 1.75rem;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.1);
}

.course-icon-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(79, 172, 254, 0.12));
    border: 1px solid rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    font-size: 1.4rem;
}

.course-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.course-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding: 3.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.75rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-main);
    padding: 0.9rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-detail-item:hover {
    background: rgba(0, 242, 254, 0.06);
    border-color: var(--accent-1);
    transform: translateX(6px);
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-detail-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* Footer */
.footer {
    padding: 4.5rem 0 2rem;
    background: linear-gradient(to bottom, rgba(7, 9, 15, 0.5), rgba(7, 9, 15, 0.98));
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand .brand-logo {
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.footer-desc {
    font-size: 0.9rem;
    max-width: 380px;
    margin-bottom: 0;
}

.footer h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 35px;
    height: 2px;
    background: var(--accent-1);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-1);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 0.85rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-2);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.35);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.25rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* Scroll Fade Animations */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (COMPREHENSIVE FOR ALL DEVICES)
   ========================================================================== */

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (COMPREHENSIVE FOR ALL DEVICES & MOBILE PHONES)
   ========================================================================== */

@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    section {
        min-height: auto;
        padding: 5rem 0;
        scroll-margin-top: 85px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .status-indicator,
    .hero-typing-bar {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }

    .main-card {
        transform: none;
        max-width: 650px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
        top: -40px;
        left: -40px;
    }

    .shape-2 {
        width: 260px;
        height: 260px;
        bottom: -40px;
        right: -40px;
    }

    .shape-3 {
        display: none;
    }

    section {
        padding: 4rem 0;
        scroll-margin-top: 75px;
    }

    .section-title {
        margin-bottom: 2.25rem;
    }

    h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    h2 {
        font-size: clamp(1.45rem, 6vw, 2.1rem);
    }

    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1.15rem !important;
        padding-right: 1.15rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .navbar {
        padding-top: max(0.85rem, calc(0.5rem + env(safe-area-inset-top)));
        padding-bottom: 0.85rem;
    }

    #hero {
        padding-top: 105px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 0.9rem 0.75rem;
        width: 100%;
    }

    .stat-num {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .glass-panel {
        padding: 1.5rem 1.15rem;
        border-radius: 18px;
    }

    /* IDE Window Card Responsive Fixes */
    .ide-window-card {
        transform: none !important;
        min-height: auto;
        border-radius: 20px;
    }

    .ide-header {
        padding: 0.75rem 0.85rem;
        gap: 0.5rem;
    }

    .window-controls {
        gap: 5px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .ide-tabs {
        gap: 4px;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ide-tabs::-webkit-scrollbar {
        display: none;
    }

    .ide-tab {
        padding: 0.25rem 0.5rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .ide-body {
        padding: 0.85rem;
    }

    .code-snippet {
        font-size: 0.74rem;
        padding: 0.85rem 0.75rem;
        line-height: 1.5;
        border-radius: 12px;
    }

    .code-snippet pre {
        white-space: pre-wrap;
        word-break: break-word;
    }

    .float-badge {
        padding: 0.4rem 0.85rem;
        font-size: 0.72rem;
    }

    .float-badge-top-right {
        top: -12px;
        right: 8px;
    }

    .float-badge-bottom-left {
        bottom: -12px;
        left: 8px;
    }

    /* About Section Experience Badge Adjustment */
    .about-image-wrapper {
        max-width: 290px;
        margin: 0 auto;
    }

    .about-experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -25px auto 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 240px;
        padding: 0.8rem 1.2rem;
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .about-experience-badge .years {
        font-size: 1.75rem;
        margin-right: 8px;
    }

    .about-experience-badge .text {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* Timeline Left-Alignment on Mobile */
    .timeline::after {
        left: 18px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 48px !important;
        padding-right: 0 !important;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 9px;
        width: 18px;
        height: 18px;
    }

    .timeline-content {
        padding: 1.25rem 1rem;
    }

    /* Work Section & Filters */
    .work-filters {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.5rem 0.25rem 0.85rem 0.25rem;
        margin-bottom: 2rem;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
        gap: 0.6rem;
        scrollbar-width: none;
    }

    .work-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 0.55rem 1.15rem;
        font-size: 0.84rem;
        min-height: 42px;
    }

    .work-grid,
    .services-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .service-card,
    .course-card {
        padding: 1.35rem 1.15rem;
        min-height: auto;
    }

    .work-card {
        padding: 1.35rem 1.15rem;
        min-height: auto;
    }

    .work-card-footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .work-url-text {
        font-size: 0.76rem;
        color: rgba(255, 255, 255, 0.45);
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .course-card[style*="grid-column"] {
        grid-column: span 1 !important;
    }

    /* Contact Section Mobile Fixes */
    .contact-wrapper {
        padding: 1.5rem 1.15rem;
        gap: 1.75rem;
        border-radius: 20px;
    }

    .contact-detail-item {
        padding: 0.75rem 0.9rem;
    }

    .contact-detail-text strong {
        font-size: 0.86rem;
        word-break: break-word;
    }

    .input-group input,
    .input-group textarea {
        padding: 0.9rem 1.15rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile Alignment Fixes */
    .footer {
        padding: 3.5rem 0 calc(2rem + env(safe-area-inset-bottom));
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand .brand-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1.25rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.85rem;
        padding-top: 1.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1.25rem;
    }

    /* Navigation Mobile Drawer */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        height: 100dvh;
        width: 100%;
        background: rgba(7, 9, 15, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.2rem;
        padding-top: max(5rem, calc(4rem + env(safe-area-inset-top)));
        padding-bottom: max(2rem, calc(1.5rem + env(safe-area-inset-bottom)));
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links a {
        font-size: 1.15rem;
        padding: 0.6rem 1.2rem;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-brand {
        display: block;
        margin-bottom: 0.5rem;
    }

    .mobile-menu-brand .brand-logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .mobile-menu-brand .brand-text {
        align-items: center;
    }

    .mobile-menu-social {
        display: flex;
        gap: 1.25rem;
        margin-top: 0.5rem;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 101;
        padding: 8px;
        margin-right: -8px;
    }

    .hamburger.toggle .line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.toggle .line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle .line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    section {
        padding: 3.5rem 0;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.65rem;
    }

    .status-indicator {
        font-size: 0.76rem;
        padding: 0.4rem 0.8rem;
    }

    .badge {
        font-size: 0.76rem;
        padding: 0.4rem 0.8rem;
    }

    .code-snippet {
        font-size: 0.74rem;
        padding: 0.75rem;
    }

    .about-image-wrapper {
        max-width: 260px;
    }

    .contact-detail-item {
        padding: 0.65rem 0.85rem;
    }

    .contact-detail-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-detail-text strong {
        font-size: 0.82rem;
    }

    #project-details {
        padding-top: 105px !important;
    }
}

/* ==========================================================================
   WHATSAPP FLOATING WIDGET
   ========================================================================== */
.whatsapp-widget-container {
    position: fixed;
    bottom: max(25px, calc(15px + env(safe-area-inset-bottom)));
    right: max(20px, calc(15px + env(safe-area-inset-right)));
    z-index: 9990;
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.wa-badge-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background-color: #ff3b30;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.wa-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 330px;
    background: #0d111a;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 211, 102, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wa-chat-box.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-chat-header {
    background: linear-gradient(135deg, #128C7E, #075E54);
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    position: relative;
}

.wa-avatar-box {
    position: relative;
}

.wa-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.wa-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #075E54;
}

.wa-user-info {
    display: flex;
    flex-direction: column;
}

.wa-user-info strong {
    font-size: 0.98rem;
    line-height: 1.2;
}

.wa-user-info span {
    font-size: 0.75rem;
    opacity: 0.88;
}

.wa-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    line-height: 1;
}

.wa-close-btn:hover {
    opacity: 1;
}

.wa-chat-body {
    padding: 1.25rem;
    background: #090d16;
}

.wa-chat-bubble {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.22);
    border-radius: 14px;
    border-top-left-radius: 4px;
    padding: 1rem;
    position: relative;
}

.wa-chat-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #25D366;
    display: block;
    margin-bottom: 4px;
}

.wa-chat-bubble p {
    font-size: 0.88rem;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.55;
    direction: rtl;
    text-align: right;
}

.wa-chat-time {
    font-size: 0.68rem;
    color: #94a3b8;
    display: block;
    text-align: left;
    margin-top: 6px;
}

.wa-chat-footer {
    padding: 1rem;
    background: #0d111a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.85rem;
    background: #25D366;
    color: #000;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa-start-chat-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        min-width: 0;
    }
    .wa-chat-box {
        width: calc(100vw - 40px);
        max-width: 320px;
        right: 0;
    }
}

/* Touch & Mobile Cursor Disable */
@media (hover: none) or (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}


