* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: white;
  border: none;
  outline: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
:root {
  --Main-font: "Manrope", sans-serif;
  --primary-bg: rgba(7, 7, 8, 1);
  --secondary-color: rgba(87, 58, 238, 1);
  --primary-font-color: rgba(196, 196, 196, 1);
  --secondary-font-color: rgba(255, 255, 255, 1);
  --main-font-color: rgba(121, 124, 134, 1);
}

body {
  background: var(--primary-bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background-color: var(--primary-bg);
  backdrop-filter: blur(5px);
  padding: 3rem 5%;
  border-bottom: solid 1px rgba(28, 28, 33, 1);
  align-items: center;
  justify-content: center;
  animation: dropIn 1s ease-out forwards;
  z-index: 1000;
}

@keyframes dropIn {
  from {
    transform: translateY(-100px);
    opacity: 0.5;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  z-index: 10000;
}

nav p {
  color: var(--secondary-font-color);
  font-family: var(--Main-font);
  text-transform: uppercase;
  font-size: clamp(20px, 2vw, 40px);
  font-weight: 700;
}

nav p:hover {
  scale: 1.05;
}

nav p:active {
  scale: 0.95;
}

nav ul {
  display: flex;
  gap: 4rem;
  list-style: none;
}

nav a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-font-color);
  font-family: var(--Main-font);
  transition: all 0.3 ease;
  position: relative;
  cursor: pointer;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--secondary-font-color);
  font-size: 18.3px;
}

nav a:active {
  font-size: 17.5px;
}

nav a.active::after {
  width: 100%;
}
nav a:hover::after {
  width: 100%;
}

nav button {
  background: rgba(28, 28, 33, 1);
  border: 3px solid rgba(47, 47, 55, 0);
  color: var(--secondary-font-color);
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  /* width: 148px;
      height: 59px; */
}

nav button:hover {
  background: rgb(45, 45, 53);
  scale: 1.02;
}

nav button:active {
  background: rgb(72, 72, 84);
  scale: 0.95;
}

.hero {
  width: 80vw;
  height: 520px;
  margin-top: 30vh;
  justify-self: center;
  overflow: hidden;
  position: relative;
  padding: 0;
  animation: fadeIn 0.5s 1s linear backwards;
  z-index: 0;
}

.hero img {
  z-index: -1;
  height: 520px;
  width: 80vw;
  position: absolute;
}

.hero-star {
  position: absolute;
  bottom: 90px;
  left: 0;
}
.hero-star img {
  width: 90px;
  height: 90px;
}

.hero-command {
  position: absolute;
  bottom: 25px;
  right: 0;
  width: 175px;
  font-size: 20px;
}
.hero-text h6 {
  color: var(--primary-font-color);
  font-family: var(--Main-font);
  font-weight: bold;
  font-size: 21px;
  /* align-self: self-start; */
  text-transform: capitalize;
}

.hero-text h2 {
  color: var(--secondary-font-color);
  font-family: var(--Main-font);
  font-weight: 600;
  font-size: 2.3rem;
  text-transform: uppercase;
}

.hero-text p {
  color: var(--primary-font-color);
  font-family: var(--Main-font);
  font-weight: lighter;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.6;
}

.hero-text {
  width: 70%;
  background: transparent;
  position: absolute;
  left: 0;
  padding: 0 1px 0 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  top: 0px;
}

.Brands {
  margin-top: 5rem;
  width: 80vw;
  display: flex;
  justify-self: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.til {
  font-family: Manrope;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #797c86;
}
.brand_caro {
  display: flex;
  align-items: center;
  width: 100%;

  justify-content: space-between;
}

.brand_item img {
  width: 200px;
  height: auto;
}

.explore-container {
  margin: 10% 5%;
}

.explore-content {
  width: 80vw;
  justify-self: center;
}

.explore-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: start;
}

.explore-image img {
  width: 100%;
  height: auto;
}

.explore-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.explore-buttons img {
  width: 16px;
  height: 16px;
}

.explore-btn button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #cacace;
  border: none;
  border-radius: 10px;
  border-bottom: 1px solid #2f2f37;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--Main-font);
  padding: 5px 0;
}

.explore-btn button:hover {
  color: var(--secondary-font-color);
}

.explore-buttons h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #cacace;
}

.explore-buttons p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #797c86;
}
.line {
  border: 1px solid #1c1c21;
  margin: 50px 0;
}

.text {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #797c86;
  margin-bottom: 10px;
}

.about-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-text button {
  background: #1c1c21;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 29, 29, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Main-font);
  white-space: nowrap;
}

.about-text h3 {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #797c86;
}

#faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 50px auto;
}

.faq {
  margin: 70px auto 16px auto;
  width: 90%;
}

.accordion {
  transition: all 0.3s ease;
}

.accordion:hover {
  border-color: rgba(128, 128, 128, 0.6) !important;
}

/* Mobile responsive FAQ */

.review {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #62646c;
  margin-top: 10px;
}

