/* Cyberpunk/Hacker Theme CSS */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #00ff41;
    --secondary-color: #ff0080;
    --accent-color: #00d4ff;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #00ff41;
    --text-muted: #888888;
    --border-color: #333333;
    --glow-color: #00ff41;
    --shadow-color: rgba(0, 255, 65, 0.3);
    --success-color: #00ff41;
    --warning-color: #ffaa00;
}

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

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ensure About and Home sections match Skills description font */
.about-narrative,
.about-narrative p,
.hero-section .terminal-window,
.hero-section .terminal-body,
.hero-section .terminal-line,
.hero-section .terminal-output,
.hero-section .output-text,
.hero-section .command {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 400;
}

/* Refined Matrix-style Background */
#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.08;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: subtleFlow 30s ease-in-out infinite;
}

@keyframes subtleFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(0.5deg); }
}

/* Refined Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 65, 0.02) 2px,
        rgba(0, 255, 65, 0.02) 4px
    );
    pointer-events: none;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--glow-color);
}

/* Navigation */
.cyber-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.header-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-social-link {
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.header-social-link:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    transform: translateY(-2px);
    text-shadow: 0 0 10px var(--glow-color);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: transparent;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    text-shadow: 0 0 15px var(--glow-color);
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile nav dropdown */
.nav-menu.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-menu.active li {
    width: 100%;
}

.nav-menu.active a {
    display: block;
    padding: 1rem 2rem;
}

/* Hamburger animation */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.terminal-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 30px var(--shadow-color);
    margin-bottom: 3rem;
    overflow: hidden;
}

.terminal-header {
    background: var(--bg-tertiary);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.close { background: #ff5f56; }
.btn.minimize { background: #ffbd2e; }
.btn.maximize { background: #27ca3f; }

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Share Tech Mono', monospace;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.prompt {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.command {
    color: var(--accent-color);
}

.terminal-output {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.output-text {
    color: var(--text-primary);
}

/* removed unused cursor blink animation */


/* Section Titles */
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
}

/* removed unused .title-number */

.title-text {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
}

.title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* removed unused code block styles */

.about-image {
    display: flex;
    justify-content: center;
}

.about-narrative {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    line-height: 1.8;
}

.about-narrative p + p {
    margin-top: 0.85rem;
}

/* About Me readability improvements */
.about-text {
    max-width: 800px;
}

.about-narrative,
.about-narrative p {
    font-family: 'Arial', monospace;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.85;
}

.about-narrative {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 255, 65, 0.02));
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hacker-avatar {
    position: relative;
    width: 200px;
    height: 200px;
}

.avatar-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* removed unused scan-line animation */

/* Skills Section */
.skills-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px var(--shadow-color), 0 0 50px rgba(0, 255, 65, 0.15);
    filter: brightness(1.05);
}

.skill-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--glow-color);
}

.skill-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.skill-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.see-more-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--bg-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: center;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
    filter: brightness(1.1);
}


/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.client-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--shadow-color), 0 0 40px rgba(0, 255, 65, 0.2);
    filter: brightness(1.05);
}

.client-logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--glow-color);
}

.client-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.client-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* removed unused client-status */

/* Certificates Section */
.certificates-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.certificate-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.certificate-card:hover::before {
    transform: translateX(100%);
}

.certificate-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--shadow-color), 0 0 40px rgba(0, 255, 65, 0.2);
    filter: brightness(1.05);
}

.certificate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cert-logo {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.cert-status {
    background: var(--primary-color);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.certificate-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.certificate-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cert-date {
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.contact-terminal {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 30px var(--shadow-color);
    overflow: hidden;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--shadow-color), 0 0 30px rgba(0, 255, 65, 0.3);
    filter: brightness(1.1);
}

.email-contact {
    text-align: center;
    margin-top: 1rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.email-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

/* Email button style */
.email-button {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--bg-primary) !important;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
    filter: brightness(1.05);
    color: var(--bg-primary) !important;
}

/* Ensure LinkedIn uses the exact same style when combined */
.social-link.email-button,
.email-link.email-button {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
    border: none !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px !important;
    color: var(--bg-primary) !important;
    box-shadow: none;
}

.social-link.email-button:hover,
.email-link.email-button:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4) !important;
    filter: brightness(1.05) !important;
    color: var(--bg-primary) !important;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    filter: brightness(1.1);
}

.modal-body {
    padding: 1.5rem;
}

