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

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #0a7e66;
    --color-primary-light: #118c77;
    --color-primary-dark: #055f50;
    --color-accent: #ff6b5b;
    --color-secondary: #f0f9f8;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-border: #e8e8e8;
}

body {
    font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--color-bg);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 126, 102, 0.3);
}

.icon-btn::after {
    display: none;
}

.resume-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.resume-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 126, 102, 0.4);
}

.resume-btn::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0f9f8 0%, #ffffff 50%, #faf5f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 126, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    margin-bottom: 20px;
    color: var(--color-text);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(10, 126, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 126, 102, 0.4);
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

.hero-profile-pic {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(10, 126, 102, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(10, 126, 102, 0.1);
}

.hero-profile-pic:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(10, 126, 102, 0.25);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffd285 0%, #f6dce9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    transition: transform 0.3s ease;
}

.hero-image .image-placeholder:hover {
    transform: scale(1.02);
}

/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-text);
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.about-text {
    font-size: 20px;
    line-height: 32px;
    color: var(--color-text-light);
    font-weight: 400;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background-color: var(--color-secondary);
    position: relative;
}

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

.skill-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfb 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(10, 126, 102, 0.08);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(10, 126, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.skill-card:nth-child(1) {
    animation-delay: 0.1s;
}

.skill-card:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-card:nth-child(3) {
    animation-delay: 0.3s;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10, 126, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.skill-card:hover::before {
    right: -10%;
    top: -10%;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 126, 102, 0.15);
    border-color: rgba(10, 126, 102, 0.2);
}

.skill-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.skill-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.skill-card:hover .skill-icon-img {
    opacity: 1;
}

.skill-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.skill-description {
    font-size: 16px;
    line-height: 27px;
    color: var(--color-text-light);
    position: relative;
    z-index: 1;
}

/* Upcoming Projects Section */
.upcoming {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.upcoming-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(10, 126, 102, 0.08);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid var(--color-border);
}

.upcoming-card:nth-child(1) {
    animation-delay: 0.1s;
}

.upcoming-card:nth-child(2) {
    animation-delay: 0.2s;
}

.upcoming-card:nth-child(3) {
    animation-delay: 0.3s;
}

.upcoming-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 126, 102, 0.15);
    border-color: var(--color-primary);
}

.upcoming-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.upcoming-project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.upcoming-card:hover .upcoming-project-image {
    transform: scale(1.05);
}

.upcoming-image .image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.upcoming-image .image-placeholder::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -50%;
    right: -50%;
    border-radius: 50%;
    z-index: 0;
}

.upcoming-image .image-placeholder::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -30%;
    left: -10%;
    border-radius: 50%;
    z-index: 0;
}

.upcoming-content {
    padding: 25px;
}

.upcoming-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.upcoming-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.upcoming-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.status-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

a.status-badge {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

a.status-badge:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 126, 102, 0.3);
}

.deadline {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Latest Work Section */
.work {
    padding: 100px 0;
    background-color: var(--color-secondary);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.work-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
}

.work-card:nth-child(1) {
    animation-delay: 0.1s;
}

.work-card:nth-child(2) {
    animation-delay: 0.2s;
}

.work-card:nth-child(3) {
    animation-delay: 0.3s;
}

.work-card:nth-child(4) {
    animation-delay: 0.4s;
}

.work-card:nth-child(5) {
    animation-delay: 0.5s;
}

.work-card:nth-child(6) {
    animation-delay: 0.6s;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-card:hover .work-image {
    box-shadow: 0 12px 40px rgba(10, 126, 102, 0.2);
}

.work-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 300px;
}

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.work-card:hover .project-image {
    transform: scale(1.08);
}

.work-image .image-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: 600;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-image .image-placeholder::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -50%;
    right: -50%;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.work-card:nth-child(2) .work-image .image-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.work-card:nth-child(3) .work-image .image-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.work-card:nth-child(4) .work-image .image-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.work-card:nth-child(5) .work-image .image-placeholder {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.work-card:nth-child(6) .work-image .image-placeholder {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.work-card:hover .work-image .image-placeholder {
    transform: scale(1.08);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 126, 102, 0.95), rgba(255, 107, 91, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(3px);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.overlay-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.work-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.work-category {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    animation: fadeInUp 0.8s ease-out;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--color-secondary);
    color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 4px 12px rgba(10, 126, 102, 0.1);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-family: 'Epilogue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(10, 126, 102, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 126, 102, 0.4);
}

.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(10, 126, 102, 0.3);
}

/* Footer */
.footer {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    text-align: center;
    border-top: 1px solid rgba(10, 126, 102, 0.2);
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer p:hover {
    opacity: 1;
}

/* Project Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background-color: var(--color-bg);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(10, 126, 102, 0.25);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(10, 126, 102, 0.3);
}

.modal-body {
    padding: 40px;
}

.modal-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.modal-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.modal-image .image-placeholder::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -50%;
    right: -50%;
    border-radius: 50%;
}

.modal-details {
    animation: fadeInUp 0.5s ease-out;
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
    letter-spacing: -1px;
}

.modal-category {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-description {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(10, 126, 102, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(10, 126, 102, 0.3);
}

.modal-link:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 126, 102, 0.4);
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-bg);
        width: 100%;
        padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .hero-profile-pic {
        max-width: 100%;
        border-radius: 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .skills-grid,
    .upcoming-grid,
    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about,
    .skills,
    .upcoming,
    .work,
    .contact {
        padding: 60px 0;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .modal-image .image-placeholder {
        height: 250px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-description {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
}
