html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Dela Gothic One', system-ui;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 5rem;
    list-style: none;
    background: rgba(20, 20, 20, 0.7);
    padding: 1.2rem 4rem;
    border-radius: 45px;
    position: relative;
    backdrop-filter: blur(10px);
}

nav ul::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 45px;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
    font-family: 'Dela Gothic One', system-ui;
    opacity: 0.9;
}

nav a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100%;
    padding: 8rem 2rem 4rem;
    position: relative;
    gap: 3rem;
}

/* Background Effects */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Dela Gothic One', system-ui;
}

.role {
    text-align: center;
    margin-bottom: 2rem;
}

.role h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-family: 'Dela Gothic One', system-ui;
}

.blue-text {
    color: #007bff;
}

.white-text {
    color: white;
}

/* Tech Stack Section */
.tech-stack {
    margin-top: 1rem;
    text-align: center;
}

.tech-stack h3 {
    margin-bottom: 1.5rem;
    color: #666;
    font-family: 'Dela Gothic One', system-ui;
}

.tech-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    margin: 1rem 0 3rem;
    background: rgba(30, 30, 30, 0.95);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Dela Gothic One', system-ui;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 30px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: rgba(40, 40, 40, 0.95);
    transform: translateY(-2px);
    color: white;
}

.Experience{
    display: flex;
    flex: 1 0 40%;
}

.info-sections {
    display: flex;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.experience-section {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience-content .number {
    font-size: 8rem;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.experience-content .text {
    font-size: 4rem;
    color: white;
    line-height: 1.2;
}

.blue-curve {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid #007bff;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.about-section {
    flex: 1;
}

.about-content {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0.9;
}

.current-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
    width: 2rem;
}

.info-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.info-item a {
    color: #007bff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-item a:hover {
    opacity: 0.8;
}

.info-item strong {
    color: #007bff;
    font-weight: normal;
}

/* Update tech icons styles */
.tech-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.tech-icons img:hover {
    transform: scale(1.2);
}

/* Project Showcase Section */
.project-showcase {
    width: 100%;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.project-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.project-text {
    flex: 1;
    max-width: 500px;
    text-align: right;
    padding-right: 2rem;
}

.project-title {
    font-size: 4rem;
    color: #00ff84;
    margin-bottom: 2rem;
    font-family: 'Dela Gothic One', system-ui;
    text-align: right;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: right;
}

.project-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.app-screenshot {
    width: 220px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-10px);
}

/* Add a subtle gradient background */
.project-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 132, 0.1), transparent 60%);
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .project-content {
        flex-direction: column;
        text-align: center;
    }

    .project-text {
        text-align: center;
        padding-right: 0;
    }

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

    .project-description {
        text-align: center;
    }

    .project-images {
        flex-wrap: wrap;
    }
    
    .app-screenshot {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 3rem;
    }
    
    .project-images {
        gap: 1rem;
    }
    
    .app-screenshot {
        width: 200px;
    }
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.contact-content {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    max-width: 600px;
    width: 100%;
}

.contact-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-title {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #007bff;
    width: 2.5rem;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info a,
.contact-info p {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-sections {
        flex-direction: column;
        gap: 3rem;
    }

    .experience-section, .about-section {
        width: 100%;
    }

    .blue-curve {
        width: 300px;
        height: 300px;
        top: -50px;
        left: -50px;
    }

    nav ul {
        padding: 1rem 3rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    .role h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        text-align: center;
    }

    .role h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 6rem;
    }

    nav ul {
        gap: 3rem;
        padding: 0.8rem 2rem;
    }

    nav a {
        font-size: 1.1rem;
    }

    .experience-content .number {
        font-size: 6rem;
    }

    .experience-content .text {
        font-size: 3rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .contact-content {
        padding: 2rem;
        margin: 1rem;
    }

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

    .contact-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .role h2 {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 2rem;
        padding: 0.8rem 1.5rem;
    }

    nav a {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .experience-content .number {
        font-size: 5rem;
    }

    .experience-content .text {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1rem;
    }

    .info-item {
        gap: 0.8rem;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1rem;
    }

    .contact-info a,
    .contact-info p {
        font-size: 0.9rem;
    }

    .tech-icons img {
        width: 32px;
        height: 32px;
    }
} 