.skill-experience {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.experience-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.experience-label {
    color: var(--text-muted);
    font-weight: 600;
}

.experience-value {
    color: var(--success-color);
    font-weight: 700;
}

.skill-techniques {
    margin-bottom: 1.5rem;
}

.techniques-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.technique-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.technique-item:hover {
    border-color: var(--primary-color);
    background: var(--bg-tertiary);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
    filter: brightness(1.05);
}

.skill-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tool-tag {
    background: var(--primary-color);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer */
.cyber-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Cursor Styles for Different Interactive Elements */
.terminal-window {
    cursor: default;
}

.terminal-window:hover {
    cursor: default;
}

.about-text {
    cursor: default;
}

.technique-item {
    cursor: default;
}

.tool-tag {
    cursor: default;
}

/* Special cursor for modal close button */
.modal-close {
    cursor: pointer;
}

.modal-close:hover {
    cursor: pointer;
}

/* Hamburger menu cursor */
.hamburger {
    cursor: pointer;
}

.hamburger span {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container { padding: 0 1rem; }
    .header-social { display: flex; gap: 0.5rem; }
    .header-social-link { width: 32px; height: 32px; font-size: 1rem; padding: 0.25rem; }
    .nav-menu { display: none; position: absolute; top: 10px; left: 0; right: 0; }
    .hamburger { display: flex; margin-right: 24px; padding-right: 6px; overflow: visible; }
    .hamburger span { transform-origin: center; }
    /* Ensure right-side safe-area on mobile so X isn't clipped */
    .cyber-nav { padding-right: env(safe-area-inset-right); }
    .nav-container { padding-right: calc(1rem + env(safe-area-inset-right)); overflow: visible; }
    /* Push hero/home content down below fixed nav */
    .hero-section { padding-top: 80px; }
    .about-content { grid-template-columns: 1fr; justify-items: stretch; gap: 1.5rem; }
    .about-text { width: 100%; max-width: 700px; text-align: left; margin: 0 auto; font-size: 0.95rem; }
    .about-image { width: 100%; max-width: 700px; display: flex; justify-content: center; }
    .hacker-avatar { width: 160px; height: 160px; }
    .avatar-container { margin: 0 auto; }
    /* Remove duplicate overlay label in nav links on mobile */
    .nav-link::before { content: none; }
    /* removed unused code-content responsive overrides */
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        flex-direction: column;
        text-align: center;
    }
    
    .title-line {
        width: 100px;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content { width: 92%; max-width: 520px; max-height: 86vh; }
    .modal-header { padding: 1rem; }
    .modal-body { padding: 1rem; }
    .techniques-grid { grid-template-columns: 1fr; }
    .terminal-body {
        padding: 1rem;
    }
    
    /* removed unused code-content responsive overrides */
    .section-title .title-text { font-size: 1.6rem; }
    
    .skills-grid,
    .clients-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* HiveFury Logo Styles */
.hivefury-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.4));
    transition: all 0.3s ease;
}

.hivefury-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.8)) brightness(1.1);
}

/* HiveFury Client Card Orange Animation */
.client-card[href*="hivefury"]::before {
    display: none !important;
}

.client-card[href*="hivefury"]:hover {
    border-color: #ff8c00 !important;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.4), 0 0 50px rgba(255, 100, 0, 0.2) !important;
    filter: brightness(1.05);
}

/* AZERO.ID Logo Styles */
.azero-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(200, 255, 0, 0.4)); /* Yellow-green glow */
    transition: all 0.3s ease;
}

.azero-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(200, 255, 0, 0.8)) brightness(1.1); /* Yellow-green glow */
}

.client-card.azero-card::before {
    display: none !important; /* Removed the sweep animation */
}

.client-card.azero-card:hover {
    border-color: #c8ff00 !important; /* Yellow-green color, added !important */
    box-shadow: 0 0 25px rgba(200, 255, 0, 0.4), 0 0 50px rgba(200, 255, 0, 0.2) !important; /* Yellow-green glow, added !important */
    filter: brightness(1.05);
}

/* Aleph Zero Logo Styles */
.aleph-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)); /* White glow */
    transition: all 0.3s ease;
}

.aleph-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) brightness(1.1); /* White glow */
}

.client-card.aleph-card::before {
    display: none !important; /* Removed the sweep animation */
}

.client-card.aleph-card:hover {
    border-color: #ffffff !important; /* White color, added !important */
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 0 50px rgba(255, 255, 255, 0.2) !important; /* White glow, added !important */
    filter: brightness(1.05);
}

/* AEG Presents Logo Styles */
.aeg-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.4)); /* Red glow */
    transition: all 0.3s ease;
}

.aeg-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8)) brightness(1.1); /* Red glow */
}

.client-card.aeg-card::before {
    display: none !important; /* Removed the sweep animation */
}

.client-card.aeg-card:hover {
    border-color: #dc2626 !important; /* Red color, added !important */
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4), 0 0 50px rgba(220, 38, 38, 0.2) !important; /* Red glow, added !important */
    filter: brightness(1.05);
}

/* Boardspan Logo Styles */
.boardspan-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255, 165, 102, 0.4)); /* Peach glow */
    transition: all 0.3s ease;
}

.boardspan-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 165, 102, 0.8)) brightness(1.1); /* Peach glow */
}

.client-card.boardspan-card::before {
    display: none !important; /* Removed the sweep animation */
}

.client-card.boardspan-card:hover {
    border-color: #ffa566 !important; /* Peach color, added !important */
    box-shadow: 0 0 25px rgba(255, 165, 102, 0.4), 0 0 50px rgba(255, 165, 102, 0.2) !important; /* Peach glow, added !important */
    filter: brightness(1.05);
}

/* SkyTrade Logo Styles */
.skytrade-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(0, 179, 255, 0.4)); /* Blue glow */
    transition: all 0.3s ease;
}

.skytrade-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 179, 255, 0.8)) brightness(1.1); /* Blue glow */
}

.client-card.skytrade-card::before {
    display: none !important; /* Removed the sweep animation */
}

.client-card.skytrade-card:hover {
    border-color: #00b3ff !important; /* Blue color */
    box-shadow: 0 0 25px rgba(0, 179, 255, 0.4), 0 0 50px rgba(0, 179, 255, 0.2) !important; /* Blue glow */
    filter: brightness(1.05);
}