body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.hero-pattern {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0) 25%);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  transform: translateY(-3px);
}

.testimonial-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.cta-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
}

.accordion-item {
  transition: all 0.3s ease;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.accordion-content {
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.contact-gradient {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f7ff 100%);
}

.contact-card {
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.form-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    width: 80%;
    max-width: 300px;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .hamburger div {
    transition: all 0.3s ease;
  }

  .hamburger.active div:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .backdrop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .submenu.active {
    max-height: 500px;
  }

  .nav-link {
    position: relative;
    padding-bottom: 6px;
    margin: 0 10px;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #3b82f6;
  }

  .nav-link.active {
    color: #3b82f6;
    font-weight: 600;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
  }

  .fliterMobileheight {
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    padding-bottom: 10px;
  }

  .fliterMobileheight::-webkit-scrollbar {
    display: none;
  }
}



.fileGroup input[type="file"] {
  margin: auto;
  padding: 1.5em;
  border: 2px dashed #bbb;
  background-color: #fff;
  border-radius: 4px;
  transition: border-color 0.25s ease-in-out;
}

.fileGroup input[type="file"]::file-selector-button {
  padding: 1em 1.5em;
  border-width: 0;
  border-radius: 2em;
  background-color: #2563eb;
  color: hsl(210, 40%, 90%);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin-right: 1em;
}

.fileGroup input[type="file"]:hover {
  border-color: #888;
}

.fileGroup input[type="file"]:hover::file-selector-button {
  background-color: hsl(210, 70%, 40%);
}
.upload-btn {
    margin: auto;
    padding: 0.8rem 1.5em;
    border: 2px dashed #bbb;
    border-top: 0;
    max-width: 393px;
    text-align: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.filewrap .fileGroup input[type="file"]::file-selector-button {
  padding: 0.5em 1.5em;
}
.select2-container{
  width: 100% !important;
}
@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .fileGroup input[type="file"] {
    width: 100%;
    padding: 0.8rem;
  }
  .fileGroup input[type="file"]::file-selector-button {
    padding: 0.6em 1em;
    cursor: pointer;
    margin-right: 0.5em;
  }
  .fixed-bottom-btn
  {
      position: fixed;
      bottom: 0;
      width: 100%;
      left: 0;
      text-align: center;
      padding: 12px;
  }
  .mobileBoxWrapper .fixed-bottom-btn button,
  .mobileBoxWrapper .fixed-bottom-btn a{
    flex: 1;
    justify-content: center;
  }
  .fixedbotBtn button{
    flex: 1;
  }
}

textarea.form-control {
    height: auto;
    min-height: 100px;
    padding-top: 1.0rem;
    resize: vertical;
}

.checkTick{
  background-image: url('../images/checkIT.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px;
}