body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #f9f9fb;
  color: #333;
}

/* Header */
.main-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-list-item {
  margin: 0 12px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #9b59b6;
  padding: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #9b59b6;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #9b59b6;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.quote-btn,
.quote-btn2 {
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.quote-btn {
  border: 1px solid #cc66da;
  color: #cc66da;
  padding: 8px 15px;
  background: #fff5f2;
}

.quote-btn:hover {
  background: #ff99cc;
  color: white;
}

.boxing {
  background: white;
  margin-top: 70px;
  padding: 80px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 150px;
  height: 170px;
  margin-left: 190px;
  
}

.container5{
  display: flex;
  align-items: flex-start;   
  gap: 24px;               
}

.project-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
  margin: 70px 144px 0 0;    

}
.boxing img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* fits whole image inside */
  border-radius: 8px;
}


