* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a192f;
    --primary-dark: #05101f;
    --primary-light: #112240;
    --accent: #64ffda;
    --accent-dark: #4cd4b5;
    --text-light: #ccd6f6;
    --text-muted: #8892b0;
    --text-dark: #e6f1ff;
    --bg-white: #0a192f;
    --bg-offwhite: #112240;
    --border-light: #233554;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.25s ease;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.5;
    background: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    color: var(--accent);
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: var(--primary);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-greeting {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.cta-button-secondary:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
}

.profile-image-placeholder {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.image-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--primary-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-img-placeholder {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--accent);
}

.image-label-sm {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.about-content h2 {
    color: var(--accent);
}

.about-lead {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    color: var(--accent);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Work Section */
.work {
    padding: 100px 0;
    background: var(--primary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-light);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.work-item {
    display: flex;
    flex-direction: column;
    background: var(--primary-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.work-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
    background: var(--primary-dark);
}

.work-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.image-placeholder-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(10, 25, 47, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
    z-index: 2;
}

.work-info {
    padding: 20px;
}

.work-info h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.work-category {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.work-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.work-link:hover {
    gap: 12px;
}

/* <----- Work Image Icon Placeholders -----> */
.work-image-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-placeholder {
    text-align: center;
    color: var(--accent);
}

.icon-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 12px;
    display: block;
}

.icon-placeholder span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* <----- Responsive adjustments for icons -----> */
@media (max-width: 768px) {
    .work-image-icon {
        height: 180px;
    }

    .icon-placeholder i {
        font-size: 2.5rem;
    }

    .icon-placeholder span {
        font-size: 0.7rem;
    }
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: var(--primary-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.skill-category {
    background: var(--primary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.skill-category h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-category h3 i {
    font-size: 1.25rem;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.skill-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    background: var(--primary-light);
    border-radius: 32px;
    padding: 56px;
    border: 1px solid var(--border-light);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method i {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--accent);
}

.contact-method strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method a,
.contact-method span {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--accent);
}

.social {
    display: flex;
    gap: 16px;
}

.social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
}

.social a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Contact Form */
.contact-form {
    background: var(--primary);
    padding: 32px;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--primary-light);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.form-status {
    margin-top: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.form-status.success {
    color: var(--accent);
}

.form-status.error {
    color: #ff6b6b;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 56px 0 32px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-nav {
    margin: 32px 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.75rem;
    opacity: 0.6;
}

.copyright {
    margin-top: 16px;
}

/* Service / Skill Badge */
.service-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-left: 12px;
    vertical-align: middle;
}

.service-badge.limited {
    background: rgba(255, 100, 100, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.service-badge.available {
    background: rgba(100, 255, 218, 0.15);
    color: var(--accent);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.social a.coming-soon {
    opacity: 0.5;
    pointer-events: none;
}

/* <----- Work Title Row with Badge -----> */
.work-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.work-title-row h3 {
    margin-bottom: 0;
}

/* <----- Work Badge -----> */
.work-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.work-badge.progress {
    background: rgba(100, 255, 218, 0.15);
    color: var(--accent);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

/* <----- Disabled Link -----> */
.work-link.disabled-link {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: auto;
}

.work-link.disabled-link:hover {
    gap: 8px;
    opacity: 0.6;
}


/* <----- Process Section -----> */
.process {
    padding: 20px 0;
    background: var(--primary-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 48px 0 60px;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--primary);
    padding: 32px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent);
    color: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.step-timeline {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.process-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.process-footer p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.process-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: var(--transition);
}

.process-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.process-cta i {
    margin-left: 8px;
    transition: var(--transition);
}

.process-cta:hover i {
    transform: translateX(5px);
}



/* <----- Gallery Back Button  -----> */
.gallery-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.gallery-back-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(100, 255, 218, 0.05);
}

/* <----- Lightbox Navigation Arrows  -----> */
/* Lightbox Container */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    border: 2px solid var(--accent);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 8px;
    z-index: 2001;
}

/* Lightbox Navigation*/
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(10, 25, 47, 0.8);
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 0;
    margin: 0;
    line-height: 1;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
    
    .lightbox-close {
        font-size: 30px;
        right: 20px;
        top: 15px;
    }
}