body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  color: rgb(0, 0, 0);
  font-family: "Cormorant Garamond", serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}
.heading img{
  width:50px;
}
.heading{
  display: flex;
  flex-direction: column;
  gap:15px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.heading h2 {
  text-align: center;
  color: rgb(0, 0, 0);
  margin-top: 30px;
  font-size: 27px;
}

.heading a {
  text-decoration: none;
}

.navs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.navs li {
  list-style: none;
}

.navs li a {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  margin-top: 50px;
}

.banner h1 {
  font-size: 50px;
  color: white;
  font-weight: 400;
  letter-spacing: 50px;
}

.clropts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.clropts img {
  width: 600px;
}

.pro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 200px;
}

.line1 {
  gap: 80px;
  display: flex;
  margin-top: 70px;
}

.line1 img {
  width: 200px;
  border-radius: 25px;
}

.p1 {
  display: flex;
  flex-direction: column;
}

.p1 button {
  margin-top: 10px;
  background: none;
  border: 1px solid rgb(128, 128, 128);
  padding: 15px;
  width:100%;
  color: rgb(128, 128, 128);
  transition: 0.5s;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;

}

.p1 button:hover {
  background-color: #000000;
  transition: 0.5s;
  color: white;
}

footer {
  background-color: #eaeaea00;
  color: #000000;
  margin: 15px;
  border-radius: 30px;
  padding: 35px 20px;
  text-align: center;
  margin-top: 0;
  border: 1.5px solid black;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-section {
  flex: 1;
  margin: 15px;
}

.footer-section h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: 300;
  margin-bottom: 25px;
}

.footer-section p,
.footer-section a {
  color: #000000;
  text-decoration: none;
  font-weight: 200;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 23px;
  justify-content: center;
}

.social-icons a {
  color: #000000;
  font-size: 1.5em;
  transition: color 0.3s;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9em;
}

.footer-logo img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: start;
  margin-left: 30px;
}

.menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

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

.nav-list li {
  margin: 0 15px;
}

@media (max-width: 450px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    width: 100%;
    width:150px;
    border-radius: 20px;
    padding: 10px;
    top: 130px;
    left: 30;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-list.active {
    display: flex;
  }
  .menu{
    font-size: 18px;
    width:100px;
    padding:5px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  .menu:hover{
    background: #000000;
    color:white;
    transition: 0.5s;
  }
  .banner h1{
    font-size: 22px;
    letter-spacing: 10px;
  }
  .banner{
    margin-top: 10px;
  }
  .clropts img{
    width:330px;
  }
  .line1{
    flex-direction: column;
  }
}