html,
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

/* h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
}

h3,
h4 {
  font-family: "Playfair Display", serif;
} */

/* Glow Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(114, 9, 183, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(114, 9, 183, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(114, 9, 183, 0.5);
  }
}
.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* Glass Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Navigation */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7209b7, transparent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover::after {
  width: 70%;
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  display: block !important;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Inputs */
.search-input:focus {
  width: 280px !important;
}
.date-time {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: white;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 53, 84, 0.25);
  border: 1px solid var(--primary);
}
.feature-icon {
  transition: all 0.5s ease;
}
.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.2);
}
.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(135deg, #003554 0%, #7209b7 100%);
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(114, 9, 183, 0.4);
}
.btn-hover {
  transition: all 0.3s ease;
}
.btn-hover:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stat Cards */
.stat-card {
  transition: all 0.4s ease;
  perspective: 1000px;
}
.stat-card-inner {
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.stat-card:hover .stat-card-inner {
  transform: rotateY(180deg);
}
.stat-card-front,
.stat-card-back {
  backface-visibility: hidden;
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.floating {
  animation: float 6s ease-in-out infinite;
}
.floating-delay {
  animation: float 7s ease-in-out infinite 1s;
}

/* Press Card */
.press-card {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.press-card img {
  transition: transform 0.5s ease;
}
.press-card:hover img {
  transform: scale(1.05);
}
.press-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s ease;
}
.press-card:hover::before {
  left: 100%;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 4rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-dot {
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Testimonials */
.testimonial-card {
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 40px -10px rgba(0, 53, 84, 0.3);
}

/* CTA */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(10, 38, 112, 0.05) 0%,
    rgba(55, 88, 180, 0.05) 100%
  );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Headings */
.hero-gradient-heading {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-heading {
  background: linear-gradient(135deg, #003554 0%, #7209b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logos */
.logo-container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

/* Shadows */
.shadow-3xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(114, 9, 183, 0.1);
}

/* Pricing */
.gradient-bg {
  background: linear-gradient(135deg, #003554 0%, #7209b7 100%);
}
.pricing-card {
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary);
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.popular {
  position: relative;
  z-index: 10;
  transform: scale(1.05);
  border-top: 5px solid #fff;
}
.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fff;
  color: #660dad;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}
.feature-list li:last-child {
  border-bottom: none;
}
.checkmark {
  color: #96cc39;
  margin-right: 10px;
  font-size: 20px;
}
.cross {
  color: #ef4444;
  margin-right: 10px;
  font-size: 20px;
}

/* Logos Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0;
}
.logo-item,
.other-logo-item {
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item {
  background: white;
}
.other-logo-item {
  border: 1px solid #660dad;
}
.logo-item img {
  max-width: 100%;
  height: auto;
}
.search-engines {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.search-engine {
  background: white;
  padding: 10px;
  border-radius: 8px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}
.pulse {
  animation: pulse 2s infinite;
}

/* 3D Effects */
.card-3d {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0) rotateY(0) scale(1);
}
.card-3d:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.03)
    translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.stat-card:hover {
  transform: perspective(1000px) translateZ(20px) scale(1.05);
  background: linear-gradient(135deg, #003554 0%, #2c0c4e 100%);
  color: white !important;
}

/* Parallax */
.parallax-container {
  perspective: 1px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.parallax-layer {
  position: absolute;
  inset: 0;
}
.parallax-back {
  transform: translateZ(-1px) scale(2);
}
.parallax-base {
  transform: translateZ(0);
}

/* Text Effects */
.text-shimmer {
  background: linear-gradient(90deg, #fff, #a0aec0, #fff);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.typing-demo {
  width: fit-content;
  animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
}
@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Glow */
.glow {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Rotate 3D */
.rotate-3d {
  transform-style: preserve-3d;
  animation: rotate3d 20s infinite linear;
}
@keyframes rotate3d {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

/* Backgrounds */
.vanta-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tools-section {
  background: linear-gradient(135deg, #003554 0%, #2c0c4e 100%);
  min-height: 100vh;
  padding: 20px;
}

/* Tool Cards */
.tool-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}
.tool-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.tool-card:hover .hexagon {
  transform: scale(1.1) rotate(5deg);
}

/* Shine Effect */
.shine-effect:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.3s;
}
.shine-effect:hover:after {
  opacity: 1;
  animation: shine 1s forwards;
}
@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

/* Grid Pattern */
.grid-pattern {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* About us */
.typewriter {
  overflow: hidden;
  border-right: 0.15em solid #ffffff;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #ffffff;
  }
}

.pulse {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.header-timeline {
  position: relative;
  padding: 2rem 0;
}

.header-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #003554, #2c0c4e, #003554);
  border-radius: 10px;
}

.header-timeline-item {
  width: 50%;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.header-timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.header-timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
}

.header-timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.header-timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.header-timeline-dot {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #003554, #2c0c4e);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(0, 53, 84, 0.3);
  animation: pulse-dot 3s infinite;
  border: 2px solid white;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 53, 84, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 53, 84, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 53, 84, 0);
  }
}

.header-timeline-item:nth-child(even) .timeline-dot {
  left: -14px;
}
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}
.wave-bottom {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
}
