* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #fafafa;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #888888;
    --accent: #e8d5b7;
    --accent-hover: #d4c4a8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--darker-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(232, 213, 183, 0.3); }
    50% { box-shadow: 0 0 30px rgba(232, 213, 183, 0.6); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-fast);
    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-section {
    margin-top: 60px;
}

.hero-video-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 2rem 2rem;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 2rem;
}

.hero-tagline {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-white);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-bio {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-white);
    font-weight: 300;
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-portfolio-btn,
.hero-resume-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border-radius: 50px;
    min-width: 160px;
}

.hero-portfolio-btn {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.hero-portfolio-btn:hover {
    background: var(--accent);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 213, 183, 0.3);
    animation: pulse 2s infinite;
}

.hero-resume-btn {
    border: 2px solid var(--text-white);
    color: var(--darker-bg);
    background: var(--text-white);
}

.hero-resume-btn:hover {
    background: transparent;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite, fadeIn 1s ease 1s forwards;
    opacity: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Intro Section */
.intro-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 400;
}

.intro-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* About Section */
.about-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-portrait {
    width: 100%;
}

.portrait-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    filter: sepia(30%) contrast(1.1);
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-line {
    width: 60px;
    height: 2px;
    background: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-bio p,
.about-approach p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Education Section */
.education-section {
    background: var(--light-bg);
    padding: 0 2rem 6rem;
}

.education-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 4rem;
}

.education-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.education-intro p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.education-details {
    display: flex;
    flex-direction: column;
}

.education-item {
    margin-bottom: 2rem;
}

.education-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.education-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.education-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 1.5rem 0;
}

/* Work Section */
.work-section {
    background: var(--darker-bg);
    padding: 6rem 2rem;
    min-height: 100vh;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.work-item {
    display: flex;
    flex-direction: column;
}

.work-year {
    font-size: 0.9rem;
    color: var(--text-white);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.work-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}

.work-thumbnail:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-4px);
}

.work-item:hover .work-title {
    color: var(--accent);
    transform: translateX(5px);
    transition: var(--transition-fast);
}

.work-item:hover .work-year {
    opacity: 1;
    transform: scale(1.1);
}

.work-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.youtube-fallback a:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Custom YouTube Player Styles */
.youtube-player {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.youtube-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-player:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 8px;
}

.youtube-player:hover .play-button {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    animation: pulse 1.5s infinite;
}

.youtube-player:hover img {
    filter: brightness(1.1) contrast(1.2);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-player:hover .video-overlay {
    opacity: 1;
}

.watch-youtube-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.watch-youtube-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.work-synopsis {
    font-size: 0.95rem;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.work-credits {
    margin-top: auto;
}

.work-credits p {
    font-size: 0.85rem;
    color: var(--text-white);
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.work-credits strong {
    font-weight: 600;
    opacity: 1;
}

/* Articles Section */
.articles-section {
    background: var(--dark-bg);
    padding: 6rem 2rem;
    min-height: 100vh;
}

.articles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.article-item {
    display: flex;
    flex-direction: column;
}

.article-image {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 1.5rem;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.article-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.article-author {
    font-size: 0.85rem;
    color: var(--text-white);
    opacity: 0.7;
    margin-bottom: 0.3rem;
    font-style: italic;
}

.article-category {
    font-size: 0.85rem;
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-description {
    font-size: 0.95rem;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-white);
    background: transparent;
    color: var(--text-white);
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: var(--text-white);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.article-item:hover .article-title {
    color: var(--accent);
    transform: translateX(3px);
    transition: var(--transition-fast);
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Accolades Section */
.accolades-section {
    background: var(--darker-bg);
    padding: 6rem 2rem;
}

.accolades-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.laurels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.laurel-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    filter: brightness(0.9) contrast(1.1);
    cursor: pointer;
    border-radius: 8px;
    padding: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.laurel-img:hover {
    transform: scale(1.05) translateY(-4px);
    filter: brightness(1) contrast(1.2);
    box-shadow: var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.testimonial-item:hover .testimonial-name {
    color: var(--accent);
}

.testimonial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.laurel-img[data-certificate]:hover {
    cursor: pointer;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0 2rem 6rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(232, 213, 183, 0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.05;
    animation: shimmer 20s linear infinite;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(232, 213, 183, 0.2);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.testimonial-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.testimonial-content {
    text-align: center;
    flex: 1;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
}

.testimonial-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.testimonial-title {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin-top: 1rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    bottom: -10px;
    right: -5px;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
}

</div>
    </section>

    <!-- Contact Section -->
.contact-section {
    min-height: 100vh;
    position: relative;
}

.contact-video-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.contact-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-thanks {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
}

.contact-info {
    text-align: right;
}

.contact-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 1rem;
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.contact-email:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .work-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accolades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .about-container,
    .education-container {
        grid-template-columns: 1fr;
    }
    
    .accolades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-item {
        padding: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-title,
    .education-title,
    .section-title {
        font-size: 2rem;
    }
    
    .work-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .accolades-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-thanks {
        font-size: 2.5rem;
    }
}

/* Certificate Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ccc;
}

/* Developer Credit */
.developer-credit {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.8rem;
    text-align: center;
    z-index: 100;
}

.developer-credit p {
    color: #fff;
    font-size: 0.85rem;
    margin: 0;
}

.developer-credit a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #ccc;
}

/* Additional Mobile Responsive Styles */
@media (max-width: 968px) {
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-portfolio-btn,
    .hero-resume-btn {
        width: 100%;
    }
    
    .intro-content,
    .about-container,
    .education-container {
        gap: 2rem;
    }
    
    .work-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .laurels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .laurel-img {
        max-width: 150px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-thanks {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        margin-top: 50px;
    }
    
    .hero-video-container {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-overlay {
        padding: 6rem 1rem 4rem;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-buttons {
        margin: 0 auto;
    }
    
    .intro-section,
    .about-section,
    .work-section,
    .articles-section,
    .accolades-section {
        padding: 4rem 1rem;
    }
    
    .intro-title,
    .education-title,
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .intro-image {
        height: 250px;
    }
    
    .work-grid,
    .articles-grid {
        gap: 2rem;
    }
    
    .work-item {
        padding: 0;
    }
    
    .article-item {
        padding: 0;
    }
    
    .laurels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .laurel-img {
        max-width: 120px;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonial-item {
        text-align: center;
        align-items: center;
    }
    
    .testimonial-image {
        margin: 0 auto 1rem;
    }
    
    .contact-thanks {
        font-size: 2.5rem;
    }
    
    .contact-name {
        font-size: 1.2rem;
    }
    
    .developer-credit {
        padding: 0.6rem;
    }
    
    .developer-credit p {
        font-size: 0.75rem;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-close {
        top: -40px;
        font-size: 30px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link::after {
        display: none;
    }
    
    .hero-portfolio-btn:hover,
    .hero-resume-btn:hover,
    .read-more-btn:hover,
    .laurel-img:hover {
        transform: none;
    }
    
    .nav-link:hover,
    .contact-email:hover,
    .developer-credit a:hover {
        color: inherit;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
