 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Roboto', sans-serif;
     line-height: 1.7;
     color: #eee;
     background: linear-gradient(to bottom, #16213e, #0f3460);
     overflow-x: hidden;
}
 h1, h2, h3, h4 {
     font-family: 'Playfair Display', serif;
}
/* NAV */
 nav {
     background: linear-gradient(to bottom, #16213e, #0f3460);
     padding: 1.2em 2em;
     position: sticky;
     top: 0;
     z-index: 100;
     backdrop-filter: blur(12px);
     box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
 nav ul {
     list-style: none;
     display: grid;
     grid-template-columns: auto auto auto auto;
     justify-content: center;
     gap: 3em;
}
 nav li a {
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.05em;
     position: relative;
     transition: color 0.3s, transform 0.3s;
}
 nav li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 3px;
     bottom: -6px;
     left: 0;
     background: #FFD700;
     transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
 nav li a:hover::after, nav li a.active::after {
     width: 100%;
}
 nav li a:hover, nav li a.active {
     color: #FFD700;
     transform: translateY(-2px);
}
 .hamburger {
     display: none;
}
/* HERO */
 .about-hero {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     background: linear-gradient(to bottom, #001f3f, #000033);
}
 #particles-js {
     position: absolute;
     inset: 0;
     z-index: 0;
}
 .hero-content {
     z-index: 2;
     max-width: 860px;
     padding: 0 2em;
}
 .hero-content h1 {
     font-size: 5.4rem;
     line-height: 1.05;
     margin-bottom: 0.5em;
     text-shadow: 0 4px 40px rgba(255,215,0,0.5);
     animation: glow 3s infinite alternate;
}
 @keyframes glow {
     from {
         text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }
     to {
         text-shadow: 0 4px 50px rgba(255,215,0,0.75);
    }
}
 .hero-content p {
     font-size: 1.7rem;
     max-width: 680px;
     margin: 1em auto 2.2em;
}
 .hero-verse {
     font-style: italic;
     font-size: 1.4rem;
     color: #FFD700;
     margin-top: 1.8em;
}
/* MAIN ABOUT AREA */
 .about-main {
     max-width: 1240px;
     margin: 0 auto;
     padding: 5em 2em 8em;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6em;
}
 @media (max-width: 968px) {
     .about-main {
         grid-template-columns: 1fr;
         gap: 4em;
    }
}
/* STORY CARD */
 .about-story {
     background: rgba(22,33,62,0.85);
     padding: 3.5em;
     border-radius: 24px;
     border: 1px solid rgba(255,215,0,0.2);
}
 .about-story h2 {
     font-size: 2.8rem;
     color: #FFD700;
     margin-bottom: 1.2em;
     text-align: center;
}
 .about-story p, .about-story ul {
     font-size: 1.15rem;
     margin-bottom: 1.8em;
     color: #ddd;
}
 .about-story ul {
     padding-left: 1.4em;
}
 .about-story li {
     margin-bottom: 0.9em;
}
/* RIGHT COLUMM */
 .about-values h3 {
     font-size: 2.2rem;
     color: #FFD700;
     margin-bottom: 1.4em;
}
 .value-card {
     background: rgba(255,215,0,0.08);
     padding: 2em;
     border-radius: 20px;
     margin-bottom: 2em;
     transition: transform 0.4s;
}
 .value-card:hover {
     transform: translateY(-8px);
}
 .value-card i {
     font-size: 2.4rem;
     color: #FFD700;
     margin-bottom: 1em;
}
 .value-card h4 {
     color: #FFD700;
     margin-bottom: 0.6em;
}
 .social-links {
     display: flex;
     gap: 1.5em;
     margin-top: 2.5em;
}
 .social-links a {
     font-size: 2.2rem;
     color: #ccc;
     transition: all 0.3s;
}
 .social-links a:hover {
     color: #FFD700;
     transform: scale(1.2);
}
/* FOOTER */
 .about-footer {
     text-align: center;
     padding: 6em 2em 5em;
     background: linear-gradient(to bottom, #0f3460, #001f3f);
}
 .about-footer p {
     font-size: 1.35rem;
     max-width: 620px;
     margin: 0 auto 2em;
}
 .about-footer a {
     display: inline-block;
     background: #FFD700;
     color: #001f3f;
     padding: 1.2em 3.2em;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.25rem;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
 .about-footer a:hover {
     transform: scale(1.06);
     box-shadow: 0 15px 35px rgba(255,215,0,0.45);
}
 .about-journey {
    display: grid;
     grid-template-columns: auto auto;
}
 .journeyHeader {
     font-size: 2.2rem;
     color: #FFD700;
     margin-bottom: 1.4em;
     text-align: center;
}
 .journey-main-card {
    display: flex;
     justify-content: center;
     align-items: center;
}
 .journey-card {
     background: rgba(255,215,0,0.08);
     padding: 2em;
     border-radius: 20px;
     margin-bottom: 2em;
     transition: transform 0.4s;
     width: 40vw;
     height: 60vh;
}
 .journey-card:hover {
     transform: translateY(-8px);
}
 .journey-card i {
     font-size: 2.4rem;
     color: #FFD700;
     margin-bottom: 1em;
}
 .journey-card h4 {
     color: #FFD700;
     margin-bottom: 0.4em;
}
 .journey-card .role {
     font-weight: 700;
     color: #ccc;
}
 .resumeDiv {
     text-align: center;
}
 .download-btn {
     display: inline-block;
     width: 20vw;
     background: linear-gradient(to bottom, #FFD700, #f0c040);
     color: #001f3f;
     padding: 1.2em;
     border-radius: 50px;
     text-align: center;
     font-weight: 700;
     text-decoration: none;
     margin-top: 1em;
     transition: all 0.4s;
}
 .download-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(255,215,0,0.4);
}

 /* MOBILE*/
 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 3.8rem;
    }
     .about-story {
         padding: 2.5em 1.8em;
    }
    .hero-content h1 {
        margin-top: 13vh;
    }
}

 @media (max-width: 600px) {
     .about-journey {
        grid-template-columns: auto;
     }
     .journey-card {
        height: auto;
        width: 90%;
     }
     .download-btn{
        width: auto;
     }
 }

 @media (max-width: 375px) {
    .hero-content h1 {
        margin-top: 50vh;
    }

 }

 @media (max-width: 320px) {
    nav ul {
        grid-template-columns: auto auto auto;

    }

 }
