* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  background-color: black;
}

/* Different background colors for clarity */
.club1,
.club2,
.club3 {
  width: 100%;
  /* height: 100vh; */
}

.header {
  background-color: black;
  position: fixed;
  width: 100%;
  height: 15vh;
  display: flex;
  justify-content: space-between;
}
.hd1 {
  width: 10%;
  height: 100%;
  /* background-color: blue; */
}
.logo {
  width: 80%;
  height: 100%;
}
.hd2 {
  height: 100%;
  /* background-color: blueviolet; */
}
nav {
  width: 100%;
  height: 100%;
}
.list-links {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  gap: 30px;
}

li a {
  font-family: "Caveat";
  text-decoration: none;
  color: white;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.2rem 0.8rem;
  display: inline-block;
  border-radius: 8px;
  transition: background-color 0.01s ease-in-out;
}

/* Animate background on hover */
li a:hover {
  animation: bgPulse 1s infinite alternate-reverse;
}

/* Keyframes for background color transition */
@keyframes bgPulse {
  0% {
    background-color: #ce6f1b; /* Red-ish */
  }
  100% {
    background-color: #757478; /* Blue-ish */
  }
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
  background: transparent;
  border: none;
  font-size: 4rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  .list-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 2rem 1rem;
    z-index: 1000;
    gap: 1.5rem;
    height: auto;
  }

  .list-links.show {
    display: flex;
  }

  .list-links li a {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    padding: 0.2rem 0.8rem;
  }

  .hd2 {
    position: static;
  }

  .list-links {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
  }

  .list-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Hero Section */

.hero {
  background-color: black;
  width: 100%;
  padding-top: 15vh;
  height: 100vh;
  color: white;
  display: flex;
  padding-left: 2rem;
  padding-right: 2rem;
}
.left,
.right {
  width: 50%;
  height: 100%;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: start;
}
.right {
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-div {
  display: flex;
  gap: 1rem;
}

.btn-div a {
  background-color: #757478;
  color: white;
  font-size: 1.5rem;
  padding: 0.4rem 0.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  text-decoration: none;
}

.meme-img img {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
}

.wePro {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1rem;
}

.wePro span {
  color: #757478;
  font-size: 1.8rem;
  font-weight: bold;
}

.contact-link {
  color: #757478;
  font-size: 1.6rem;
  font-family: "Caveat";
}
.right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.right img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  /* object-fit: cover; */
}

/* About us  */

.aboutus {
  background-color: black;
  width: 100%;
  padding-top: 15vh;
  /* height: 100vh; */
  padding-left: 2rem;
  padding-right: 2rem;
}

