* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a6cf7;
}

.logo span {
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a6cf7;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #4a6cf7 0%, #8a7cf7 100%);
    color: white;
    text-align: center;
    padding: 180px 20px 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: #fff;
    font-weight: 700;
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin: 1rem 0;
}

.btn {
    display: inline-block;
    background: white;
    color: #4a6cf7;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 108, 247, 0.4);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background: #f8f9ff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #333;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4a6cf7;
    margin: 20px auto;
    border-radius: 2px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #eef0ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Skills */
.skills-grid {
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-item span {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.skill-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: #4a6cf7;
    width: 0;
    border-radius: 6px;
    transition: width 2s ease;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: #4a6cf7;
    margin-bottom: 0.5rem;
}

.tags {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #4a6cf7;
    font-weight: 600;
}

/* Contact */
.contact-info {
    text-align: center;
    font-size: 1.2rem;
   
}

.contact-info a {
    color: #4a6cf7;
    text-decoration: none;
    font-size: 12px;
    color: white;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #4a6cf7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover {
    background: #333;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { gap: 1.5rem; }
    .hero h1 { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .profile-img { width: 220px; height: 220px; }
}