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: none;
  margin-top: 50px;
}

.banner h1 {
  font-size: 50px;
  color: rgb(0, 0, 0);
  font-weight: 400;
}

.about {
  margin-top: 0px;
  margin-bottom: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about p {
  width: 1000px;
  text-align: start;
  color: #000000;
  margin-top: 10px;
  font-size: 20px;
}

.grpimg {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.grpimg img {
  width: 100%;

}

.butt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.butt button {
  padding: 15px;
  border: 1px solid #000000;
  background-color: #000000;
  color: white;
  border-radius: 30px;
  width: 200px;
  transition: 0.5s;
}

.butt button:hover {
  background: none;
  color: #000;
  transition: 0.5s;
}

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

.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: 80px;
  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{
    margin-top: 10px;
  }
  .banner h1{
    font-size: 40px;
  }
  .butt{
    flex-direction: column;
    gap:15px;
  }
}