* {
  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;
}

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

.hero-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
  height: 15%;
  width: 40%;
}
.head-text {
  display: flex;
  flex-direction: column;
}

.hero-name {
  font-family: Manrope;
  font-size: 20px;
  text-transform: uppercase;
  color: #797c86;
  font-weight: 600;
}

.hero-name2 {
  font-family: Manrope;
  font-size: 40px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.array {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 24%;
  padding: 0px 5px;
  align-items: center;
  justify-content: space-between;
}
.array-obj {
  background: #0e0e10;
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  height: 80%;
  padding: 0px 25px;
  justify-content: center;
  box-shadow: #ffffff 0px 0px 1px;
}

.ao1 {
  font-family: Manrope;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
}

.ao2 {
  font-family: Manrope;
  font-weight: 400;
  color: #797c86;
  font-size: 13px;
}

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

.hero-command {
  position: absolute;
  bottom: 25px;
  right: 20px;
  width: 175px;
  font-size: 20px;
}

.bio {
  display: flex;
  gap: 10px;
  width: 80vw;
  margin-top: 9rem;
  justify-self: center;
  margin-bottom: 2rem;
  flex-direction: column;
}

.bio h3 {
  font-family: Manrope;
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  color: #797c86;
}

.bio p {
  font-family: Manrope;
  font-weight: 400;
  font-size: 17px;
  color: #797c86;
}

.journey {
  display: flex;
  gap: 10px;
  width: 80vw;
  margin-top: 5rem;
  justify-self: center;
  margin-bottom: 2rem;
  flex-direction: column;
}

.journey-head {
  display: flex;
  flex-direction: column;
}
.jh1 {
  font-family: Manrope;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #797c86;
}

.jh2 {
  font-family: Manrope;
  font-weight: 600;
  font-size: 45px;
  text-transform: uppercase;
  color: #ffffff;
}

.journey-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}

.j-card {
  background: #0e0e10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 230px;
  padding: 30px 30px;
  gap: 15px;
  border-radius: 20px;
}

.journey-cards p:first-child {
  font-family: Manrope;
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  color: #797c86;
}

.journey-cards p:last-child {
  font-family: Manrope;
  font-weight: 400;
  font-size: 15px;
  color: #797c86;
}

.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;
}

.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;
}

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

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

.about-text h3 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 600;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #e4e4e6;
}

.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 button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(63, 63, 63, 0.4);
}

.about-text button:active {
  transform: translateY(0);
}
.line {
  border: 1px solid #1c1c21;
  margin: 50px 0;
}
.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;
}

/* 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);
}

/* 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;
}

.AImg2 {
  display: none;
}

@media (max-width: 1300px) {
  .hero-name {
    font-size: 15px;
  }

  .hero-name2 {
    font-size: 35px;
  }

  .ao1 {
    font-size: 27px;
  }
  .ao2 {
    font-size: 12px;
  }

  .array-obj {
    padding: 0px 20px;
  }

  .hero-command {
    right: 0px;
  }

  .hero-star {
    left: 10px;
  }
}

@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 {
    margin-top: 25vh;
  }

  .hero-name2 {
    font-size: 25px;
  }

  .hero-name {
    font-size: 12px;
  }

  .array-obj {
    padding: 0px 15px;
  }
  .ao1 {
    font-size: 22px;
  }
  .ao2 {
    font-size: 10px;
  }
  .hero-star img {
    width: 75px;
    height: 75px;
    left: -5px;
  }

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

  .about-text h3 {
    font-size: 50px;
    font-weight: 600;
    line-height: 100%;
    font-family: var(--Main-font);
    text-transform: uppercase;
    color: #e4e4e6;
  }

  .DAMIEN {
    font-size: 7.5rem;
  }

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

@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;
  }

  .AImg1 {
    z-index: -1;
    height: 320px;
    width: 80vw;
    position: absolute;
  }

  .hero {
    height: 325px;
    margin-top: 25vh;
  }

  .array-obj {
    padding: 0px 10px;
    border-radius: 15px;
  }
  .array {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 24%;
  }

  .ao1 {
    font-size: 15px;
  }
  .ao2 {
    font-size: 8px;
  }

  .hero-name2 {
    font-size: 18px;
  }
  .hero-name {
    font-size: 9px;
  }
  .hero-star img {
    width: 55px;
    height: 55px;
    left: -5px;
    top: 30px;
  }

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

  .bio p {
    font-size: 13px;
  }

  .bio h3 {
    font-size: 30px;
  }

  .bio {
    margin-top: 6rem;
  }

  .jh1 {
    font-size: 15px;
  }
  .jh2 {
    font-size: 30px;
  }

  .journey-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 40px;
  }

  .about-text h3 {
    font-size: 30px;
  }

  .text {
    font-size: 12px;
  }

  .about-text button {
    padding: 13px 21px;
    font-size: 11px;
    border-radius: 7px;
  }

  .infinite-scroll li {
    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;
  }
  .AImg1 {
    display: none;
  }

  .AImg2 {
    z-index: -1;
    height: 270px;
    width: 100vw;
    position: absolute;
    display: block;
  }

  .hero {
    height: 325px;
    margin-top: 7rem;
    width: 95vw;
    overflow: visible;
  }

  .AImg2 {
    z-index: -1;
    height: 270px;
    width: 95vw;
    position: absolute;
    display: block;
  }

  .hero-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    justify-self: center;
    flex-wrap: wrap;
    gap: 2rem;
    height: 15%;
    margin-top: 300px;
    width: 95%;
  }
  .hero-star {
    display: none;
  }
  .hero-command {
    display: none;
  }
  .hero-name {
    font-size: 20px;
  }
  .hero-name2 {
    font-size: 27px;
  }
  .array {
    display: flex;
    gap: 20px 40px;
    width: 95%;
    height: 24%;
    position: absolute;
    margin-top: 400px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-self: center;
    justify-content: center;
  }
  .array-obj {
    background: #0e0e10;
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    height: 85px;
    padding: 0px 25px;
    width: 43%;
    justify-content: center;
    box-shadow: #ffffff 0px 0px 1px;
  }
  .ao1 {
    font-size: 25px;
  }
  .ao2 {
    font-size: 12px;
  }
  .bio {
    margin-top: 27rem;
    width: 95vw;
  }

  .jh2 {
    font-size: 32px;
  }
  .journey {
    width: 95vw;
  }
  .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;
  }
}
