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

body {
    font-family: 'Arial', sans-serif;
    background: #0a192f;
    color: #8892b0;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: #0a192f;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64ffda;
}

nav a {
    color: #ccd6f6;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #64ffda;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5% 2rem;
}

/* Section Styling */
section {
    margin-bottom: 5rem;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 2rem;
}

/* About Section */
#about p {
    font-size: 1.2rem;
    color: #ccd6f6;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    background: #64ffda;
    color: #0a192f;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

/* Journey Section */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card {
    background: #112240;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #233554;
    transition: transform 0.3s, border-color 0.3s;
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
}

.journey-card h3 {
    color: #64ffda;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.percentage {
    font-size: 2.5rem;
    color: #ccd6f6;
    font-weight: bold;
    margin: 1rem 0;
}

.subjects-learned {
    color: #64ffda;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.journey-card ul {
    list-style: none;
    text-align: left;
}

.journey-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #8892b0;
}

.journey-card ul li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #64ffda;
    font-size: 1.2rem;
}

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

.project-card {
    background: #112240;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #233554;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
}

.project-card h3 {
    color: #ccd6f6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: #8892b0;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-block;
    background: #64ffda;
    color: #0a192f;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.project-link:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-info {
    background: #112240;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #233554;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ccd6f6;
}

.contact-info a {
    color: #64ffda;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0a192f;
    color: #8892b0;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #233554;
}

/* Responsive */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .navbar {
        flex-direction: column;
    }

    section h2 {
        font-size: 2rem;
    }
}

/* ================= HERO SECTION ================= */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Left Side */
.hero-left {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ccd6f6; /* Using existing theme */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8892b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: #64ffda;
    color: #0a192f;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

/* Right Side */
.hero-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

.hero-image-wrapper {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #64ffda;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-image-wrapper {
        width: 260px;
        height: 260px;
    }
}

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

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

    .hero-image-wrapper {
        width: 220px;
        height: 220px;
    }
}

/* ================= END HERO SECTION ================= */

