/*
Theme Name: Numan Iftikhar Portfolio
Theme URI: https://numaniftikhar.com
Author: Numan Iftikhar
Author URI: https://numaniftikhar.com
Description: Professional portfolio theme for Numan Iftikhar - Senior Multi-Cloud DevOps Engineer
Version: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: numan-portfolio
*/

/* ============================================
   PORTFOLIO WEBSITE - NUMAN IFTIKHAR
   Senior Multi-Cloud DevOps Engineer
   Professional Dark Theme - Command Center
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #e11d2e;
    --primary-dark: #b91c1c;
    --primary-light: #f87171;
    --secondary: #000000;
    --accent: #ef4444;
    --accent-light: #f87171;
    --bg-dark: #000000;
    --bg-surface: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;
    --text-primary: #e2e8f0;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --border: #1a1a1a;
    --border-light: #2a2a2a;
    --gcp-color: #4285f4;
    --aws-color: #ff9900;
    --azure-color: #00bcf2;
    --terraform-color: #7b42bc;
    --success: #ef4444;
    --gradient-1: linear-gradient(135deg, #e11d2e, #ef4444);
    --gradient-2: linear-gradient(135deg, #000000, #0a0a0a);
    --gradient-accent: linear-gradient(135deg, #ef4444, #991b1b);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(225, 29, 46, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol { list-style: none; }

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

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

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

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-text {
    position: absolute;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 46, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-bracket { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(225, 29, 46, 0.08);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

/* --- Hero Section --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at 20% 50%, rgba(225, 29, 46, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(239, 68, 68, 0.04) 0%, transparent 50%),
                var(--bg-dark);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.15; }
    50% { transform: translateY(-40px) translateX(20px); opacity: 0.3; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.availability-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.hero-greeting {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.hero-title-prefix {
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-title-typed {
    color: var(--primary);
    font-weight: 700;
}

.typed-cursor {
    color: var(--accent);
    font-weight: 300;
    animation: blink-cursor 0.8s infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 24px;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.hero-metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-metric-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-social {
    display: flex;
    gap: 10px;
}

.hero-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.hero-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(225, 29, 46, 0.06);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.hero-image-border {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-1);
    animation: rotate-border 10s linear infinite;
    opacity: 0.5;
}

@keyframes rotate-border { to { transform: rotate(360deg); } }

.hero-profile-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    border: 3px solid var(--bg-dark);
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
}

.badge-1 { top: 10%; right: 0; animation-delay: 0s; color: var(--aws-color); }
.badge-2 { top: 50%; left: -12%; animation-delay: 1.2s; color: var(--azure-color); }
.badge-3 { bottom: 10%; right: -5%; animation-delay: 2.4s; color: var(--gcp-color); }
.badge-4 { bottom: 30%; left: -8%; animation-delay: 3.6s; color: var(--primary); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-scroll i { animation: bounce 2s infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* --- Animation Classes --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.3s; }
.delay-5 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Trusted By Strip --- */
#trusted-by {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.trusted-label {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.trusted-item i {
    font-size: 1.4rem;
}

.trusted-item:hover {
    color: var(--primary);
}

/* --- Section Styles --- */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd) { background: var(--bg-dark); }
section:nth-child(even) { background: var(--bg-surface); }

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

