@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap");

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #050505;
  color: #ffffff;
}

header {
  height: 80vh;
  align-content: center;
}

header div#hero-slider {
  padding-top: 80px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fixed marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 6 - 1.5rem * 5));
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(calc(-350px * 6 - 1.5rem * 5));
  }
  100% {
    transform: translateX(0);
  }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.animate-marquee-reverse {
  display: flex;
  width: max-content;
  animation: marquee-reverse 60s linear infinite;
}

.animate-marquee:hover,
.animate-marquee-reverse:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 350px;
  flex-shrink: 0;
}

.cta-glow {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

.cta-glow:hover {
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
}

.nav-footer-bg {
  background-color: #050505;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(60px);
  z-index: -1;
  animation: float 10s infinite ease-in-out;
}

.logo-link {
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.nav-footer {
  padding-left: 60px;
}

footer ul.footer-links li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}

footer ul.footer-links li:hover {
  color: #fff;
}

a.logo-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
}

nav > div > a.logo-link > div,
footer .col-span-1 .logo-link div {
  font-size: 1.25rem !important;
  line-height: 1.5rem;
}

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
  header {
    height: 100vh !important;
    align-content: center;
  }
}

@media only screen and (min-width: 1279px) and (max-width: 1365px) {
  header {
    height: 100vh !important;
    align-content: center;
  }
}

@media only screen and (min-width: 1180px) and (max-width: 1279px) {
  header {
    height: 100vh !important;
    align-content: center;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1179px) {
  header {
    height: 60vh !important;
    align-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    height: 65vh !important;
    align-content: center;
  }

  nav div a.logo-link {
    width: 75%;
  }

  h1 {
    font-size: 4.5rem !important;
  }

  #about-us div > div:nth-child(1) {
    order: 1 !important;
  }

  #about-us div > div:nth-child(2) {
    order: 2 !important;
  }

  #about-us div.glass-card.p-2 {
    width: 95%;
  }

  #about-us div.relative div.absolute {
    right: 7px;
  }

  #approach > div.grid {
    grid-template-columns: repeat(1, 1fr);
  }

  #approach > div.grid div.grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #approach div div:nth-child(1) {
    order: 2;
  }

  #process div.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer div.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2rem;
  }

  .nav-footer {
    padding-left: 40px;
  }

  footer .md\:grid-cols-3 {
    gap: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  nav > div > a.px-5.bg-white.text-black {
    display: none;
  }

  header {
    height: 90vh !important;
    align-content: center;
  }

  header div#hero-slider {
    padding: 120px 1.5rem 80px 1.5rem !important;
  }

  h1 {
    font-size: 2rem !important;
  }

  header p {
    font-size: 16px !important;
  }

  #services > div > div.mb-16 {
    margin-bottom: 2rem;
  }

  #about-us div > div:nth-child(1) {
    order: 1 !important;
  }

  #about-us div > div:nth-child(2) {
    order: 2 !important;
  }

  #about-us div.glass-card.p-2 {
    width: 95%;
  }

  #about-us div.relative div.absolute {
    right: 7px;
  }

  #approach > div.grid {
    grid-template-columns: repeat(1, 1fr);
  }

  #approach > div.grid div.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #approach div div:nth-child(1) {
    order: 2;
  }

  section.py-24.px-6 div.max-w-5xl {
    padding: 2rem !important;
  }

section.py-24.px-6 div.max-w-5xl h2{
  margin-bottom: 1rem;
}

section.py-24.px-6 div.max-w-5xl p{
  font-size: 16px;
  margin-bottom: 1rem;
}

  h5 {
    font-size: 1.5rem;
  }
  .nav-footer {
    padding-left: 0px;
  }

  footer div.grid {
    margin-bottom: 1.5rem;
  }

  .logo-link {
    gap: 5px;
  }

  nav > div > a.logo-link > div,
  footer .col-span-1 .logo-link div {
    font-size: 1.25rem !important;
    line-height: 1.5rem;
  }

  footer div.max-w-7xl {
    text-align: left;
  }
}
