@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
#home,
#about-us,
#our-impact,
#our-clients,
#faqs,
#contact-us {
  scroll-margin-top: 110px;
}
body {
  background-color: black;
}
.top-nav {
  height: 90px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background-color: black;
  border-bottom: 5px solid #b69121;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  color: white;
  font-family: "DM Serif Display", serif;
  font-size: 40px;
}
.trademark {
  vertical-align: super;
  font-size: smaller;
  margin-left: 2px;
}
.firstpart ol,
.secondpart ol {
  display: flex;
  gap: 20px;
  list-style: none;
}
.firstpart ol a,
.secondpart ol a {
  text-decoration: none;
  color: white;
  font-family: "DM Serif Display", serif;
  font-size: larger;
}
.firstpart ol a:hover,
.secondpart ol a:hover {
  color: #b69121;
  border-bottom: 4px solid #b69121;
  padding-bottom: 2px;
}
.hero-section {
  position: relative;
  height: 100vh; /* Full screen height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Adjust 0.5 to make it darker or lighter */
  z-index: -1;
}
.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border: 2px solid #b69121;
  border-radius: 10px;
}
.hero-content p {
  color: white;
  font-family: "josefin sans", serif;
  font-size: 20px;
}
.hero-content button {
  width: 150px;
  margin: 0 auto;
  padding: 10px;
  color: black;
  font-size: larger;
  font-family: "josefin sans", serif;
  background-color: #b69121;
  border-radius: 10px;
  border: none;
}
.hero-content button:hover {
  background-color: black;
  color: white;
  border: 2px solid #b69121;
  cursor: pointer;
}
.bottom-nav {
  width: 100%;
  height: 60px;
  background-color: black;
  border-top: 4px solid #b69121;
  border-bottom: 4px solid #b69121;
  position: fixed;
  bottom: 0;
  display: none;
  z-index: 1000;
}
.bottom-nav ol {
  height: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  align-items: center;
  list-style: none;
}
.bottom-nav ol li a {
  text-decoration: none;
  color: white;
  font-family: "DM Serif Display";
}
.bottom-nav ol li a:hover {
  color: #b69121;
  padding-bottom: 2px;
  border-bottom: 4px solid #b69121;
}
@media (max-width: 768px) {
  .firstpart,
  .secondpart {
    display: none;
  }
  .hero-content {
    border: none;
  }
  .bottom-nav {
    display: block;
    font-size: small;
  }
}
.key-feature {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid #b69121;
  margin-bottom: 8px;
}
.key-feauture img {
  width: 100%;
}
.key-feature h4 {
  color: white;
  align-self: center;
  padding: 20px;
  font-size: 40px;
  font-family: "DM SERIF DISPLAY ", SERIF;
  -webkit-text-stroke: 0.5px #b69121;
}
.How-we-work {
  width: 100%;
  height: auto;
  border: 20px solid #b69121;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: white;
  padding: 10px;
}
.How-we-work h1 {
  align-self: center;
  -webkit-text-stroke: 0.5px #b69121;
  font-family: "DM SERIF DISPLAY", SERIF;
}
.work-card {
  display: flex;
  justify-content: space-around;
}
.card {
  width: 23%;
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #b69121;
  box-shadow: rgba(255, 255, 255, 0.9);
  font-family: "josefin sans", serif;
}
.card p {
  align-self: center;
}
.card h4 {
  align-self: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .work-card {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .work-card .card {
    width: 99%;
  }
  .How-we-work H1 {
    font-size: 20px;
  }
  .card {
    width: 95%;
  }
}
.premium-client {
  color: white;
  border: 20px solid #b69121;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.premium-client h1 {
  padding: 10px;
  align-self: center;
  -webkit-text-stroke: 0.7px #b69121;
}
.clients-card {
  display: flex;
  width: 100%;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  &:hover .scroll {
    animation-play-state: paused;
  }
}
.clients-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.scroll {
  display: inline-flex;
  flex-shrink: 0;
  gap: 20px;
  padding-right: 20px;
  animation: Scroll-animate 20s linear 0s infinite;
  will-change: transform;
}
@keyframes Scroll-animate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.btm-margin {
  width: 100%;
  height: 60px;
  display: none;
}
@media (max-width: 768px) {
  .btm-margin {
    display: block;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1200;
  justify-content: center;
  align-items: center;
}
.modal-box {
  background-color: black;
  padding: 30px;
  z-index: 1201;
  max-width: 500px;
  width: 90%;
  height: 50vh;
  border: 4px solid #b69121;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 35px;
  cursor: pointer;
  font-weight: 700;
  color: #b69121;
}
.close-btn:hover {
  color: white;

  font-size: 40px;
}
.modal-overlay.show {
  display: flex;
}
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-content img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.modal-content button {
  width: 50%;
  padding: 10px;
  background-color: #b69121;
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  font-size: larger;
  font-family: "josefin sans", serif;
}
.modal-content button:hover {
  cursor: pointer;
  background-color: white;
  color: black;
  border: 2px solid #b69121;
}
.faq-item {
  background-color: white;
  border: 4px solid #b69121;
  border-radius: 20px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: "josefin sans", serif;
  cursor: pointer;
}
.faq-icon {
  font-size: 30px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}
.faq-answer p {
  padding: 10px 20px 18px 20px;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  color: black;
  font-family: "josefin sans", serif;
  border-top: 2px solid black;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.founder-grid {
  display: flex;

  gap: 50px;
}
.founder-card {
  border: 2px solid #b69121;
  background-color: white;
  width: 100%;
  color: black;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 450px;
}
.founder-detail img {
  margin-top: 5px;
  width: 200px;
  height: 200px;
  border-radius: 30px;
  object-fit: cover;
}
.founder-card p {
  padding: 25px;
  font-family: "josefin sans", serif;
  font-size: 18px;
}
@media (max-width: 768px) {
  .founder-grid {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .founder-card {
    height: auto;
    width: 100%;
    padding: 10px;
  }
}
form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  height: 384px;

  width: 95%;
  gap: 15px;
  padding: 15px;
  padding-top: 0;
}
input {
  border-radius: 10px;
  padding: 12px;
  border: 2px solid #b69121;
}
textarea {
  border: 2px solid #b69121;
  border-radius: 10px;
  width: 100%;
  height: 110px;
  padding: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  color: black;
}
input[type="submit"] {
  background-color: black;
  border: none;
  color: white;
  font-family: "jossefin sans", serif;
  font-size: larger;
}
input[type="submit"]:hover {
  cursor: pointer;
  border-bottom: 4px solid #b69121;
  transform: rotate3d(5, 5, 0);
}
.contact-detail {
  margin-top: 15px;
  height: 384px;
  display: flex;
  flex-direction: column;

  width: 95%;
}
.contact-card1 {
  width: 100%;
  display: flex;
  gap: 8px;

  height: 60%;
}
.card-detail1 {
  width: 40%;
  border: 1px solid #b69121;
  border-radius: 10px;
  height: 90%;
  padding: px;
  display: flex;
  flex-direction: column;
}
.card-detail1 h4 {
  font-family: "dm serif display", serif;
  text-align: center;
  padding: 3px;
  margin-top: 5px;
}
.card-detail1 p {
  width: 100%;
  line-height: 25px;
  text-align: left;

  font-family: "josefin sans", serif;
  font-size: larger;
}
.card-detail2 {
  padding: 5px;
  width: 55%;
  border: 1px solid #b69121;
  border-radius: 10px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.card-detail2 p {
  line-height: auto;
  display: flex;
  gap: 10px;
  padding: 10px;
}
.card-detail2 p a {
  font-size: larger;
}
.contact-card2 {
  width: 100%;
  border: 1px solid #b69121;
  height: 35%;
  border-radius: 30px;
}
.contact-card2 iframe {
  width: 100%;
  height: 100%;

  border-radius: 30px;
}

.order-section {
  padding: 60px 20px;
  background-color: black;
  color: white;
}

.order-container {
  max-width: 700px;
  margin: 0 auto;
}

.order-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
}

.order-section form input,
.order-section form textarea {
  background: white;
  color: black;
  outline: none;
}

.site-footer {
  text-align: center;
  padding: 16px 20px;
  color: white;
  font-family: "Josefin Sans", sans-serif;
  border-top: 2px solid #b69121;
  font-size: 11px;
  background-color: black;
}
@media (max-width: 768px) {
  .contact-card1 {
    flex-direction: column;
    margin-bottom: 8px;
  }
  .contact-detail {
    height: auto;
  }
  .contact-card1,
  .contact-card2 {
    height: auto;
  }
  .card-detail1,
  .card-detail2 {
    width: 100%;
  }
}