.section-tag {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: var(--accent);
    font-size: 0.82rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-line {
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.about-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.stat-card {
    text-align: center;
    padding: 20px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.stat-plus {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; }

.info-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    border-radius: 8px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.info-value.available { color: var(--accent); }

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-includes {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.service-includes li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.service-includes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.7rem;
}

/* How I Work */
.how-i-work {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.how-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.how-title i { color: var(--primary); }

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.process-arrow {
    color: var(--border-light);
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Experience / Timeline --- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.15);
}

.timeline-date { margin-bottom: 10px; }

.timeline-date span {
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

.timeline-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-header .company {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-header .location {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.timeline-header .location i { margin-right: 4px; }

.timeline-details { list-style: none; padding: 0; }

.timeline-details li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.timeline-details li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-family: monospace;
}

.timeline-details li strong { color: var(--text-primary); }

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.timeline-tags span {
    padding: 3px 10px;
    background: rgba(225, 29, 46, 0.06);
    border: 1px solid rgba(225, 29, 46, 0.12);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
}

/* --- Certifications Section --- */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

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

.cert-card.gcp::before { background: linear-gradient(135deg, #4285f4, #34a853); }
.cert-card.aws-cert::before { background: linear-gradient(135deg, #ff9900, #ff6600); }
.cert-card.azure-cert::before { background: linear-gradient(135deg, #00bcf2, #0078d4); }
.cert-card.terraform::before { background: linear-gradient(135deg, #7b42bc, #5c4ee5); }

.cert-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
}

.cert-card.gcp .cert-icon { background: rgba(66, 133, 244, 0.08); color: var(--gcp-color); }
.cert-card.aws-cert .cert-icon { background: rgba(255, 153, 0, 0.08); color: var(--aws-color); }
.cert-card.azure-cert .cert-icon { background: rgba(0, 188, 242, 0.08); color: var(--azure-color); }
.cert-card.terraform .cert-icon { background: rgba(123, 66, 188, 0.08); color: var(--terraform-color); }
.cert-card.other .cert-icon { background: rgba(225, 29, 46, 0.08); color: var(--primary); }

.cert-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.cert-provider {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Why Hire Me Section --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 3.5rem;
    color: rgba(225, 29, 46, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 0.8rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.6;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
}

.author-role {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-cta {
    text-align: center;
    padding-top: 16px;
}

.testimonials-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 14px;
    font-weight: 500;
}

/* --- Hire Me Banner --- */
#hire-banner {
    background: linear-gradient(135deg, rgba(225, 29, 46, 0.06), rgba(239, 68, 68, 0.04));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.hire-banner-content { text-align: center; }

.hire-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hire-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hire-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* --- Featured Projects Section --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

.project-card:hover::after { opacity: 1; }

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.project-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.2rem;
}

.project-links { display: flex; gap: 8px; }

.project-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.project-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.project-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.project-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 18px;
}

.project-tech-stack span {
    padding: 3px 8px;
    background: rgba(225, 29, 46, 0.06);
    border: 1px solid rgba(225, 29, 46, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
}

.project-details {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.project-details li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.project-details li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent);
    font-size: 0.75rem;
}

.project-details li strong { color: var(--text-primary); }

/* Project Architecture Diagram */
.project-architecture {
    position: relative;
    margin-bottom: 18px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    background: #000000;
}

.project-architecture:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(225, 29, 46, 0.15);
}

.project-architecture img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center top;
    display: block;
    padding: 8px;
    transition: transform 0.5s ease;
}

.project-architecture:hover img {
    transform: scale(1.03);
}

.arch-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.arch-label i { color: var(--primary); }

/* Architecture Modal */
.arch-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.arch-modal.active { opacity: 1; visibility: visible; }

.arch-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.arch-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.arch-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: transparent;
}

.project-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-security {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.badge-cloud {
    background: rgba(225, 29, 46, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.15);
    color: var(--primary);
}

.badge-gitops {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    color: #c084fc;
}

.badge-perf {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.badge-uptime {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--accent);
}

/* --- Education Section --- */
.education-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 650px;
    margin: 0 auto;
    transition: var(--transition);
}

.education-card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.edu-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.edu-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.edu-school {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.edu-date, .edu-gpa {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 18px;
}

.edu-date i, .edu-gpa i {
    margin-right: 5px;
    color: var(--primary);
}

/* --- Book a Call Section --- */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.booking-highlight-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    color: var(--accent);
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.booking-highlight-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.booking-highlight-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.booking-topics {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.booking-topics h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-topics h4 i { color: var(--accent); }

.booking-topics ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-topics li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.booking-topics li i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Booking Form */
.booking-form-wrapper { position: relative; }

.booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.booking-form h3 {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.booking-form h3 i { color: var(--accent); }

.booking-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.booking-note i { color: var(--accent); }

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 46, 0.08);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-card a, .contact-card span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-card a:hover { color: var(--primary); }

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Forms */
.contact-form, .booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.08);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -9px;
    left: 10px;
    font-size: 0.72rem;
    color: var(--primary);
    background: var(--bg-card);
    padding: 0 5px;
}

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

/* --- Blog Section --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 50px rgba(225, 29, 46, 0.1);
}

.blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(225, 29, 46, 0.08), rgba(239, 68, 68, 0.06));
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.blog-tags span {
    padding: 3px 10px;
    background: rgba(225, 29, 46, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--accent);
    gap: 12px;
}

/* --- Calendly Embed --- */
.calendly-embed-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.calendly-embed-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 1;
}

/* Booking form overrides */
.booking-form .form-group select,
.booking-form .form-group input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.booking-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236e7681' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.booking-form .form-group select:focus,
.booking-form .form-group input[type="date"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.booking-form .form-group input:focus + label,
.booking-form .form-group input:not(:placeholder-shown) + label,
.booking-form .form-group textarea:focus + label,
.booking-form .form-group textarea:not(:placeholder-shown) + label {
    color: var(--accent);
}

.select-label {
    top: -9px !important;
    left: 10px !important;
    font-size: 0.72rem !important;
    color: var(--accent) !important;
    background: var(--bg-card) !important;
    padding: 0 5px !important;
}

/* --- Footer --- */
#footer {
    padding: 36px 0;
    background: var(--secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(225, 29, 46, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description { margin: 0 auto 24px; }
    .hero-metrics { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-social { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 2px;
        transition: right 0.3s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

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

    .nav-links a {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-name { font-size: 2.5rem; }

    .hero-title-wrapper {
        flex-direction: column;
        gap: 4px;
        font-size: 1rem;
    }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 0;
    }

    .hero-metric-divider:nth-child(4) { display: none; }

    .section-title { font-size: 1.8rem; }

    .services-grid,
    .why-grid,
    .testimonials-grid,
    .projects-grid { grid-template-columns: 1fr; }

    .certs-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

    .education-card {
        flex-direction: column;
        text-align: center;
    }

    .timeline { padding-left: 30px; }
    .timeline-dot { left: -26px; }
    .timeline-content { padding: 20px; }
    .contact-socials { flex-direction: column; }
    .trusted-logos { gap: 24px; }

    .process-steps {
        flex-direction: column;
        gap: 16px;
    }

    .process-arrow { transform: rotate(90deg); }

    .hire-text h2 { font-size: 1.5rem; }
    .hire-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    section { padding: 70px 0; }
    .hero-name { font-size: 2rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 14px 8px; }
    .stat-number { font-size: 1.4rem; }
    .nav-actions .btn { display: none; }
}
