/* About Section Styles */
#about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.about-left {
    flex: 0 0 300px;
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 280px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #2c3e50;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.about-right {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
}

.skills-section {
    margin-top: 30px;
}

.skills-section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.skill-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-item i {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 10px;
}

.skill-item span {
    display: block;
    font-size: 0.9rem;
    color: #2c3e50;
}

.cta-section {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #3498db;
    color: white;
}

.primary-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.secondary-btn:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-left {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .about-img {
        max-width: 200px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
#about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#about h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1a73e8;
    border-radius: 2px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid #ffffff;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    text-align: justify;
    margin-bottom: 1rem;
}

.skills-container {
    margin-top: 2rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.skills-container h3 {
    color: #1a73e8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.skills-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1a73e8;
    border-radius: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.skill-item {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-color: #1a73e8;
}

.skill-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
    transition: color 0.3s ease;
}

.skill-item:hover .skill-icon {
    color: #0d47a1;
}

.skill-item p {
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
    }

    .about-img {
        margin: 0 auto;
        max-width: 250px;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text p {
        text-align: center;
    }

    .skills-container h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}