@import url(design_system.css);

.about_sec {
    display: grid;
    height: auto;
    justify-items: center;
    align-items: center;
    margin-top: 15vh;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: var(--container-padding);
}

.about_image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about_image .icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.about_image .icons a {
    width: 24px;
    height: 24px;
    opacity: 1;
    transition: transform 0.3s ease;
}

.my_details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 85%;
}

.experience_sec {
    max-width: var(--max-width);
    margin: 80px auto;
    padding: var(--container-padding);
}

.experience_sec h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--heading_one);
    font-weight: 700;
}

.exp_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.exp_item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.exp_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.exp_title h3 {
    font-size: 22px;
    color: var(--heading_one);
    margin-bottom: 5px;
}

.exp_title span {
    color: var(--primary_color);
    font-weight: 500;
}

.exp_date {
    font-size: 14px;
    color: #666;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 50px;
    white-space: nowrap;
}

.exp_content ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.exp_content ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.exp_content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary_color);
}

@media screen and (max-width: 1024px) {

    .exp_grid,
    .proj_grid,
    .tools_grid {
        grid-template-columns: 1fr !important;
    }
}

.tools_sec {
    max-width: var(--max-width);
    margin: 80px auto;
    padding: var(--container-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 80px;
}

.tools_sec h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--heading_one);
    font-weight: 700;
}

.tools_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tool_category h3 {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.tool_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tool_list span {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.tool_list span:hover {
    background: var(--primary_color);
    color: #fff;
    border-color: var(--primary_color);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 136, 255, 0.15);
}

.projects_sec {
    max-width: var(--max-width);
    margin: 80px auto;
    padding: var(--container-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 80px;
}

.projects_sec h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--heading_one);
    font-weight: 700;
}

.proj_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.proj_item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.proj_item h3 {
    font-size: 20px;
    color: var(--heading_one);
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.proj_content ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.proj_content ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.proj_content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary_color);
    font-weight: bold;
}

@media screen and (max-width: 768px) {

    .about_sec,
    .exp_grid,
    .proj_grid,
    .tools_grid {
        grid-template-columns: 1fr !important;
    }

    .about_sec {
        padding: 0 20px;
        margin-top: 5vh;
        gap: 40px;
    }

    .exp_header {
        flex-direction: column;
        gap: 10px;
    }
}