* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5e6ff 0px, #ffe6f0 100%);
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.top-bar {
    height: 8px;
    background: linear-gradient(90deg, #d4a5ff, #ffa5d4, #a5d4ff);
    animation: slideInTop 0.5s ease-out;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0px;
    margin-bottom: 50px;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-btn {
    color: #8b5a9f;
    text-decoration: none;
    padding: 12px 30px;
    background-color: #f0e6ff;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-btn:hover {
    background-color: #d4a5ff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(212, 165, 255, 0.4);
}

main {
    max-width: 1000px;
    margin: 0px auto;
    padding: 0px 30px 60px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-wrapper {
    margin-bottom: 25px;
    display: inline-block;
    animation: rotateIn 1s ease-out;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.main-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0px 10px 30px rgba(139, 90, 159, 0.3);
    object-fit: cover;
    transition: all 0.4s ease;
}

.main-photo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0px 15px 40px rgba(139, 90, 159, 0.5);
}

.main-title {
    font-size: 42px;
    color: #8b5a9f;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.personal-info,
.skills-area,
.contact-area {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.personal-info h2,
.skills-area h2,
.contact-area h2 {
    font-size: 26px;
    color: #8b5a9f;
    margin-bottom: 25px;
    text-align: center;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #faf5ff;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0px 5px 15px rgba(139, 90, 159, 0.2);
    background-color: #f0e6ff;
}

.info-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 13px;
    color: #999999;
    text-transform: uppercase;
}

.info-value {
    font-size: 20px;
    color: #8b5a9f;
    font-weight: bold;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #d4a5ff, #ffa5d4);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(212, 165, 255, 0.3);
    transition: all 0.3s ease;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.skill-tag:hover {
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0px 6px 20px rgba(212, 165, 255, 0.5);
}

.contact-details {
    text-align: center;
}

.contact-details p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #faf5ff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-details p:hover {
    background-color: #f0e6ff;
    transform: scale(1.05);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    font-size: 48px;
    color: #8b5a9f;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-layout {
 
    margin-bottom: 50px;
    
    animation: fadeInUp 0.8s ease-out;
}

.photo-container {
    flex-shrink: 0;
}

.about-photo {
    width: 250px;
    height: 280px;
    border-radius: 20px;
    border: 6px solid #ffffff;
    box-shadow: 0px 10px 30px rgba(139, 90, 159, 0.3);
    object-fit: cover;
    transition: all 0.4s ease;
}

.about-photo:hover {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0px 15px 40px rgba(139, 90, 159, 0.5);
}

.details-container {
   
    width: 500px;
    gap: 20px;
}

.detail-block {

    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    gap: 25px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
width: 200%;
height: auto;
align-content: left;

}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(139, 90, 159, 0.2);
}

.detail-box h3 {
    font-size: 14px;
    color: #999999;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.detail-box p {
    font-size: 20px;
    color: #8b5a9f;
    font-weight: bold;
}

.skills-section-about {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: center;
}

.skills-section-about h2 {
    font-size: 28px;
    color: #8b5a9f;
    margin-bottom: 30px;
}

.skills-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: bottom;
}

.skill-pill {
    background: linear-gradient(135deg, #d4a5ff, #ffa5d4);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0px 4px 15px rgba(212, 165, 255, 0.3);
    transition: all 0.3s ease;
}

.skill-pill:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0px 6px 25px rgba(212, 165, 255, 0.5);
}

.text-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-left: 200px;
}

.text-box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px rgba(139, 90, 159, 0.2);
}

.text-box h2 {
    font-size: 24px;
    color: #8b5a9f;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
    }
    
    .detail-block {
        grid-template-columns: 1fr;
    }
    
    .text-sections {
        grid-template-columns: 1fr;
    }
}
