body {
  font-family:'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  background-color: rgb(241, 222, 173);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #7c4204;
  color: rgb(241, 222, 173);
  flex-wrap: wrap;
  
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.name {
  font-size: 1.9rem;
  font-weight: bold;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
}

.box {
  list-style: none;
  display: flex;
  gap: 50px;
}

.box li {
  cursor: pointer;
  padding: 8px 12px;
  transition: 0.3s;
  font-size: 20px;
  background-color: rgb(241, 222, 173);
  color: #7c4204;
  width: 5.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.box li:hover {
  background-color: rgb(75, 114, 221);
  border-radius: 5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: rgb(241, 222, 173);
  border-radius: 2px;
}

.about1 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  gap: 20px;
  box-sizing: border-box;
}

.img1 {
  background-color: aliceblue;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35.5rem;
  height: 17rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}


.info1 {
  width: 40rem;
  text-align: justify;
  font-size: 20px;
  line-height: 1.6;
}

.info1 p{
    font-size: 20px;
    line-height: 1.6;
}


.project-gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
}

.project-gallery img {
    height: 160px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

.project-gallery::-webkit-scrollbar {
    height: 8px;
}

.project-gallery::-webkit-scrollbar-track {
    background: transparent;
}

.project-gallery::-webkit-scrollbar-thumb {
    background: rgb(241, 222, 173); 
    border-radius: 10px;
    box-shadow: 0 0 10px #042405, 0 0 20px #7c4204;
    transition: background 0.3s;
}

.project-gallery::-webkit-scrollbar-thumb:hover {
    background:rgb(16, 16, 223); 
    box-shadow: 0 0 12px #000000, 0 0 25px #000000;
}
.ku{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 5%;
}
.project-card {
    background-color: #c48e54;
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.2s ease;
    max-width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .box {
    display: none;
    flex-direction: column;
    background: #7c4204;
    position: absolute;
    top: 30px;
    right: 0px;
    padding: 10px;
    width: 200px;
    gap: 15px;
    z-index: 1000;
    border-radius: 10px;
  }

  .box li {
    width: 87%;
    font-size: 18px;
  }

  .active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .about1 {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .img1 {
    width: 100%;
    height: 140px;
  }

  .anjali1 {
    max-width: 95%;
    max-height: 95%;
  }

  .info1 {
    width: 100%;
    font-size: 17px;
    padding-top: 20px;
  }
  .info1 p{
    font-size: 15px;
    line-height: 1.4;
}

.abc {
    flex-direction:column-reverse;
    align-items: center;
    padding: 30px 15px;
  }
.project-gallery img {
        height: 120px;
    }
}
