
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
#home { background:url(section.jpg); color: white; }
#about { background: url(section.jpg); color: white;  }
#project { background: url(section.jpg); color: white;  }
#contact { background: url(section.jpg); color: white;}

header {
  background: #222;
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.prema {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rahul img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff9800;
}

.section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.home-container,
.about-container,
.project-container {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1100px;
  flex-wrap: wrap;
}


.home-image img,
.about-image img,
.project-image img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}


.home-content,
.about-content,
.project-content {
  flex: 1;
  min-width: 280px;
}

h1, h2 {
  margin-bottom: 15px;
}

p {
  margin-bottom: 10px;
}


.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e68900;
}

#contact {
  text-align: center;
}


.rahu{
  text-align: center;
  padding: 10px;
  background-color: rgb(0, 79, 143);
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .home-container,
  .about-container,
  .project-container {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .rahul img {
    width: 40px;
    height: 40px;
  }

  .home-image img,
  .about-image img,
  .project-image img {
    width: 100%;
    max-width: 350px;
  }
}

