/* Global Styles */
:root {
    /* Default Theme Colors */
    --bg-dark: #0a0f1a;
    --bg-light: #0f1629;
    --bg-card: #151d30;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent: #64ffda;
    --accent-secondary: #00b894;
    --accent-glow: rgba(100, 255, 218, 0.15);
    --white: #e6f1ff;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 60px -15px rgba(100, 255, 218, 0.2);
    --glow: 0 0 30px rgba(100, 255, 218, 0.4);
    --border-subtle: rgba(100, 255, 218, 0.08);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
}

/* Theme Variations */
body[data-theme="purple"] {
    --accent: #a855f7;
    --accent-secondary: #ec4899;
}

body[data-theme="blue"] {
    --accent: #3b82f6;
    --accent-secondary: #06b6d4;
}

body[data-theme="orange"] {
    --accent: #f97316;
    --accent-secondary: #eab308;
}

body.light-mode {
    --bg-dark: #f7f8fc;
    --bg-light: #ffffff;
    --bg-card: #f0f2f8;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --white: #0f172a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --accent-glow: rgba(100, 255, 218, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Dot Grid Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor {
    background: var(--accent);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    background: transparent;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.expand,
.cursor-follower.expand {
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(100, 255, 218, 0.08);
    border-top-color: var(--accent);
    border-right-color: var(--accent-secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

.loader-text span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    animation: bounce 1s infinite;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loading-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-subtle);
}

body.light-mode .glass-effect {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Animated Gradient Border */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent-secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Touch-friendly interactive elements */
button,
a,
.btn,
.nav-link,
.skill-card,
.project-card,
.service-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    button,
    a,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Theme Switcher Panel */
.theme-switcher-panel {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
}

.theme-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border: none;
    color: var(--bg-dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: var(--glow);
}

.theme-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.theme-options.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.theme-option:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--accent);
}

.theme-option.active {
    background: rgba(100, 255, 218, 0.2);
    border-color: var(--accent);
}

.theme-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Social Links */
.hero-social {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1.5px solid rgba(100, 255, 218, 0.2);
    color: var(--accent);
    transition: var(--transition);
    position: relative;
}

.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid var(--accent);
}

.social-icon:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Platform Specific Colors */
.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.social-icon.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    border-color: #00f2ea;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: #fd1d1d;
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-icon.github:hover {
    background: #333;
    border-color: #333;
    color: white;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary), #a855f7, var(--accent));
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    border-radius: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: var(--font-main);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

.btn:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3), 0 0 20px var(--accent-glow);
    border-color: var(--accent);
}

.btn i {
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.2);
}

.btn-primary::before {
    background: var(--accent-secondary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    margin-left: 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent), #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

body.light-mode .header {
    background-color: rgba(255, 255, 255, 0.8);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--border-subtle);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--white);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-left: 20px;
}

.theme-toggle:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 184, 148, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(0, 184, 148, 0.1));
    filter: blur(60px);
    animation: float 15s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.floating-shape.shape-4 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

.hero h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero h2 {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.hero p {
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Typing Animation */
.typing-animation {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    border-right: 2px solid var(--accent);
    padding-right: 5px;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Glitch Effect */
.glitch {
    position: relative;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.glitch:hover {
    animation: glitch-anim 0.3s infinite;
}

@keyframes glitch-anim {
    0% {
        text-shadow: 
            2px 2px 0 var(--accent),
            -2px -2px 0 #ff006e;
    }
    25% {
        text-shadow: 
            -2px 2px 0 var(--accent),
            2px -2px 0 #ff006e;
    }
    50% {
        text-shadow: 
            2px -2px 0 var(--accent),
            -2px 2px 0 #ff006e;
    }
    75% {
        text-shadow: 
            -2px -2px 0 var(--accent),
            2px 2px 0 #ff006e;
    }
    100% {
        text-shadow: 
            2px 2px 0 var(--accent),
            -2px -2px 0 #ff006e;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Hero Stats Counter */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
}

.stat-box {
    text-align: center;
    padding: 25px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.04), rgba(0, 184, 148, 0.02));
    opacity: 0;
    transition: var(--transition);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
    border-color: rgba(100, 255, 218, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    transition: var(--transition);
}

.stat-box:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.img-container.main-img {
    width: 280px;
    height: 320px;
}

.img-container.secondary-img {
    width: 200px;
    height: 240px;
    align-self: flex-end;
    margin-bottom: 20px;
}

.img-container {
    position: relative;
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
}

.img-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), #00b894, var(--accent));
    border-radius: 20px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid var(--accent);
    box-sizing: border-box;
    transition: var(--transition);
    z-index: 1;
    opacity: 0;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(50%) contrast(1.1);
    transition: var(--transition);
    position: relative;
    z-index: 0;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.2), rgba(0, 184, 148, 0.2));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.img-container:hover {
    transform: scale(1.05);
}

.img-container:hover .profile-pic {
    filter: none;
}

.img-container:hover .img-overlay {
    opacity: 1;
}

.img-container:hover::after {
    opacity: 1;
}

.about-text {
    flex: 1.5;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.highlight-text {
    color: var(--accent);
    font-weight: 600;
    position: relative;
}

/* Skill Badges */
.badge-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.skill-badge:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(100, 255, 218, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(100, 255, 218, 0.06);
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.highlight-item h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* About CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Image Badge */
.img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: var(--shadow-hover);
}

.img-badge i {
    font-size: 1rem;
}

/* Image Decorations */
.img-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.1;
    z-index: -1;
}

.decoration-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    width: 80px;
    height: 80px;
    bottom: -15px;
    right: -15px;
    animation: float 8s ease-in-out infinite reverse;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.skills-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent);
}

