/* ============================= */
/* GLOBAL BACKGROUND */
/* ============================= */
body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Purple glow */
body::before {
    content: '';

    position: fixed;
    top: -300px;
    left: -300px;

    width: 800px;
    height: 800px;

    border-radius: 50%;

    background: rgba(139, 92, 255, 0.18);

    filter: blur(220px);

    pointer-events: none;
    z-index: -2;
}

/* Blue glow */
body::after {
    content: '';

    position: fixed;
    bottom: -350px;
    right: -350px;

    width: 900px;
    height: 900px;

    border-radius: 50%;

    background: rgba(0, 191, 255, 0.12);

    filter: blur(260px);

    pointer-events: none;
    z-index: -2;
}



/* ============================= */
/* WHO I AM */
/* ============================= */
.about-me-section {
    padding: 4rem 2rem;
}

.about-me-container {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

/* ============================= */
/* IMAGE */
/* ============================= */
.about-me-image {
    position: relative;
}

.about-me-image img {
    width: 100%;
    display: block;

    border-radius: 24px;

    border: 1px solid rgba(139, 92, 255, 0.3);

    box-shadow:
        0 0 20px rgba(139, 92, 255, 0.15),
        0 0 60px rgba(139, 92, 255, 0.08);
}

/* ============================= */
/* CONTENT */
/* ============================= */
.about-me-content {
    text-align: left;
}

.about-me-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #fff;

    margin: 0.5rem 0 1rem;
}

.title-line {
    width: 80px;
    height: 4px;

    background: linear-gradient(
        90deg,
        #8b5cff,
        #00bfff
    );

    border-radius: 50px;

    margin-bottom: 2rem;
}

.about-me-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.9;

    margin-bottom: 1.5rem;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 1000px) {

    .about-me-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-me-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .about-me-section {
        padding: 5rem 1rem;
    }

    .about-me-title {
        text-align: center;
    }

    .title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-me-content {
        text-align: center;
    }
}



/* ============================= */
/* MY JOURNEY */
/* ============================= */
.journey-section {
    padding: 3rem 2rem;
    background: transparent;
}

.journey-container {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.journey-text {
    text-align: left;
}

.journey-title {
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin: 0.5rem 0 1rem;
}

.title-line {
    width: 80px;
    height: 4px;
    margin-bottom: 2rem;

    background: linear-gradient(90deg, #8b5cff, #00bfff);
    border-radius: 50px;
}

.journey-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* CARDS */
.journey-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.journey-card {
    display: flex;
    align-items: center;
    gap: 1.4rem;

    padding: 1.5rem;

    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: 0.3s ease;
}

.journey-card:hover {
    transform: translateX(8px);
    border-color: rgba(139,92,255,0.45);

    box-shadow:
        0 0 20px rgba(139,92,255,0.18),
        0 0 50px rgba(0,191,255,0.08);
}

.journey-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #fff;
    font-size: 1.8rem;

    background: linear-gradient(
        135deg,
        rgba(139,92,255,0.35),
        rgba(0,191,255,0.2)
    );

    border: 1px solid rgba(139,92,255,0.35);

    box-shadow:
        0 0 20px rgba(139,92,255,0.25);
}

.journey-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.journey-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .journey-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .journey-section {
        padding: 5rem 1rem;
    }

    .journey-text {
        text-align: center;
    }

    .title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .journey-card {
        align-items: flex-start;
    }
}


/* ============================= */
/* SKILLS SECTION */
/* ============================= */
.skills-section {
    padding: 3rem 2rem;
}

.skills-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.skills-intro {
    max-width: 700px;
    margin: 0 auto 2rem;

    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* GRID */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* CARD */
.skill-card {
    padding: 0rem 1.5rem;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    backdrop-filter: blur(15px);

    transition: 0.35s ease;
}

.skill-card:hover {
    transform: translateY(-8px);

    border-color: rgba(139,92,255,0.45);

    box-shadow:
        0 0 20px rgba(139,92,255,0.18),
        0 0 50px rgba(139,92,255,0.1);
}

.skill-card i {
    font-size: 3rem;
    color: #8b5cff;

    margin-bottom: 1rem;

    display: block;

    text-shadow:
        0 0 20px rgba(139,92,255,0.5);
}

.skill-card h3 {
    color: #fff;
    margin-bottom: 0.8rem;
}

.skill-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .skills-section {
        padding: 5rem 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================= */
/* FAQ SECTION */
/* ============================= */
.faq-section {
    padding: 4rem 2rem 2rem 2rem;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;

    color: #fff;
    font-size: clamp(2.5rem, 3.4vw, 3rem);
    font-weight: 700;

    text-shadow:
        0 0 20px rgba(139,92,255,0.3),
        0 0 40px rgba(139,92,255,0.15);
}

/* FAQ masonry-style columns */
.faq-grid {
    column-count: 2;
    column-gap: 1rem;
}

.faq-card {
    display: inline-block;
    width: 100%;

    break-inside: avoid;
    margin-bottom: 1rem;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;

    text-align: left;
    overflow: hidden;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition: 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(139,92,255,0.45);
    box-shadow: 0 0 20px rgba(139,92,255,0.14);
}

.faq-card summary {
    cursor: pointer;
    list-style: none;

    padding: 1.3rem 3.5rem 1.3rem 1.5rem;

    color: #fff;
    font-weight: 600;

    position: relative;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary::after {
    content: "+";

    position: absolute;
    right: 1.5rem;
    top: 50%;

    transform: translateY(-50%);

    color: #8b5cff;
    font-size: 1.5rem;
}

.faq-card[open] summary::after {
    content: "−";
}

.faq-card p {
    padding: 0 1.5rem 1.4rem;

    color: rgba(255,255,255,0.72);
    line-height: 1.7;

    margin: 0;
}

/* MOBILE */
@media (max-width: 700px) {
    .faq-section {
        padding: 5rem 1rem;
    }

    .faq-grid {
        column-count: 1;
    }
}