.aboutHeading {
  color: white;
  font-size: 3rem;
  width: fit-content;
  border-bottom: 6px solid #757478;
  font-family: "Caveat", sans-serif;
  margin-bottom: 2rem;
}
.aboutPara {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.line {
  margin-top: 12px;
}

/* Services */

.ourservices {
  background-color: black;
  width: 100%;
  padding-top: 15vh;
  /* height: 100vh; */
  padding-left: 2rem;
  padding-right: 2rem;
}

.services-container {
  display: flex;
  color: white;
  justify-content: center;
  gap: 4rem;
}
.services-container div h4 {
  margin-bottom: 0.9rem;
}

/* Other Services */

.otherservices {
  padding-top: 15vh;
  background-color: black;
  width: 100%;
  /* height: 20vh; */
  padding-left: 2rem;
  padding-right: 2rem;
}
.OSPARA {
  color: white;
  text-align: center;
}

/* FAQ */

.faq {
  background-color: black;
  width: 100%;
  padding-top: 15vh;
  /* height: 80vh; */
  padding-left: 2rem;
  padding-right: 2rem;
}
.questions-cont {
  display: flex;
  width: 100%;
  justify-content: center;
  /* background-color: red; */
}
.questions {
  font-size: 1rem;
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
}
.faq-question {
  color: #757478;
}
.faq-answer {
  font-size: 0.8rem;
}

/* Contact US */

.contactus {
  background-color: black;
  width: 100%;
  padding-top: 15vh;
  padding-left: 2rem;
  padding-right: 2rem;
}

.cta {
  display: flex;
  /* background-color: red; */
  justify-content: space-evenly;
  align-items: center;
}
/* .cta-test-box,.cta-img-box{
  width: 50%;
  height: 100%;
} */

/* .cta-img-box {
  width: 50%;
} */
.cta-img-box img {
  width: 50%;
  height: 50%;
}

label {
  font-weight: bold;
  display: inline-block;
  font-size: 1.3rem;
  color: #757478;
}
.parentLabel {
  margin-bottom: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 5px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /* margin-top: 0.5rem; */
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

input :focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* Textarea Specific Styles */
textarea {
  resize: vertical;
}
.btn--form {
  background-color: #757478;
  color: white;
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* Footer */

.footer {
  padding-top: 15vh;
  background-color: black;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
}
.footer-container {
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: top;
}
.footer-section {
  width: 33.33%;
  padding: 1rem;
  text-align: center;
}
.fl {
  font-size: 1rem;
}
ul {
  list-style: none;
}
.footer-section h3 {
  color: #757478;
}
.footer-bottom {
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 0.8rem;
  background-color: #757478;
}

/* Responsive Styles */

@media (max-width: 1350px) {
  .wePro {
    font-size: 1rem;
  }
  .wePro span {
    color: #757478;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .right img {
    width: 80%;
    height: 70%;
    /* object-fit: cover; */
  }

  .meme-img img {
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
  }
}

@media (max-width: 1100px) {
  .heroheading {
    font-size: 1.8rem;
  }

  .wePro {
    font-size: 10px;
    font-weight: 200;
  }
  .wePro span {
    color: #757478;
    font-size: 1rem;
    font-weight: bold;
  }
}

@media (max-width: 850px) {
  .right {
    display: none;
  }
  .left {
    width: 100%;
    height: 100%;
    /* justify-content: center; */
    align-items: center;
  }

  .wePro {
    font-size: 1rem;
    font-weight: 200;
  }
  .wePro span {
    color: #757478;
    font-size: 1.7rem;
    font-weight: bold;
  }
  .hd1 {
    width: 20%;
    height: 100%;
  }
  .logo {
    width: 80%;
    height: 100%;
  }
  .hd2 {
    height: 100%;
  }
  li a {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .cta-img-box {
    display: none;
  }
}

@media (max-width: 650px) {
  .heroheading {
    font-size: 1.4rem;
  }

  .wePro {
    font-size: 0.6rem;
    font-weight: 100;
  }
  .wePro span {
    color: #757478;
    font-size: 0.8rem;
    font-weight: bold;
  }
  .hd1 {
    width: 25%;
    height: 100%;
  }
  .logo {
    width: 80%;
    height: 100%;
  }
  .hd2 {
    height: 100%;
  }
  .services-container div h4 {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .heroheading {
    font-size: 1.4rem;
  }
  .wePro {
    font-size: 0.5rem;
    font-weight: 100;
  }
  .wePro span {
    color: #757478;
    font-size: 0.6rem;
    font-weight: 0;
  }
  .hd1 {
    width: 30%;
    height: 100%;
  }
  .logo {
    width: 80%;
    height: 100%;
  }
  .hd2 {
    height: 100%;
  }
  .meme-img img {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
  }
  .services-container div h4 {
    font-size: 10px;
  }
}

@media (max-width: 450px) {
  .services-container div h4 {
    font-size: 9px;
  }
  .wePro {
    font-size: 0.5rem;
    font-weight: 100;
  }
  .wePro span {
    color: #757478;
    font-size: 0.6rem;
    font-weight: 0;
  }
}

@media (max-width: 400px) {
  .wePro {
    font-size: 0.5rem;
    font-weight: 100;
  }
  .wePro span {
    color: #757478;
    font-size: 0.6rem;
    font-weight: 0;
  }
  .heroheading {
    font-size: 1.4rem;
  }
  .hd1 {
    width: 40%;
    height: 100%;
  }
  .logo {
    width: 80%;
    height: 100%;
  }
  .hd2 {
    height: 100%;
  }
  .services-container div h4 {
    font-size: 8px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 5vh;
    gap: 1rem;
  }
  .left {
    /* display: block; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 500px) {
  .footaus {
    font-size: 10px;
  }
  .f2 {
    font-size: 10px;
    text-align: left;
  }
  .fl {
    font-size: 10px;
  }
  .footer-section h3 {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
}
