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

.container{
    display:flex;
    align-items: center;
    gap: 20px;
}
.container img{
    width: 250px;
    height: auto;
    margin-top: 120px auto 20px auto
}
.text-content{
    flex: 1;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0e0c0c;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(87, 136, 205, 0.964);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(213, 165, 165, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

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

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sections */
section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Home Section */
#home {
    background: linear-gradient(135deg, #ffffff 0%, #0a0a0a 100%);
    color: rgb(250, 245, 245);
    text-align: center;
}

.home-content {
   display: flex;
    align-items: center;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.715);
    box-shadow: 0 20px 40px rgba(110, 105, 105, 0.3);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.home-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.home-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* About Section */
#about {
    background: #f8f9fa;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #607a94;
}

/* Skills Section */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#skills h2 {
    background: white;
}

.skills-content {
   display: flex;
    gap: 2rem;
    text-align: center;
}



 
+

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.skill-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.skill-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #2c3e50 0%, #ffffff 100%);
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
   
}
.btn{
    background-color:rgba(87, 136, 205, 0.964);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
   
}

.btn {
   
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .home-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-text h1 {
        font-size: 2rem;
    }

    .profile-img {
        width: 250px;
        height: 250px;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}