/* Testimonials Section */
.testimonial-container {
  margin: 10% 5%;
}

.testimonial-reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: space-between;
}

.testimonial-reviews {
  padding: 30px;
  background: #0e0e10;
  border: 1px solid #1c1c21;
  border-radius: 10px;
}

.testimonial-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-stars img {
  margin: 5px 2px;
  width: 20px;
  height: 20px;
}

.testimonial-text h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #e4e4e6;
  margin-bottom: 5px;
}

.testimonial-text p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #62646c;
}

.testimonial-stars p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #e4e4e6;
  margin-top: 10px;
}

/* Enhanced FAQ Styles */
.questions-text {
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
  border: 1px solid #1c1c21;
  padding: 25px;
  border-radius: 8px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(14, 14, 16, 0.5);
}

.questions-text:hover {
  border-color: #2f2f37;
  transform: translateY(-2px);
}

.questions-text h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #afb0b6;
  margin-bottom: 0;
  transition: color 0.3s ease;
  flex: 1;
  margin-right: 20px;
}

.questions-text:hover h5 {
  color: #e4e4e6;
}

.questions-text-image button {
  background: none;
  border: 1px solid #1c1c21;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.questions-text-image button:hover {
  background: rgba(87, 58, 238, 0.1);
  border-color: var(--secondary-color);
}

.questions-text-image img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.questions-texts-1 {
  width: 100%;
  max-width: 600px;
  padding: 0 10px;
}

.questions-texts {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--primary-bg);
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top footer sections */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 40px;
}

.cta {
  grid-column: span 1;
}

.cta p {
  font-size: 14px;
  color: var(--main-font-color);
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 500;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--secondary-font-color);
  font-weight: 700;
}

.cta button {
  background: var(--secondary-color);
  color: var(--secondary-font-color);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(87, 58, 238, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Main-font);
}

.cta button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 58, 238, 0.4);
}

.cta button:active {
  transform: translateY(0);
}

.footer-links h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--secondary-font-color);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 600;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--primary-font-color);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Bottom footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  font-size: 14px;
  color: var(--main-font-color);
}

.footer-bottom .socials {
  display: flex;
  gap: 20px;
}

