/* 
=======================================
    GLOBAL STYLES
=======================================
*/
:root {
    --primary: #1F2937;         /* Charcoal */
    --primary-light: #374151;   /* Dark gray */
    --secondary: #10B981;       /* Emerald */
    --secondary-light: rgba(16, 185, 129, 0.15);
    --accent: #F59E0B;          /* Amber */
    --light: #ffffff;
    --light-gray: #f1f5f9;
    --gray: #e2e8f0;
    --gray-dark: #94a3b8;
    --dark: #1F2937;
    --text: #e2e8f0;
    --text-light: #94a3b8;
    
    /* Other variables remain the same */
    --font-primary: 'Inter', 'Helvetica', sans-serif;
    --font-heading: 'Inter', 'Helvetica', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background-color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 120px 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--light);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--light);
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-outline:hover {
    background-color: var(--light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* 
=======================================
    HEADER STYLES
=======================================
*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -1px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-item:hover {
    opacity: 1;
    color: var(--light);
}

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

.nav-item.active {
    color: var(--accent);
    opacity: 1;
}

.nav-item.active::after {
    width: 100%;
    background-color: var(--accent);
}

.mobile-menu {
    display: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

/* 
=======================================
    HERO SECTION
=======================================
*/
/*
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--primary);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light);
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s forwards;
    opacity: 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light);
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--light);
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

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


/* 
=======================================
    HERO SECTION
=======================================
*/
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--primary);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light);
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s forwards;
    opacity: 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light);
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--light);
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

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

/* 
=======================================
    SECTION TITLES
=======================================
*/
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 5px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 
=======================================
    ABOUT SECTION
=======================================
*/
.about {
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.about-img {
    flex: 1;
    min-width: 350px;
}

.about-img .img-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-img .img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-img img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--light);
    font-weight: 700;
    letter-spacing: -1px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.info-box {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.info-box i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-box h5 {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-box p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--light);
}

/* 
=======================================
    EXPERIENCE SECTION
=======================================
*/
.experience {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.experience::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    perspective: 1000px;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border: 3px solid var(--accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.2);
}

.timeline-item:nth-child(odd)::after {
    right: -11px;
}

.timeline-item:nth-child(even)::after {
    left: -11px;
}

.timeline-content {
    padding: 30px;
    background-color: var(--primary-light);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    border-right: 4px solid var(--accent);
    border-left: none;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: 4px solid var(--accent);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.05);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light);
    font-weight: 700;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--text);
}

.timeline-content .date {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent);
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    position: absolute;
    top: -20px;
}

.timeline-item:nth-child(odd) .timeline-content .date {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-content .date {
    left: 20px;
}

/* 
=======================================
    PROJECTS SECTION
=======================================
*/
.projects {
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    z-index: 0;
}

/* .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
} */

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.project-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--light);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    font-weight: 700;
}

.project-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.tag {
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag:hover {
    background-color: var(--accent);
    color: var(--light);
}

/* 
=======================================
    CONTACT SECTION
=======================================
*/
.contact {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    z-index: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.contact-item {
    padding: 40px 30px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
    font-weight: 700;
}

.contact-item p, .contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 50px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--light);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.1);
}

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

.submit-btn {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}

/* 
=======================================
    FOOTER SECTION
=======================================
*/
footer {
    background-color: var(--primary-light);
    color: white;
    padding: 80px 0 30px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 40px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-text {
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.8;
    color: var(--text);
}

.footer-social {
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
    border-color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    color: var(--text);
}

/* 
=======================================
    RESPONSIVE STYLES
=======================================
*/
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 20px;
        top: 15px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content .date,
    .timeline-item:nth-child(even) .timeline-content .date {
        left: 20px;
        right: auto;
        top: -20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        border-right: none;
        border-left: 4px solid var(--accent);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 30px 0;
        height: 100vh;
        backdrop-filter: blur(10px);
        gap: 2rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-img, .about-text {
        min-width: 100%;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
    }
    
    .info-box, .contact-item {
        min-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}