
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #DDDADAF0;
      color: #333;
    }
    /* --- Hero Image --- */
    .hero {
      width: 100%;
      height: auto;
    }
    .hero img {
      width: 100%;
      display: block;
    }

    /* --- Navbar --- */
    nav {
      position: sticky;
      top: 0px;
      background: #DDDADA;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      z-index: 10;
    }
    .nav-links {
      display: flex;
      gap: 20px;
      font-size: 14px;
    }

    .nav-links a {
      text-decoration: none;
      color: #333333;
      font-weight: 600;
    }

    /* --- Menu Icon --- */
    .menu-icon {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;
      height: 20px;
      cursor: pointer;
    }

    .menu-icon div {
      height: 3px;
      background-color: #333;
      border-radius: 2px;
    }

.designs {
  padding: 40px 20px;
  text-align: center;
}

.design-item {
  display: inline-block;
  margin: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
}

.design-item h2 {
  font-size: 16px;
  margin-bottom: 10px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-track img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.carousel-dots span {
  height: 10px;
  width: 10px;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots span.active {
  background-color: #6D6A6A;
}
/* --- Footer --- */
    footer {
      background: #f1f1f1;
      padding: 20px;
      text-align: center;
    }

    footer div, a{
      text-decoration: none;
      margin: 10px 20px;
    }
    @media (max-width: 600px) {
      .nav-links {
        display: none;
      }
    }
    
    
    /* सर्विसेज स्टाइल*/
    .links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.links div {
  flex: 1 1 100px;
  max-width: 150px;
}

.links a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
}

.links a span:first-child {
  background-color: #f0f0f0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.links a span:last-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.links a:hover span:first-child {
  transform: scale(1.1);
  background-color: #ddd;
}

/* Desktop responsiveness */
@media screen and (min-width: 768px) {
  .links div {
    max-width: 200px;
  }
  #B1A5A5
  .links a span:first-child {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  
  .links a span:last-child {
    font-size: 16px;
  }
}
.bio{
  margin: 10%;
  padding: 10px;
  font-weight: 500;
  font-size: 18px;
}
.bio div {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.bio div span {
  font-size: 18px;
  line-height: 1.5;
  flex-shrink: 0;
}
.contact{
  margin: 8%;
  margin-top: 50px;
  padding: 15px;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
  border: 1px solid #C9BBBB;
  border-radius: 5%;
  background-color: #CCC4C4;
}
.contact p{
  margin-bottom: 20px;
}
footer{
  background-color: #D1CDCD;
  border-top: px solid #9D9292;
  font-size: 16px;
  padding: 0px;
  padding-top: 20px;
}
footer div, a{
 margin-bottom: 20px;
font-weight: 500;
color: #686565;
}
footer p{
  border-top: 1px solid #7E6E6E4A;
  padding: 15px;
}

/* menu css*/
#sideMenu {
  position: fixed;
  top: 0;
  right: -50%; /* Hide initially */
  width: 50%;
  height: 100%;
  background-color: #f4f4f4;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

#sideMenu ul {
  list-style: none;
  padding: 60px 0 0 0;
}

#sideMenu ul li {
  margin: 20px 0;
}

#sideMenu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
}

.close-btn {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}