/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: white;
}

/* Container utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
#header {
  background: #000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.brand h1 {
  font-size: 24px;
  letter-spacing: 2px;
  cursor: pointer;
}

.brand span {
  color: #ff6600;
}

.nav-list ul {
  display: flex;
  list-style: none;
}

.nav-list ul li {
  margin-left: 20px;
}

.nav-list ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-list ul li a:hover {
  color: #ff6600;
}

/* Hamburger menu (for mobile) - you can customize later */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
#hero {
  background-image:url("image/webimg.jpg");
  color: white;
  padding: 100px 0;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

#hero h2 {
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  background: #ff6600;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #e05500;
}

/* About Section */
#about {
  background: skyblue;
  padding: 60px 0;
}

.about.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.col-left,
.col-right {
  flex: 1 1 45%;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  height:100%;
  position: relative;
  margin-top: -20px;
  background-image:url("image/webdev1.jpg");
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-title span {
  color: #ff6600;
}

#about h2 {
  margin: 15px 0;
}

#about p {
  font-size: 1.1rem;
  color: #555;
}

#about ul h1 {
  font-size: 1.2rem;
  color: #222;
  margin-top: 20px;
}

/* Services Section */
#services {
  background: #f0f0f0;
  padding: 60px 0;
}

.services.container {
  text-align: center;
}

.service-top h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.service-bottom {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.service-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 30%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item .icon img {
  width: 60px;
  margin-bottom: 15px;
}

.service-item h2 {
  margin-bottom: 15px;
}

.service-item p {
  color: #555;
}

/* Projects Section */
#projects,
#projects1 {
  background: white;
  padding: 60px 0;
}

.projects.container,
.projects1.container {
  max-width: 1100px;
  margin: auto;
}

.projects-header,
.projects1-header {
  text-align: center;
  margin-bottom: 50px;
}

.all-projects,
.all-projects1 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-item,
.project1-item {
  display: flex;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 45%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-item:hover,
.project1-item:hover {
  transform: translateY(-10px);
}

.project-info,
.project1-info {
  padding: 20px;
  flex: 1;
}

.project-info h1,
.project1-info h1 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.project-info p {
  color: #555;
}

.project-img,
.project1-img {
  flex: 1;
}

.project-img img,
.project1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
#contact {
  background: #f0f0f0;
  padding: 60px 0;
}

.contact.container {
  max-width: 1000px;
  margin: auto;
}

.contact-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-item .icon img {
  width: 50px;
  margin-bottom: 10px;
}

.contact-info h1 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-info h2 {
  color: #555;
  font-weight: 400;
}

/* Footer */
#footer {
  background: #000;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer.container {
  max-width: 1000px;
  margin: auto;
}

.footer .brand h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer .brand span {
  color: #ff6600;
}

.social-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-item img {
  width: 30px;
  filter: invert(100%);
  transition: filter 0.3s ease;
}

.social-item img:hover {
  filter: invert(60%) sepia(100%) saturate(500%) hue-rotate(320deg);
}

/* Responsive */
@media (max-width: 900px) {
  .about.container,
  .service-bottom,
  .all-projects,
  .all-projects1,
  .contact-items {
    flex-direction: column;
    align-items: center;
  }

  .project-item,
  .project1-item,
  .service-item,
  .contact-item,
  .col-left,
  .col-right {
    flex: 1 1 100%;
  }
 
  .nav-list ul {
    display: none;
  }
  .hamburger {
    display: block;
  }
}