
/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #ad00ff;
    --accent-color: #00ffc3;
    --accent-color-darker: #00bd92;

    --bg-dark: #0a0a0a; 
    --bg-dark-secondary: #121212; 
    
    --bg-light: #f0f2f5; 
    --bg-light-secondary: #f8f9fa; 

    --text-dark: #e0e0e0;
    --text-light: #212529;
    --text-on-primary-dark: #051a20;
    --text-on-primary-light: #ffffff;

    --glass-bg: rgba(16, 20, 28, 0.5);
    --glass-border: rgba(30, 40, 55, 0.4);

    --primary-color-rgb: 0, 212, 255;
    --navbar-height: 60px;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    opacity: 0;
}

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

body.light { 
    background: var(--bg-light); 
    color: var(--text-light); 
}

body.light :root {
    --glass-bg: rgba(238, 240, 245, 0.7);
    --glass-border: rgba(190, 190, 210, 0.55);
    --text-dark: var(--text-light);
}

.bg-animation { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; z-index: -2; overflow: hidden; 
}

.bg-animation canvas { 
    display: block; 
    position: absolute; 
    top:0; left:0; 
}

canvas#bgShapesCanvas { z-index: -2; }
canvas#bgParticleCanvas { z-index: -1; }

nav {
    position: fixed; top: 0; width: 100%;
    background: var(--glass-bg); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000; padding: 0.8rem 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo { font-size: 1.5rem; font-weight: 700; color: inherit; text-shadow: none; transition: transform 0.3s ease; white-space: nowrap; }
.logo .logo-highlight { color: var(--primary-color); }
.logo:hover { transform: scale(1.05); }
.nav-right-wrapper { display: flex; align-items: center; gap: 1.8rem; }
.nav-links { display: flex; list-style: none; gap: 2.2rem; margin:0; padding:0; }
.nav-links a { text-decoration: none; color: inherit; opacity: 0.85; transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease; position: relative; font-weight: 500; }
.nav-links a:hover, .nav-links a.active-link { color: var(--primary-color); opacity: 1; }
.nav-links a:hover { transform: translateY(-2px); }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 2.5px; background: var(--primary-color); border-radius: 2px; transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }
.theme-toggle { background: transparent; border: 1px solid var(--glass-border); color: inherit; opacity: 0.9; padding: 0.6rem; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.theme-toggle:hover { transform: scale(1.1) rotate(15deg); color: var(--primary-color); border-color: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); }
.mobile-menu { display: none; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--navbar-height) + 2rem) 2rem 2rem; position: relative; overflow: hidden; }
.hero-main-content { display: flex; align-items: center; justify-content: space-between; gap: 3rem; max-width: 1200px; width: 100%; margin: 0 auto;}
.hero-text-column { flex: 1 1 58%; max-width: 620px; text-align: left; z-index: 2; }
.hero-greeting { font-size: 2.8rem; font-weight: 700; color: inherit; margin-bottom: 0.5rem; line-height: 1.2; }
.hero-role { font-size: 2rem; font-weight: 500; margin-bottom: 1.5rem; line-height: 1.3; }
.hero-role .highlight { color: var(--primary-color); font-weight: 700; }
.hero-description { font-size: 1.05rem; margin-bottom: 2.5rem; opacity: 0.8; line-height: 1.8; color: inherit; text-align: justify; }

.btn { 
    display: inline-block; padding: 12px 28px; border: 2px solid var(--primary-color);
    border-radius: 8px; text-decoration: none; color: var(--primary-color);
    background-color: transparent; transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden; z-index: 1; font-weight: 600;
    cursor: pointer; 
}
.btn:hover {
    transform: translateY(-3px) scale(1.03);
    background-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(var(--primary-color-rgb), 0.4);
}
body.dark .btn:hover { color: var(--text-on-primary-dark); }
body.light .btn:hover { color: var(--text-on-primary-light); }

