* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(37, 37, 37, 0.9);
    padding: 20px 0;
    z-index: 1000;

}

.nav-links {
    display: flex;
    justify-content:flex-end;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4CAF50;
    font-size: 20px;
}

/* Banner Section */
.banner {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(surendra.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    text-align: center;
    color: white;
}


.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Sections Common Styles */
section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 20px;
    
    
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 30px;
}




/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #45a049;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar{
        display: flex;
    }
    .banner{
        background:  linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(/images/mobile.jpg) center/cover;;
        display: flex;
        align-items:end;
        justify-content:end;
        text-align: center;
    }
    
    .mobile-menu {
        display: block;
        text-align: center;
        padding: 15px;
        color: white;
        cursor: pointer;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    section {
        padding: 60px 20px;
    }
}