/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Bebas Neue', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #222;
}

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

.nav-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.nav-logo .logo-text:hover {
    color: #ccc;
}

.nav-items {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icon {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    color: #ccc;
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title-wrapper {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.hero-greeting {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: fadeSlideDown 0.8s ease-out 0.2s backwards;
}

.hero-name {
    margin: 1rem 0;
    animation: fadeSlideDown 1s ease-out 0.4s backwards;
}

.name-text {
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 2rem;
    color: #fff;
    margin: 1.5rem 0;
    letter-spacing: 0.05em;
    animation: fadeSlideDown 1s ease-out 0.6s backwards;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #aaa;
    margin: 1rem 0 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeSlideDown 1s ease-out 0.8s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideDown 1s ease-out 1s backwards;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Bebas Neue', sans-serif;
}

.cta-button.primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.cta-button.primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeSlideDown 1s ease-out 1.2s backwards;
}

.scroll-text {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #666;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #666 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroller-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    opacity: 0.15;
    z-index: 1;
}

.infinite-scroller {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.scroller-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: absolute;
    left: 0;
    animation: scrollLeft 40s linear infinite;
    white-space: nowrap;
}

.scroller-item {
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 6rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-label,
.skills-label,
.projects-label,
.experience-label,
.testimonials-label,
.contact-label,
.social-label,
.gallery-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888 !important;
    margin-bottom: 1.5rem;
    display: inline-block !important;
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    backdrop-filter: blur(10px);
}

.about-label::before,
.skills-label::before,
.projects-label::before,
.experience-label::before,
.testimonials-label::before,
.contact-label::before,
.social-label::before,
.gallery-label::before {
    content: none;
}

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

.about-image {
    position: relative;
    max-width: 400px;
}

.profile-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #333;
    display: block;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #333;
}

.image-text {
    font-size: 6rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.1em;
}

.image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 50%;
    opacity: 0.1;
}

.about-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.about-description {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1em;
}

/* Skills Section */
.skills-section {
    min-height: 100vh;
    background: #000;
    padding: 6rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.skills-title,
.projects-title,
.experience-title,
.testimonials-title,
.contact-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.skill-category {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #222;
    transition: all 0.8s ease;
}

.skill-category:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.category-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #aaa;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateX(10px);
}

.skill-icon {
    font-size: 0.8rem;
    color: #fff;
    opacity: 0.5;
}

.skill-item:hover .skill-icon {
    opacity: 1;
}

/* Projects Section */
.projects-section {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 6rem 2rem;
    position: relative;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.project-card {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    border-radius: 20px;
    border: 1px solid #222;
    overflow: hidden;
    transition: all 0.8s ease;
    cursor: pointer;
}

.project-card:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.project-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

.project-number {
    font-size: 8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.05em;
}

.project-year {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    background: #0a0a0a;
    border-radius: 20px;
    border: 1px solid #333;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.project-description {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    font-size: 0.85rem;
    color: #888;
    padding: 0.4rem 1rem;
    background: #111;
    border-radius: 20px;
    border: 1px solid #222;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    color: #fff;
    border-color: #fff;
    background: #1a1a1a;
}

.project-link {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.project-link:hover {
    transform: translateX(5px);
    color: #ccc;
}

/* Experience Section */
.experience-section {
    min-height: 100vh;
    background: #000;
    padding: 6rem 2rem;
    position: relative;
}

.experience-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.experience-timeline {
    position: relative;
}

.experience-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #000;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.experience-item:hover .marker-dot {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.marker-line {
    width: 2px;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(180deg, #fff 0%, #333 100%);
    margin-top: 0.5rem;
}

.experience-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: #fff;
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.experience-role {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.experience-company {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 0.05em;
}

.experience-period {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    background: #0a0a0a;
    border-radius: 20px;
    border: 1px solid #333;
    white-space: nowrap;
}

.experience-description {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

.achievement-bullet {
    color: #fff;
    font-size: 0.7rem;
    margin-top: 0.3rem;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials-section {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 6rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

/* Gallery Section */
.gallery-section {
    min-height: 100vh;
    background: #000;
    padding: 6rem 2rem;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.gallery-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888 !important;
    margin-bottom: 1.5rem;
    display: inline-block !important;
    text-align: center;
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    backdrop-filter: blur(10px);
}

.gallery-label::before {
    content: none;
}

.gallery-section .gallery-label {
    display: block !important;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.gallery-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    display: block;
    text-decoration: none;
}

.photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.photo-number {
    font-size: 5rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.05em;
    font-family: 'Bebas Neue', sans-serif;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-title {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.1em;
    font-family: 'Bebas Neue', sans-serif;
}

.gallery-note {
    text-align: center;
    padding: 2rem;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid #222;
}

.gallery-note p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Testimonials Container */

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #222;
    position: relative;
    transition: all 0.8s ease;
}

.testimonial-card:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.quote-mark {
    font-size: 4rem;
    color: #222;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 2rem;
    min-height: 140px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    border: 2px solid #333;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: #000;
    padding: 6rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.contact-label {
    color: #888 !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0.5rem 1.5rem;
    display: inline-block !important;
}

.contact-section .contact-label {
    display: block !important;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.contact-label::before {
    content: none;
}

.contact-title {
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-item {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.8s ease;
}

.contact-info-item:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.info-value {
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.info-value.link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-value.link:hover {
    color: #ccc;
    transform: translateY(-2px);
}

.social-links {
    text-align: center;
}

.social-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #888 !important;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    backdrop-filter: blur(10px);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.social-icon {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Resume Section */
.resume-section {
    background: #0a0a0a;
    padding: 4rem 2rem;
    position: relative;
}

.resume-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.resume-card {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 2px solid #222;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: shimmer 3s infinite;
}

.resume-card:hover {
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(255, 255, 255, 0.15);
}

.resume-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.resume-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.resume-description {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
}

.download-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.download-icon {
    font-size: 1.3rem;
    font-weight: bold;
}

.resume-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Scroll Reveal Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Override fade-in for labels - always visible */
.about-label.fade-in,
.skills-label.fade-in,
.projects-label.fade-in,
.experience-label.fade-in,
.testimonials-label.fade-in,
.contact-label.fade-in,
.social-label.fade-in,
.gallery-label.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-items {
        display: none;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-title,
    .skills-title,
    .projects-title,
    .experience-title,
    .testimonials-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-content {
        min-height: auto;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .experience-item {
        grid-template-columns: 40px 1fr;
        gap: 1.5rem;
    }
    
    .marker-dot {
        width: 16px;
        height: 16px;
    }
    
    .experience-card {
        padding: 2rem;
    }
    
    .experience-role {
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {
    .about-section,
    .skills-section,
    .projects-section,
    .experience-section,
    .testimonials-section,
    .gallery-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .photo-number {
        font-size: 3rem;
    }
    
    .resume-section {
        padding: 3rem 1.5rem;
    }
    
    .resume-card {
        padding: 3rem 2rem;
    }
    
    .download-button {
        width: 100%;
        justify-content: center;
    }
}