.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; }
.hero-contact-icons { display: flex; gap: 1.2rem; }
.hero-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: transparent; border: 1px solid var(--glass-border); color: var(--text-dark); opacity: 0.7; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; }
body.light .hero-social-icon { color: var(--text-light); border-color: rgba(0,0,0,0.1); }
.hero-social-icon:hover { 
    color: var(--primary-color); 
    border-color: var(--primary-color); 
    transform: scale(1.1) translateY(-2px); opacity: 1; 
    box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.2); 
}
body.light .hero-social-icon:hover {
    color: var(--primary-color); 
    border-color: var(--primary-color); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-image-column { flex: 1 1 38%; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-image-wrapper { max-width: 360px; width: 100%; position: relative; z-index: 1; }
.hero-img-actual { display: block; width: 100%; height: auto; border-radius: 10px; background-color: transparent; }
.hero-image-wrapper .img-box { position: relative; z-index: 2; }
.hero-image-wrapper .liquid-shape { position: absolute; top: 50%; left: 50%; width: 110%; height: 110%; transform: translate(-50%, -50%); z-index: 1; }
.hero-image-wrapper .liquid-shape svg { display: block; width: 100%; height: 100%; }
.animate-hero-element { opacity: 0; transition-property: opacity, transform; transition-duration: 0.8s; transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1); }
.hero-greeting.animate-hero-element { transform: translateY(-30px); }
.hero-role.animate-hero-element { transform: translateX(-40px); }
.hero-description.animate-hero-element { transform: translateY(20px); }
.hero-buttons.animate-hero-element { transform: scale(0.8); }
.hero-contact-icons.animate-hero-element { transform: translateY(20px); }
.hero-image-column.animate-hero-element { transform: translateX(50px) scale(0.9); }
.hero.visible .animate-hero-element { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

/* General Section Styling */
section { 
    padding: 7rem 2rem;
    position: relative; 
    overflow: hidden; 
}
.section-content-container { 
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
#home { 
        padding-top: calc(var(--navbar-height) + 2rem); 
        padding-bottom: 2rem;
        background-color: var(--bg-dark); 
}
body.light #home { background-color: var(--bg-light); }

#services, #projects { 
        color: inherit; 
        background-color: var(--bg-dark); 
}
body.light #services, body.light #projects { background-color: var(--bg-light); }

#about, #skills, #contact, footer {
    background-color: var(--bg-dark-secondary); 
    color: var(--text-dark);
}
body.light #about, body.light #skills, body.light #contact, body.light footer {
    background-color: var(--bg-light-secondary);
    color: var(--text-light);
}
#about { overflow: visible; } 
#skills, #projects, #contact { perspective: 2000px; }

.gradient-title {
    display: inline-block; 
    font-size: 2.8rem; 
    font-weight: 700; 
    margin-bottom: 0.75rem; 
    line-height: 1.2; 
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color), var(--accent-color)); 
    background-size: 200% auto; 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    animation: gradientText 8s linear infinite;
    opacity: 0; transform: translateY(40px) scale(0.9) rotateX(-10deg); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}
.gradient-title.visible { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
.section-title { text-align: center; width:100%; margin-bottom: 4rem !important; }
@keyframes gradientText { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* --- About Section Styling --- */
.about-container { 
    display: flex;
    align-items: center; 
    gap: 3.5rem; 
    background-color: transparent; 
}
.about-image-column { flex: 0 0 40%; position: relative; max-width: 400px; }
.about-profile-img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25); }
body.light .about-profile-img { box-shadow: none; /* Menghilangkan shadow di light mode */ }
.about-badges { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.badge { 
    position: absolute; 
    background-color: rgba(var(--primary-color-rgb), 0.1); /* Background sedikit lebih solid */
    color: var(--text-dark); 
    padding: 0.9rem 1.1rem; 
    border-radius: 8px; 
    text-align: center; 
    border: 1px solid rgba(var(--primary-color-rgb), 0.25); /* Border sedikit lebih jelas */
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb),0.1); /* Shadow lebih subtle */
    min-width: 135px; 
    pointer-events: all; 
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.275), box-shadow 0.35s ease; 
}
.badge:hover { transform: translateY(-8px) scale(1.08) rotate(var(--hover-rotate, 0deg)); box-shadow: 0 14px 40px rgba(var(--primary-color-rgb),0.3); }
.badge-experience:hover { --hover-rotate: 2deg; }
.badge-projects:hover { --hover-rotate: -2deg; }
.badge-clients:hover { --hover-rotate: 1deg; }
body.light .badge { 
    background-color: rgba(var(--primary-color-rgb), 0.15); 
    border: 1px solid rgba(var(--primary-color-rgb), 0.3); 
    color: var(--text-light); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.07); 
}
body.light .badge:hover { box-shadow: 0 14px 40px rgba(var(--primary-color-rgb),0.18); }
.badge .badge-value { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.2rem; }
.badge .badge-label { display: block; font-size: 0.78rem; font-weight: 400; opacity: 1; /* Label dibuat opaque */ line-height: 1.35; }

