*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
}

body {
  margin: 0;
  background: #ffffff;
  color: #030213;
  min-height: 100vh;
}

button {
  outline: none;
}

:root {
  --background: #ffffff;
  --foreground: #030213;
  --card: #ffffff;
  --card-foreground: #030213;
  --popover: #ffffff;
  --popover-foreground: #030213;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #eef0f4;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --ring: #b4b4b4;
  --radius: 0.625rem;
}

.content {
  max-width: 1530px !important;
  width: 100%;
  margin: 0 auto;
}

.logo-container {
  width: auto;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.download-link {
  background: #092046;
  transition: 0.3s;
}

.download-link:hover {
  background: #0354b1;
}


.about-us-item-icon {
  transition: 0.3s;
}
.icon-hover {
  transition: 0.3s;
}
.container-with-icon:hover .icon-hover {
  transform: rotate(-5deg) scale(1.1);
}

.about-us-item:hover .about-us-item-icon {
  transform: scale(1.05);
}

.group {
  position: relative;
}

.group input {
  width: 100%;
  margin-bottom: 6px;
}
input:focus {
  outline: none;
}

label {
  color: #808fa1;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 10px;
  transition: 0.2s ease all;
}

input:focus ~ label, input:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #999;
}


.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}

.anim-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.anim-stagger.in-view>*:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}

.anim-stagger.in-view>*:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.anim-stagger.in-view>*:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.anim-stagger.in-view>*:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-lift-lg:hover {
  transform: translateY(-6px);
}

@keyframes navSlideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-animate {
  animation: navSlideDown 0.5s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card-1 {
  animation: slideInRight 0.7s ease 0.4s forwards;
  opacity: 0;
}

.hero-card-2 {
  animation: slideInRight 0.7s ease 0.55s forwards;
  opacity: 0;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-1 {
  animation: heroFadeUp 0.6s ease forwards;
}

.hero-fade-2 {
  animation: heroFadeUp 0.6s ease 0.15s forwards;
  opacity: 0;
}

.hero-fade-3 {
  animation: heroFadeUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease,
    padding 0.25s ease;
  opacity: 0;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 300px;
  opacity: 1;
  padding: 0 24px 20px;
}

.faq-plus {
  transition: transform 0.2s ease;
}

.faq-plus.rotated {
  transform: rotate(45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-overlay {
  background: linear-gradient(to right,
      #092046,
      rgba(9, 32, 70, 0.7),
      transparent);
}

.shadow-glow {
  box-shadow: 0 0 10px rgba(3, 84, 177, 0.3);
}

.shadow-card {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.04);
}

.shadow-card-lg {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.testimonial-bg {
  background: linear-gradient(135deg, #0354b1, #1a2b5c);
}

input:focus,
textarea:focus {
  outline: none;
}

.faq-btn:focus {
  outline: none !important;
}

.hero-section {
  background: url("./../images/img/hero.png");
  background-size: cover;
  height: 100%;
  width: 100%;
}


@media (max-width: 1023px) {
  .hero-cards {
    display: none;
  }
}