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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff00ff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.nav-logo a:hover {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #e5e7eb;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 255, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 255, 255, 0.08) 50%, transparent 70%);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from { text-shadow: 0 0 15px rgba(0, 255, 255, 0.7); }
    to { text-shadow: 0 0 25px rgba(0, 255, 255, 1), 0 0 35px rgba(0, 255, 255, 0.5); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    border-color: #ff00ff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.profile-container:hover .profile-photo {
    transform: scale(1.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #f3f4f6;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

/* About Section */
.about {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d1d5db;
    line-height: 1.8;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.skill-tag:hover {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(22, 33, 62, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 255, 0.3);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2), 0 0 30px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #1f2937;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}



.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f3f4f6;
}

.project-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: rgba(55, 65, 81, 0.8);
    color: #e5e7eb;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-link:hover {
    color: #a855f7;
}

/* Resume Section */
.resume {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.resume-content {
    max-width: 800px;
    margin: 0 auto;
}

.resume-section {
    margin-bottom: 3rem;
}

.resume-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f3f4f6;
    border-bottom: 2px solid #374151;
    padding-bottom: 0.5rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #374151;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 50%;
}

.timeline-date {
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f3f4f6;
}

.company {
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.education-item {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.education-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f3f4f6;
}

.school {
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.year {
    color: #9ca3af;
    font-size: 0.9rem;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.cert-item {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f3f4f6;
}

.cert-item p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.resume-download {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.contact-item i {
    color: #00ffff;
    font-size: 1.2rem;
    width: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.social-link:hover {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.contact-form {
    background: rgba(31, 41, 55, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #374151;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #374151;
    color: #e5e7eb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

/* Success Message */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}

/* Button Loading State */
#btnSpinner {
    margin-left: 0.5rem;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Project Pages Styles */
.project-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

.project-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.project-hero-subtitle {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.project-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.project-hero-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.project-overview {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-item p {
    color: #e5e7eb;
    font-weight: 500;
}

.project-technical {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.technical-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.tech-icon {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.technical-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.technical-card p {
    line-height: 1.6;
    color: #d1d5db;
}

.project-challenges {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.challenges-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.1);
}

.challenge-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.challenge-item p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.solution {
    background: rgba(0, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #00ffff;
    color: #e5e7eb;
    line-height: 1.6;
}

.project-results {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.results-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.results-list {
    list-style: none;
    padding: 0;
}

.results-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    color: #e5e7eb;
    position: relative;
    padding-left: 2rem;
}

.results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.results-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.project-navigation {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.project-architecture {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.architecture-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.architecture-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.architecture-list {
    list-style: none;
    padding: 0;
}

.architecture-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    color: #e5e7eb;
    position: relative;
    padding-left: 2rem;
}

.architecture-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff00ff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.architecture-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.project-field {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.field-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.field-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.field-list {
    list-style: none;
    padding: 0;
}

.field-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    color: #e5e7eb;
    position: relative;
    padding-left: 2rem;
}

.field-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff00ff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.field-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 255, 0.3);
}

/* Responsive Design for Project Pages */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-hero-title {
        font-size: 2.5rem;
    }
    
    .overview-content,
    .results-content,
    .architecture-content,
    .field-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .overview-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 0.5rem;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #16213e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .skill-tags {
        justify-content: center;
    }

    .certifications {
        grid-template-columns: 1fr;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}
