body {
  background-color: #ffffff;
  color: #334155;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
}

.holo-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.holo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.15);
}

.h-screen {
  height: 70vh;
}

.slide {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  inset: 0;
}
.slide.active {
  opacity: 1;
}

.mesh-1 {
  background:
    radial-gradient(circle at 20% 30%, #fff7ed 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, #ffedd5 0%, transparent 50%), #ffffff;
}
.mesh-2 {
  background:
    radial-gradient(circle at 80% 20%, #fef3c7 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #fffbeb 0%, transparent 50%), #ffffff;
}
.mesh-3 {
  background:
    radial-gradient(circle at 50% 50%, #fff1f2 0%, transparent 60%),
    radial-gradient(circle at 10% 10%, #fff7ed 0%, transparent 40%), #ffffff;
}

.text-gradient {
  background: linear-gradient(90deg, #f97316, #ea580c, #f97316);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 4s linear infinite;
}

.progress-bar {
  height: 3px;
  width: 60px;
  background: rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #f97316;
  transition: width 0.1s linear;
}
.active .progress-fill {
  width: 100%;
  transition: width 5s linear;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* Global container */
.site-container {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

/* Responsive adjustments for testimonial cards */
@media only screen and (min-width: 1366px) and (max-width: 1420px) {
  .h-screen {
    height: 70vh !important;
    min-height: 700px;
    padding-top: 50px;
  }

  .holo-card {
    width: 330px;
    padding: 2rem;
  }
  .animate-marquee {
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
  .h-screen {
    height: 70vh !important;
    min-height: 700px;
    padding-top: 50px;
  }

  .holo-card {
    width: 310px;
    padding: 1.8rem;
  }
  .animate-marquee {
    gap: 1.3rem;
  }
}
@media only screen and (min-width: 1180px) and (max-width: 1279px) {
  .h-screen {
    height: 70vh !important;
    min-height: 700px;
    padding-top: 50px;
  }

  .holo-card {
    padding: 1.6rem;
  }
  .animate-marquee {
    gap: 1.2rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1179px) {

  .h-screen {
  height: 60vh !important;
  min-height: 400px !important;
  padding-top: 80px;
}

  .holo-card {
    /* width: 270px; */
    padding: 1.4rem;
  }
  .animate-marquee {
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
.h-screen {
  height: 65vh !important;
  min-height: 600px !important;
  padding-top: 60px;
}
  h1 {
    font-size: 76px !important;
  }

  h2 br {
    display: none;
  }

  .holo-card {
    /* width: 230px; */
    padding: 1.2rem;
  }

  #solutions > div > div.grid.grid-cols-1.justify-items-stretch {
    grid-template-columns: repeat(2, 1fr);
  }

  #about > div > div.grid div.relative {
    order: 1;
  }

  #about > div > div.grid div {
    order: 2;
  }

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

  #about > div > div > div:nth-child(1) > div {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }

  #about > div > div > div:nth-child(1) > div div:nth-child(2) {
    margin-top: 0px !important;
  }

  #cta-final .text-primary {
    display: block;
  }

  #contact > div > div.grid.md\:grid-cols-3.gap-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #testimonials .holo-card {
    width: 300px;
  }

  .animate-marquee {
    gap: 0.8rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {

.h-screen {
  height: 100vh !important;
  padding-top: 80px;
}

.h-screen div.mb-8.inline-flex{
  margin-bottom: 15px !important;
}


.h-screen p{
  font-size: 18px;
  margin-bottom: 10px;
}

  .site-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section.relative.h-screen a {
    padding: 15px 20px !important;
  }

  h1 {
    font-size: 46px !important;
    line-height: 56px !important;
    margin-bottom: 10px !important;

  }

  h2 {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  h2 br {
    display: none;
  }

  .holo-card {
    /* width: 230px; */
    padding: 1.2rem;
  }

  #solutions > div > div.grid.grid-cols-1.justify-items-stretch {
    grid-template-columns: repeat(1, 1fr);
  }

  #about > div > div.grid div.relative {
    order: 1;
  }

  #about > div > div.grid div {
    order: 2;
  }

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

  #about > div > div > div:nth-child(1) > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  #about > div > div > div:nth-child(1) > div div:nth-child(2) {
    margin-top: 0px !important;
  }

  #why-choose-us > div.site-container.relative > div.relative.overflow-hidden {
    padding: 2rem 2rem !important;
    margin-top: 30px !important;
  }

  #why-choose-us
    > div.site-container.relative
    > div.relative.overflow-hidden
    > div.items-center
    > div.grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #cta-final .text-primary {
    display: block;
  }

  #contact > div > div.grid.md\:grid-cols-3.gap-8 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #testimonials .holo-card {
    width: 300px;
  }

  #footer {
    padding-bottom: 1.5rem;
  }

  #footer > .site-container > div {
    margin-bottom: 2rem;
    gap: 30px;
  }

  #footer div.pt-8 {
    padding-top: 1rem;
    margin: 0;
    text-align: left;
  }

  .footer-nav {
    padding: 0px;
  }

  .animate-marquee {
    gap: 0.5rem;
  }
}