.footer-bottom .socials a {
  color: var(--primary-font-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom .socials a:hover {
  color: var(--secondary-font-color);
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom .legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal a {
  color: var(--primary-font-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}

.footer-bottom .legal a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  width: 100%;
  margin-top: 15px;
  font-size: 13px;
  color: var(--main-font-color);
}

.DAMIEN {
  font-size: clamp(3rem, 15vw, 10rem);
  font-family: var(--Main-font);
  color: rgba(121, 124, 134, 0.3);
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  width: 95%;
  font-weight: 600;
  margin: 2rem 0;
}

/* Mobile Menu Styles */
.menu,
.Xmenu {
  display: none !important;
}

.backdrop-overlay {
  display: none;
}

/* AOS Animation Customizations */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Infinite Scroll */
@keyframes scrollleft {
  to {
    left: -250px;
  }
}

.infinite-scroll {
  width: 100%;
  overflow: hidden;
  background: rgba(14, 14, 16, 1);
  border: solid 1px rgba(28, 28, 33, 1);
}

.infinite-scroll ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 43px;
  position: relative;
  width: 100%;
  justify-content: center;
}

.infinite-scroll ul :nth-child(1) {
  animation-delay: calc((30s / 7) * (7 - 1) * -1);
}

.infinite-scroll ul :nth-child(2) {
  animation-delay: calc((30s / 7) * (7 - 2) * -1);
}

.infinite-scroll ul :nth-child(3) {
  animation-delay: calc((30s / 7) * (7 - 3) * -1);
}

.infinite-scroll ul :nth-child(4) {
  animation-delay: calc((30s / 7) * (7 - 4) * -1);
}

.infinite-scroll ul :nth-child(5) {
  animation-delay: calc((30s / 7) * (7 - 5) * -1);
}

.infinite-scroll ul :nth-child(6) {
  animation-delay: calc((30s / 7) * (7 - 6) * -1);
}

.infinite-scroll ul :nth-child(7) {
  animation-delay: calc((30s / 7) * (7 - 7) * -1);
}

.infinite-scroll li {
  position: absolute;
  animation: scrollleft 30s linear infinite;
  left: 100%;
  width: 100%;
  font-size: clamp(14px, 2vw, 18px);
}

.port_img2 {
  display: none;
}
[data-aos] {
  overflow-x: none;
}

@media (max-width: 1100px) {
  nav p {
    font-size: clamp(15px, 2.5vw, 40px);
  }

  nav ul {
    gap: 2rem;
  }

  nav a {
    font-size: 15px;
  }

  nav a:hover {
    font-size: 15.3px;
  }
  nav button {
    font-size: 15px;
    padding: 13px 17px;
  }
  .hero {
    width: 80vw;
    height: 420px;
  }
  .hero img {
    z-index: -1;
    height: 420px;
    width: 80vw;
    position: absolute;
  }
  .hero-text p {
    font-size: 12px;
  }
  .hero-text h2 {
    font-size: 27px;
    text-transform: uppercase;
  }
  .hero-text {
    padding: 0 1px 0 10px;
  }

  .hero-star img {
    width: 75px;
    height: 75px;
    top: 10px;
  }

  .hero-command {
    position: absolute;
    bottom: 17px;
    right: -11px;
    width: 150px;
    font-size: 17px;
  }

  .brand_item img {
    width: 150px;
    height: auto;
  }

  .text {
    font-size: 15px;
  }
  .about-text h3 {
    font-size: 30px;
  }
  .explore-images {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .explore-buttons h5 {
    font-size: 13px;
  }

  .explore-buttons p {
    font-size: 12px;
  }
  .explore-buttons h5 {
    font-size: 11px;
  }

  .explore-buttons p {
    font-size: 10px;
  }
  .line {
    border: 1px solid #1c1c21;
    margin: 30px 0;
  }
}

@media (max-width: 780px) {
  header {
    padding: 2rem 5%;
  }

  nav a {
    font-size: 12px;
  }

  nav a:hover {
    font-size: 12.3px;
  }
  nav button {
    font-size: 12px;
    padding: 9px 11px;
  }

  .infinite-scroll li {
    font-size: 11px;
  }

  .hero {
    height: 320px;
  }
  .hero img {
    z-index: -1;
    height: 320px;
  }

  .hero-text h6 {
    font-size: 15px;
  }

  .hero-text h2 {
    font-size: 20px;
    text-transform: uppercase;
  }

  .hero-text p {
    font-size: 9px;
  }

  .hero-star img {
    width: 55px;
    height: 55px;
    left: 6px;
    top: 30px;
  }

  .hero-command {
    position: absolute;
    bottom: 15px;
    right: -10px;
    width: 120px;
    font-size: 13px;
  }

  .brand_item img {
    width: 110px;
  }

  .til {
    font-size: 11px;
  }

  .footer-links h3 {
    font-size: 14px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }

  .copyright {
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .menu {
    display: block !important;
  }
  nav ul {
    gap: 2rem;
    position: fixed;
    top: 0;
    border: white solid 1px;
    right: -100%;
    height: fit-content;
    padding: 10px 10px 30px 10px;
    margin-top: 25vh;
    border-radius: 20px;
    width: 50vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    transition: all 0.6s ease-in-out;
  }

  nav a.active::after {
    width: 0%;
  }

  nav a.active {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .Xmenu {
    display: flex;
    width: 14%;
    height: 25px;
    align-items: center;
    justify-content: center;
    display: flex !important;
    justify-content: right;
    width: 100%;
  }
  .Xmenu-icon {
    height: 30px;
    width: 30px;
  }

  .backdrop-overlay {
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.526);
    display: none;
  }
  nav a {
    font-size: 15px;
  }

  nav button {
    font-size: 12px;
    padding: 10px 28px;
    position: absolute;
    top: 85vh;
    right: 33%;
    display: none;
  }

  .port_img1 {
    display: none;
  }
  .port_img2 {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero {
    width: 95vw;
    justify-self: center;
    height: 270px;
    overflow: visible;
    margin-top: 7rem;
  }

  .hero img {
    width: 95vw;
    position: absolute;
    height: 270px;
  }

  .hero-command {
    display: none;
  }

  .hero-star {
    display: none;
  }
  .hero-text {
    padding: 0 1px 0 10px;
    width: 100%;
    margin-top: 320px;
  }

  .Brands {
    margin-top: 15rem;
    width: 95vw;
  }
  .brand_item img {
    width: 75px;
  }

  .hero-text h6 {
    font-size: 15px;
    font-weight: 400;
  }
  .hero-text h2 {
    font-size: 25px;
  }

  .hero-text p {
    font-size: 10px;
  }
  .til {
    font-size: 9px;
  }

  .explore-container {
    margin: 8vh 0 0 0;
  }

  .explore-content {
    width: 95vw;
    justify-self: center;
  }

  .about-text h3 {
    font-size: 23px;
  }
  .about-text button {
    padding: 13px 21px;
    font-size: 11px;
    border-radius: 7px;
  }
  .about-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
  }

  .DAMIEN {
    font-size: 4rem;
  }

  .infinite-scroll li {
    font-size: 7.5px;
  }

  .infinite-scroll ul {
    height: 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    font-size: 11px;
    gap: 20px;
    flex-direction: column;
  }

  .copyright {
    font-size: 9px;
  }

  #faq-container {
    grid-template-columns: 1fr;
  }

  [data-aos] {
    overflow-x: none;
  }

  [data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
  }

  [data-aos].aos-animate {
    opacity: 1;
  }

  /* Fix AOS horizontal overflow */
  body,
  html {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  [data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
  }

  [data-aos].aos-animate {
    opacity: 1;
  }

  /* Fix AOS horizontal overflow */
  body,
  html {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
}