/* Skill Progress Bars */
.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 3rem;
}

.skill-bar-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.skill-bar-item:hover {
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.skill-percentage {
    color: var(--accent);
}

.skill-progress {
    width: 100%;
    height: 8px;
    background: rgba(100, 255, 218, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 0 10px var(--accent-glow);
}

.skill-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.skill-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-light) 100%);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.08), transparent);
    transition: left 0.6s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
}

.skill-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.skill-card:hover i {
    transform: rotateY(360deg);
}

.skill-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-light) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    display: block;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.project-img {
    height: 200px;
    background-color: #233554;
    position: relative;
    overflow: hidden;
}

.project-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.5);
    transition: var(--transition);
}

.project-card:hover .project-img::before {
    background-color: transparent;
}

.project-card:hover .project-img i {
    transform: scale(1.2) rotate(10deg);
}

.project-img i {
    transition: var(--transition);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.project-card:hover .project-info h3 {
    color: var(--accent);
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid var(--accent);
}

.btn-small {
    color: var(--accent);
    font-weight: 500;
}

.btn-small:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-light) 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: rotateY(360deg);
}

.service-card:hover .service-icon i {
    color: var(--bg-dark);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Experience Timeline */
.experience {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), rgba(100, 255, 218, 0.2));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 0;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-icon i {
    color: var(--accent);
    font-size: 1.2rem;
}

.timeline-content {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-light) 100%);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    width: calc(100% - 60px);
    margin-right: 30px;
}

.timeline-item.right .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content:hover {
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
}

.timeline-date {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.timeline-content h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid var(--accent);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-light) 100%);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px var(--accent-glow);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
}

.author-avatar i {
    color: var(--accent);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    background-color: var(--bg-light);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ====================== */
/* UPGRADE 3 CSS          */
/* ====================== */

/* Live Badge on Project Cards */
.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 10px 4px rgba(74, 222, 128, 0.2); }
}

/* Why Choose Me Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.why-card {
    padding: 32px 26px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(100, 255, 218, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 0 15px var(--accent-glow);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(100, 255, 218, 0.06);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-icon i {
    font-size: 1.3rem;
    color: var(--accent);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.why-card:hover .why-icon i {
    color: var(--bg-dark);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(100, 255, 218, 0.15);
}

.faq-item.active {
    border-color: rgba(100, 255, 218, 0.25);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    color: var(--accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ====================== */
/* MARKETING SECTIONS CSS */
/* ====================== */

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* CTA Banner Section */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(100, 255, 218, 0.02) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.cta-banner-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.cta-banner-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(100, 255, 218, 0.02);
    border: 1px solid rgba(100, 255, 218, 0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.cta-feature-item:hover {
    border-color: rgba(100, 255, 218, 0.15);
    background: rgba(100, 255, 218, 0.04);
}

.cta-feature-item i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.cta-feature-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.6;
    letter-spacing: 0.3px;
}

.cta-note i {
    margin-right: 5px;
    color: var(--accent);
}

/* Work Process Section */
.work-process {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.work-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(100, 255, 218, 0.08);
    line-height: 1;
    margin-bottom: -10px;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(0, 184, 148, 0.1));
    border: 1.5px solid rgba(100, 255, 218, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.process-card:hover .process-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow);
}

.process-card:hover .process-icon i {
    color: var(--bg-dark);
}

.process-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.process-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: rgba(100, 255, 218, 0.2);
    font-size: 1.2rem;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Service Pricing & Popular Badge */
.service-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.3);
}

.service-price {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.service-price strong {
    color: var(--accent);
    font-size: 1.3rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 12px 20px;
    background: rgba(100, 255, 218, 0.08);
    color: var(--accent);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-service:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.3);
    transform: translateY(-2px);
}

/* Contact Inline Styles Replacement */
.contact-wa-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-wa-link:hover {
    color: var(--accent);
}

