
#about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(var(--primary-color-rgb), 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(var(--primary-color-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#about .about-title {
    font-family: var(--font-special);
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.about-title span {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-family: var(--font-body);
    line-height: 1.5;
    max-width: 500px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}


/* Profile Section - Centered at Top */
.about-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto 2rem;
    position: relative;
    z-index: 2;
}

.about-profile .profile-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 5px;
    box-shadow: 0 20px 60px rgba(var(--primary-color-rgb), 0.4),
                0 10px 30px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: profileFloat 6s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.about-profile .profile-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 30px 80px rgba(var(--primary-color-rgb), 0.5),
                0 15px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-profile .profile-wrapper::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, var(--primary-color), var(--primary-light), var(--accent-color), var(--primary-color));
    animation: rotate 8s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-profile .myProfile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-color);
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
    transition: filter 0.3s ease;
}

.about-profile .profile-wrapper:hover .myProfile {
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
}

/* Content Section - Centered Below Profile */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-role {
    font-family: var(--font-special);
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-role span {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content .description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* About highlights - 2 Column Grid */
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(var(--bg-color-rgb), 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    border-left: 3px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-highlights li:hover {
    background: rgba(var(--primary-color-rgb), 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.2);
    border-color: rgba(var(--primary-color-rgb), 0.4);
}

.about-highlights li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-highlights li div {
    flex: 1;
}

.about-highlights li strong {
    display: block;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.about-highlights li span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-cta {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 400;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08) 0%, rgba(var(--accent-color-rgb), 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    backdrop-filter: blur(10px);
}

.about-cta strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Experience Stats - Horizontal Row */
.experience-stats {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: rgba(var(--bg-color-rgb), 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.15);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    background: rgba(var(--primary-color-rgb), 0.08);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box .icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(var(--primary-color-rgb), 0.15));
}

.stat-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(var(--primary-color-rgb), 0.25));
}

.stat-box h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.stat-box:hover p {
    color: var(--text-color);
}
/* Old layout styles removed - now using centered layout */

/*


@keyframes animateAbout {
    0% , 100% {
        transform: translateY(0px);

    }50% {
        transform: translateY(7px);
    }
}




.container .left .action {
    margin: 80px 0 0;
}

.action a {
    padding: 13px 27px;
    border: 2px solid #00c3ca;
    color: #F5F5F5;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 33px;
    background-color: #00c3ca;
    transition: 300ms ease;
}

.action a:hover {
    background-color: black;
    color: white;
    border: 2px solid #000;
}






#about .container .right {
    max-width: 560px;
    text-align: left;
} 

.right h2 {
    text-align: left;
    font-size: 29px;
    line-height: 40px;
    color: #646f87;
    font-family: 'Poppins', sans-serif;
}

.right h2 span {
    color: #14d6d6;
}

.right .description {
    margin-top: 20px;
    font-size: 17px;
    line-height: 26px;
    max-width: 560px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}


.right .experience {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.experience .tab {
    background-color: #151a3b;
    color: #F5F5F5;
    padding: 25px 20px;
    width: 180px;
    border-radius: 15px;
    text-align: center;
    cursor: default;
}

.experience .tab .icon {
    color: #14d6d6;
    font-size: 30px;
}

.experience .tab h3 {
    margin-top: 10px;
    font-size: 26px;
    color: #14d6d6;
}

.experience .tab p {
    margin-top: 8px;
    line-height: 24px;
    font-size: 17px;
    font-weight: 500;
}

*/







/* Responsive Design */
@media screen and (max-width: 1200px) {
    #about .about-title {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.1rem;
        max-width: 600px;
    }

    #about .container {
        max-width: 1000px;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    #about .container .left .profile-wrapper {
        width: 260px;
        height: 260px;
    }

    .right h2 {
        font-size: 2rem;
    }

    .right .description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .experience .tab {
        padding: 1.5rem 1rem;
    }

    .experience .tab h3 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 992px) {
    #about {
        padding: 60px 0;
    }

    #about .about-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .about-text {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    #about .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }

    #about .container .left {
        order: 1;
    }

    #about .container .left .profile-wrapper {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .right {
        padding: 2.5rem 2rem;
        order: 2;
    }

    .right h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .right .description {
         text-align: justify;
         font-size: 0.95rem;
         margin-bottom: 2rem;
         line-height: 1.7;
     }

    .right .experience {
        gap: 1rem;
    }

    .experience .tab {
        text-align: center;
        padding: 1.2rem 1rem;
    }

    .experience .tab h3 {
        font-size: 1.4rem;
    }

    .experience .tab p {
        font-size: 0.8rem;
    }
}

/* Tablet landscape - keep 2 columns */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .about-content {
        max-width: 800px;
    }

    .about-highlights {
        gap: 1rem;
    }

    .experience-stats {
        max-width: 800px;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    #about {
        padding: 50px 0;
    }

    #about .about-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .about-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }

    .about-profile .profile-wrapper {
        width: 180px;
        height: 180px;
    }

    .about-content {
        padding: 0 1.5rem;
    }

    .about-role {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .about-content .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-highlights li {
        padding: 1rem;
    }

    .about-highlights li i {
        font-size: 1.3rem;
    }

    .about-highlights li strong {
        font-size: 0.95rem;
    }

    .about-highlights li span {
        font-size: 0.85rem;
    }

    .about-cta {
        font-size: 0.9rem;
        padding: 1.2rem;
    }

    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-box .icon {
        font-size: 1.8rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .stat-box p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    #about {
        padding: 40px 0;
    }
    
    #about .about-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .about-text {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
        line-height: 1.5;
    }

    .about-profile .profile-wrapper {
        width: 160px;
        height: 160px;
    }

    .about-content {
        padding: 0 1rem;
    }
    
    .about-role {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .about-content .description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .about-highlights li {
        padding: 0.9rem;
        gap: 0.7rem;
    }

    .about-highlights li i {
        font-size: 1.2rem;
    }

    .about-highlights li strong {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .about-highlights li span {
        font-size: 0.8rem;
    }

    .about-cta {
        font-size: 0.85rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .stat-box {
        padding: 1.2rem 1rem;
    }
    
    .stat-box .icon {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .stat-box p {
        font-size: 0.8rem;
    }
    
    .experience .tab p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@keyframes profileGlow {
    0% {
        box-shadow: 0 25px 50px rgba(var(--primary-color-rgb), 0.4),
                    0 15px 35px rgba(0, 0, 0, 0.1),
                    0 0 0 1px rgba(255, 255, 255, 0.15),
                    inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 30px 60px rgba(var(--primary-color-rgb), 0.5),
                    0 20px 40px rgba(0, 0, 0, 0.15),
                    0 0 0 1px rgba(255, 255, 255, 0.2),
                    inset 0 3px 6px rgba(255, 255, 255, 0.4);
    }
}