* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
header {
    background: #222;
    padding: 20px;
   
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.logo {
    color: white;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('nauleshraj.png') no-repeat center/cover;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 50px;
}
.hero-text h1 {
    font-size: 50px;
    color: white;
}
.hero-text span {
    color: #00eaff;
}
.hero-text p {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}
.btn {
    padding: 10px 20px;
    background: #00eaff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

/* About Section */
.about {
    padding: 80px 20px;
    text-align: center;
}

/* Projects */
.projects {
    padding: 80px 20px;
    background: #f2f2f2;
}
.project-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.project-card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.project-card a {
    text-decoration: none;
    color: #0077ff;
    font-weight: bold;
}
/* Contact */
.contact {
    padding: 80px 20px;
    text-align: center;
}
.socialmedia {
    padding: 80px 20px;
    background: #f2f2f2;
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}

        .container {
            max-width: 900px;
            margin: 40px auto;
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #007BFF;
            margin-bottom: 10px;
        }
        h1 {
            margin: 10px 0;
            color: #333;
        }
        p {
            line-height: 1.6;
            color: #555;
            text-align: center;
        }
        .section {
            margin-top: 20px;
        }
        .highlight {
            color: #007BFF;
            font-weight: bold;
        }

        /* -social media icons*/
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  
}

.social-icons a {
  text-decoration: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  transition: 0.3s;
}

/* Brand Colors */
.facebook { background: #1877f2; }
.linkedin { background: #0a66c2; }
.instagram { background: #e4405f; }
.twitter { background:url('https://upload.wikimedia.org/wikipedia/commons/6/6f/Logo_of_Twitter.svg');background-size: 42px 43px; }
.youtube { background: url('https://upload.wikimedia.org/wikipedia/commons/b/b8/YouTube_Logo_2017.svg'); }
.whatsapp { background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'); }
.telegram { background:url('https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg'); }
.custom { background: #555; }

/* Hover */
.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.85;
}