.contact-wa-badge {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Contact Section Upgrade */
.contact-heading {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-guarantee {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.guarantee-item i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.final-cta-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.final-cta-buttons {
    margin-bottom: 2.5rem;
}

.final-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.final-stat {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.final-stat strong {
    color: var(--accent);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 2px;
}

.final-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-subtle);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 998;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-wa:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa i {
    font-size: 1.4rem;
}

.floating-wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #25D366;
    animation: waPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.floating-wa-text {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* Footer Upgrade */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.left {
    transform: translateX(-30px);
}

.fade-in.right {
    transform: translateX(30px);
}

.fade-in.visible.left,
.fade-in.visible.right {
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Responsive */
/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-connector {
        display: none;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-card {
        max-width: 100%;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item.right {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(0);
    }

    .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

/* Tablet Portrait & Large Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        width: 90%;
        padding: 0 15px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .theme-toggle {
        margin-left: 10px;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 20px;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Upgrade 3 Mobile */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 25px;
    }

    .why-choose {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 16px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }

    /* Marketing Sections Mobile */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner-content h2 {
        font-size: 1.6rem;
    }

    .cta-banner-content > p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }

    .cta-feature-item {
        padding: 10px 12px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .process-connector {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-card {
        max-width: 100%;
        padding: 25px 20px;
    }

    .work-process {
        padding: 60px 0;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-stats {
        flex-direction: column;
        gap: 15px;
    }

    .final-stat-divider {
        width: 40px;
        height: 1px;
    }

    .floating-wa {
        bottom: 20px;
        left: 20px;
        border-radius: 50%;
        padding: 14px;
    }

    .floating-wa-text {
        display: none;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero h3 {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .stat-box p {
        font-size: 0.85rem;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-images {
        flex-direction: row;
        gap: 15px;
    }

    .img-container.main-img {
        width: 180px;
        height: 220px;
    }

    .img-container.secondary-img {
        width: 140px;
        height: 180px;
        margin-bottom: 10px;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
    }

    /* Skills Section Mobile */
    .skills {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .skills-category {
        margin-bottom: 2rem;
    }

    .skill-bar-item {
        padding: 15px;
    }

    .skill-info {
        font-size: 0.9rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .skill-card {
        padding: 25px;
    }

    /* Projects Section Mobile */
    .projects {
        padding: 60px 0;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .project-tags {
        gap: 8px;
    }

    .tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-features {
        font-size: 0.9rem;
    }

    /* Experience Section Mobile */
    .experience {
        padding: 60px 0;
    }

    .timeline {
        padding: 20px 0;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
    }

    .timeline-icon i {
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-tags {
        gap: 6px;
    }

    .timeline-tags span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    /* Testimonials Section Mobile */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        min-width: 100%;
    }

    .info-item {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

    /* Back to Top Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 25px 0;
        font-size: 0.85rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Hero Section Small Mobile */
    .hero {
        padding-top: 80px;
    }

    .hero h3 {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .stat-box h3 {
        font-size: 1.8rem;
    }

    .stat-box p {
        font-size: 0.8rem;
    }

    /* About Section Small Mobile */
    .about-images {
        flex-direction: column;
        align-items: center;
    }

    .img-container.main-img {
        width: 160px;
        height: 200px;
    }

    .img-container.secondary-img {
        width: 130px;
        height: 160px;
        margin-bottom: 0;
    }

    .about-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .stat-item {
        width: 100%;
    }

    .stat-item h4 {
        font-size: 1.8rem;
    }

    /* Skills Section Small Mobile */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .category-title {
        font-size: 1.2rem;
        padding-left: 15px;
    }

    .skill-bar-item {
        padding: 12px;
    }

    .skill-info {
        font-size: 0.85rem;
    }

    .skill-card {
        padding: 20px;
    }

    .skill-card i {
        font-size: 2.5rem;
    }

    .skill-card h3 {
        font-size: 1rem;
    }

    .skill-card p {
        font-size: 0.85rem;
    }

    /* Projects Section Small Mobile */
    .project-info {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .project-info p {
        font-size: 0.85rem;
    }

    /* Services Section Small Mobile */
    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    /* Timeline Small Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right {
        padding-left: 60px;
    }

    .timeline-icon {
        left: 20px;
        width: 35px;
        height: 35px;
    }

    .timeline-icon i {
        font-size: 0.9rem;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-date {
        font-size: 0.8rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content h4 {
        font-size: 0.9rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    /* Testimonials Small Mobile */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-rating i {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .author-avatar i {
        font-size: 1.3rem;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Contact Section Small Mobile */
    .contact-subtitle {
        font-size: 0.95rem;
    }

    .info-item {
        font-size: 0.85rem;
    }

    .info-item i {
        font-size: 1rem;
    }

    .social-links a {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Back to Top Small Mobile */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    html {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .img-container.main-img {
        width: 140px;
        height: 180px;
    }

    .img-container.secondary-img {
        width: 110px;
        height: 140px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 2rem;
    }

    .stat-box h3 {
        font-size: 1.5rem;
    }

    .stat-box p {
        font-size: 0.75rem;
    }
}