.badge-experience { top: 8%; left: -12%; transform: rotate(-4deg); }
.badge-projects { top: 42%; right: -15%; transform: rotate(3deg); }
.badge-clients { bottom: 8%; left: 25%; transform: rotate(1deg); }

.about-text-column { flex: 1; padding-left: 3rem; }
.about-intro-subtitle { font-size: 0.8rem; font-weight: 500; color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; opacity: 0.9; }
.about-main-title { text-align: left; margin-bottom: 0.5rem !important; /* Penyesuaian margin agar tagline dan tombol lebih dekat */ }
.about-tagline { font-size: 1.3rem; font-weight: 500; color: inherit; opacity: 0.8; margin-bottom: 0.5rem; /* Mengurangi margin bawah tagline */ }
.about-services-btn { margin-top: 1.5rem; /* Memberi jarak dari tagline ke tombol */ margin-bottom: 2.5rem; /* Jarak ke deskripsi */ }
.about-description { font-size: 1.05rem; line-height: 1.85; opacity: 0.85; /* Margin bottom dihapus karena tombol sekarang di atasnya */ text-align: justify; }
/* --- End of About Section Styling --- */

/* --- Skills Section --- */
#skills .section-title { margin-bottom: 3rem; }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.8rem; }
.skill-card { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 18px; padding: 2.8rem 2.5rem; text-align: center; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; color: inherit; transform-style: preserve-3d; }
.skill-card:hover { transform: translateY(-12px) translateZ(35px) scale(1.04) rotateX(3deg) rotateY(5deg); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
body.light .skill-card { background: rgba(255,255,255,0.8); border-color: rgba(200, 200, 220, 0.65); box-shadow: 0 7px 20px rgba(0,0,0,0.07); color: var(--text-light); }
body.light .skill-card:hover { box-shadow: 0 14px 35px rgba(0,0,0,0.12); }
.skill-icon { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1.5rem; transition: transform 0.35s ease; }
.skill-card:hover .skill-icon { transform: scale(1.2) rotateY(25deg) rotateZ(-8deg); }
.skill-card h3 { margin-bottom: 0.8rem; font-size: 1.35rem; color: var(--primary-color); }

/* --- Projects Section --- */
.projects-main-title { text-align: center; width:100%; margin-bottom: 3rem !important;}
.project-tabs { display: flex; justify-content: center; margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.project-tab-button { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 0.8rem 1.8rem; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; }
.project-tab-button.active { background-color: var(--primary-color); box-shadow: 0 0 15px var(--primary-color); }
body.dark .project-tab-button.active { color: var(--text-on-primary-dark); }
body.light .project-tab-button.active { color: var(--text-on-primary-light); }
body.light .project-tab-button { color: var(--primary-color); border-color: var(--primary-color); }
.project-tab-button:hover:not(.active) { background-color: rgba(var(--primary-color-rgb), 0.15); transform: translateY(-2px); }
.projects-grid-container { overflow: visible; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 1rem; }
.project-card { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 15px; overflow: hidden; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.05s, box-shadow 0.35s ease, opacity 0.45s ease, filter 0.45s ease; display: none; opacity: 0; visibility: hidden; color: inherit; transform: scale(0.85) rotateY(30deg) translateX(25px); filter: blur(10px); }
.project-card.visible { display: grid; opacity: 1; visibility: visible; transform: scale(1) rotateY(0deg) translateX(0px); filter: blur(0px); }
.project-card:hover { transform: translateY(-12px) scale(1.05) rotateX(2.5deg) rotateY(-2.5deg) translateZ(20px); box-shadow: 0 15px 35px rgba(0,0,0,0.22); }
body.light .project-card { background: rgba(255,255,255,0.8); border-color: rgba(200, 200, 220, 0.65); box-shadow: 0 7px 20px rgba(0,0,0,0.07); color: var(--text-light); }
body.light .project-card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.project-image { width: 100%; height: 200px; background: var(--bg-dark-secondary); display: flex; align-items: center; justify-content: center; color: var(--text-dark); font-size: 3rem; transition: background-color 0.3s ease, transform 0.35s ease; }
.project-card:hover .project-image { transform: scale(1.06); }
body.light .project-image { background: var(--bg-light-secondary); color: var(--text-light); }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-content { padding: 1.8rem; }
.project-title { font-size: 1.3rem; margin-bottom: 0.7rem; color: var(--primary-color); }
.project-tech { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.tech-tag { background: var(--primary-color); color: var(--text-on-primary-dark); padding: 0.4rem 0.8rem; border-radius: 6px; font-size: 0.8rem; font-weight: 500; }
body.light .tech-tag { color: var(--text-on-primary-light); }
.project-link { display: block; text-decoration: none; color: inherit; }

/* --- Contact Section --- */
#contact .section-title { margin-bottom: 3rem; } 
.contact-form-standalone-wrapper { max-width: 700px; margin: 0 auto; padding: 2.5rem; background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 15px; color: inherit; }
body.light .contact-form-standalone-wrapper { background: rgba(255,255,255,0.8); border-color: rgba(200, 200, 220, 0.65); box-shadow: 0 7px 20px rgba(0,0,0,0.07); color: var(--text-light); }
.contact-form-standalone-wrapper form { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.contact-form-standalone-wrapper .form-group { margin-bottom: 0.2rem; }
.contact-form-standalone-wrapper input[type="text"], .contact-form-standalone-wrapper input[type="email"], .contact-form-standalone-wrapper textarea { width: 100%; padding: 0.9rem; border-radius: 6px; border: 1px solid var(--glass-border); background-color: rgba(255, 255, 255, 0.03); color: inherit; font-size: 0.9rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.contact-form-standalone-wrapper input[type="text"]:focus, .contact-form-standalone-wrapper input[type="email"]:focus, .contact-form-standalone-wrapper textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 8px rgba(var(--primary-color-rgb), 0.5); }
body.light .contact-form-standalone-wrapper input[type="text"], body.light .contact-form-standalone-wrapper input[type="email"], body.light .contact-form-standalone-wrapper textarea { background-color: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.15); color: var(--text-light); }
body.light .contact-form-standalone-wrapper input[type="text"]:focus, body.light .contact-form-standalone-wrapper input[type="email"]:focus, body.light .contact-form-standalone-wrapper textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 8px rgba(var(--primary-color-rgb), 0.4); }
.contact-form-standalone-wrapper input[type="text"]::placeholder, .contact-form-standalone-wrapper input[type="email"]::placeholder, .contact-form-standalone-wrapper textarea::placeholder { color: inherit; opacity: 0.6; }
.contact-form-standalone-wrapper .btn.contact-btn.form-submit-btn { margin-top: 0.8rem; }

footer { text-align: center; padding: 3.5rem 0; transition: background-color 0.3s ease, color 0.3s ease; }

/* --- Media Queries --- */
@media (max-width: 1024px) { 
    section { padding: 6rem 2rem; }
    #home { padding-top: calc(var(--navbar-height) + 3rem); padding-bottom: 3rem; }
    .hero-main-content { flex-direction: column; text-align: center; gap: 2.5rem; }
    .hero-text-column { text-align: center; order: 2; max-width: 100%; }
    .hero-image-column { order: 1; margin-bottom: 2.5rem; }
    .hero-image-wrapper { max-width: 280px; }
    .hero-buttons { justify-content: center; }
    .hero-contact-icons { justify-content: center; }
    .hero-greeting { font-size: 2.5rem; }
    .hero-role { font-size: 1.8rem; }
    .projects-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
    .about-container { flex-direction: column; text-align: center; gap: 3rem; }
    .about-image-column { max-width: 360px; margin: 0 auto 2.5rem auto; flex: 0 0 auto; }
    .about-text-column { padding-left: 0; align-items: center; display: flex; flex-direction: column; }
    .about-main-title, .projects-main-title { text-align: center; font-size: 2.5rem; }
    .badge-experience { top: 5%; left: -8%; }
    .badge-projects { top: 38%; right: -10%; }
    .badge-clients { bottom: 3%; left: 12%; }
}

@media (max-width: 768px) { 
    section { padding: 4rem 1.2rem; } 
    #home { padding: calc(var(--navbar-height) + 2rem) 1.5rem 2rem; } 
    .section-title, .projects-main-title, .about-main-title { font-size: 2rem; margin-bottom: 2.5rem; } 
    nav { padding: 0.6rem 0; } .nav-container { padding: 0 1.5rem; }
    .nav-right-wrapper .mobile-menu { display: flex; align-items: center; justify-content: center; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: var(--navbar-height); left: 0; width: 100%; padding: 0.5rem 0; border-top: 1px solid var(--glass-border); max-height: calc(100vh - var(--navbar-height, 60px)); overflow-y: auto; z-index: 1000; }
    .nav-links.active { display: flex; background-color: var(--bg-dark); box-shadow: 0 5px 15px rgba(0,0,0,0.25); }
    body.light .nav-links.active { background-color: var(--bg-light); border-top-color: rgba(0,0,0,0.1); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .nav-links a { padding: 1.1rem 2rem; text-align: center; border-bottom: 1px solid var(--glass-border); width: 100%; color: inherit; font-weight: 500; }
    .nav-links li:last-child a { border-bottom: none; }
    body.dark .nav-links.active a { color: var(--text-dark); border-bottom-color: var(--glass-border); }
    body.light .nav-links.active a { color: var(--text-light); border-bottom-color: rgba(var(--primary-color-rgb), 0.15); }
    body.dark .nav-links.active a:hover { color: var(--primary-color); background-color: rgba(var(--primary-color-rgb), 0.1); }
    body.light .nav-links.active a:hover { color: var(--primary-color); background-color: rgba(var(--primary-color-rgb), 0.05); }
    .hero-greeting { font-size: 2rem; }
    .hero-role { font-size: 1.5rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-image-wrapper { max-width: 200px; }
    .hero-buttons { flex-direction: column; gap: 0.8rem; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .skills-grid, .projects-grid { grid-template-columns: 1fr; }
    .contact-form-standalone-wrapper { padding: 1.5rem; margin-bottom: 2rem; }
    
    .about-container { gap: 2.5rem; }
    .about-image-column { max-width: 200px; /* Lebih kecil agar badge tidak terlalu jauh */ margin-bottom: 7rem; /* Beri ruang lebih untuk badge bawah */ } 
    .about-tagline { font-size: 1.05rem; }
    .about-description { font-size: 0.9rem; }
    .badge { padding: 0.6rem 0.8rem; min-width: 110px; /* Sesuaikan min-width */ font-size:0.8em; }
    .badge .badge-value { font-size: 1.1rem; }
    .badge .badge-label { font-size: 0.6rem; line-height: 1.1;}
    .badge-experience { top: 0%; left: -35%; } 
    .badge-projects { top: 40%; right: -40%; } 
    .badge-clients { bottom: -25%; left: 50%; transform: translateX(-50%) rotate(0deg); } 
}

@media (max-width: 480px) { 
    .about-image-column { transform: scale(0.9); margin-bottom: 6rem; margin-top:-1rem; max-width:180px; }
    .badge { padding: 0.5rem 0.7rem; min-width: 90px; font-size:0.75em;}
    .badge .badge-value { font-size: 1rem; }
    .badge .badge-label { font-size: 0.55rem; }
    .badge-experience { top: -5%; left: -40%; }
    .badge-projects { top: 30%; right: -45%; }
    .badge-clients { bottom: -35%; }
}

.mobile-menu { flex-direction: column; justify-content: space-around; width: 28px; height: 22px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001; position: relative; }
.mobile-menu span { display: block; width: 100%; height: 3px; background-color: currentColor; border-radius: 3px; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.mobile-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu.open span:nth-child(2) { opacity: 0; }
.mobile-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.fade-in { opacity: 0; transform: translateY(30px) scale(0.97); transition: opacity 0.7s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0) scale(1); }
.slide-in-left { opacity: 0; transform: translateX(-60px) scale(0.95); transition: opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-in-right { opacity: 0; transform: translateX(60px) scale(0.95); transition: opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-in-left.visible, .slide-in-right.visible { opacity: 1; transform: translateX(0) scale(1); }