body{
    font-family: 'Montserrat', sans-serif;
}
* {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-thumb {
    background: #0075ff;
    border-radius: 2px;
}

/*hero-banner*/
@keyframes backgroundZoom {
  0%, 100% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
}

.hero-banner {
  /* existing styles */
  position: relative;
  width: 100%;
  min-height: 85vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('..//images/hero-banner.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
  animation: backgroundZoom 10s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 950px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: 1.1rem;
  letter-spacing: 2px;
  opacity: .9;
  margin-bottom: 1rem;
  animation: fadeInUp 1s 0.2s both;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-buttons .btn {
  min-width: 150px;
  transition: transform .25s cubic-bezier(.77,0,.18,1), box-shadow .25s;
}

.hero-buttons .btn-primary {
  background: #1A4D7A;
  border: none;
}

.hero-buttons .btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.hero-buttons .btn:hover,
.hero-buttons .btn:focus {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px 0 rgba(26,77,122,.3);
}

.hero-wave {
  position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
  background: url('..//images/hero-banner-wave.png') repeat-x bottom center;
  background-position: bottom center;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1.5s forwards;
}
.fade-in.delay {
  animation-delay: .75s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px);}
  to { opacity: 1; transform: translateY(0); }
}
/*hero-banner*/

/*features*/
.simple-features{
    padding: 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 48px 38px; /* vertical then horizontal gap */
  max-width: 950px;
  margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 18px rgba(26, 77, 122, 0.09);
    padding: 1.5rem 1rem 1.25rem;
    transition: box-shadow 0.25s, transform 0.25s;
    height: fit-content;
    /*margin-top: -1.25rem;*/
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(58,121,216,0.15);
  transform: translateY(-3px) scale(1.02);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0075ff 60%, #e1e8f0 100%);
  border-radius: 16px;
  color: #fff;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,77,122,0.09);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #051229;
}

.feature-desc {
  font-size: 1rem;
  color: #051229;
}


/* Stagger only for larger screens */
@media (min-width: 992px) {
  .feature-card-stagger {
    margin-top: -2.25rem;
  }
  /*.feature-card {
    margin-top: 2rem;
  }*/
}

/* On mobile, stack and remove grid gaps */
@media (max-width: 991.98px) {
  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }
  .feature-card,
  .feature-card-stagger {
    margin-top: 0 !important;
  }
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-icon {
    margin-bottom: 10px;
  }
}

/*features*/

/*about*/
.about-advanced {
  background: #F3F6F8;
  padding: 8rem 0;
}
/*.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}*/

/* Left image: full height of content, rounded corners */
.about-left-image {
  width: 90%;
  height: auto;
  max-height: 100%;
  border-radius: 0;
  object-fit: cover;
  clip-path: polygon(0 0, 94% 0%, 100% 6%, 100% 100%, 0 100%);
}

/* Right side clipped image */
.clipped-image-wrapper {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 0; /* no border radius for clean polygon edges */
  clip-path: polygon(0 0, 94% 0%, 100% 6%, 100% 100%, 0 100%);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.12);
  flex-shrink: 0;
}
.clipped-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography */

.small-head {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: #0075ff;
}

.about-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #051229;
    text-transform: capitalize;
}

.about-desc {
    color: #051229;
    font-size: 1rem;
    line-height: 1.5;
}

.about-list {
  list-style-type: none;
  padding-left: 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #051229;
    font-size: 1rem;
}

/*.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: #0075FF;
  font-weight: 700;
  font-size: 1.2rem;
}*/
.about-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    color: #0075FF;
    font-size: 1.2rem;
    content: "\eb7b";
    font-family: 'remixicon', sans-serif;
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-left-image {
    max-height: none;
    border-radius: 1.25rem;
  }
  .about-heading {
    font-size: 1.6rem;
    margin-top: .75rem;
    /*text-align: center;*/
  }
  .small-head {
    /*text-align: center;*/
  }
  .about-desc,
  .about-list {
    /*text-align: center;*/
  }
  .clipped-image-wrapper {
    margin: 1rem auto 0;
  }
  .d-flex.align-items-center.flex-wrap {
    justify-content: center !important;
  }
}

/*about*/

/*services*/
.services-main{
    padding: 8rem 0;
}
.title {
    font-size: 2rem;
    font-weight: 800;
    line-height: inherit;
    color: #0075ff;
    text-transform: capitalize;
}

.paragraph {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0rem;
    color: #051229;
}

.main .tab {
  width: 100%;
  height: auto;
  padding: 2rem 0 0;
}
.main .tab-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-bottom: 1.3px solid rgb(5 18 41 / 30%);
  transition: all 0.3s ease;
}
.main .tab-menu-link {
  position: relative;
  overflow: hidden;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: inherit;
  cursor: pointer;
  width: calc(100% / 3);
  height: auto;
  /*padding: 1rem 0;*/
  padding: 1.5rem;
  border-bottom: 2.5px solid transparent !important;
  color: rgb(5 18 41 / 50%);
  background: #ffffff;
  transition: all 0.3s ease;
  border: none;
}
.main .tab-menu-link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
.main .tab-menu-link.is-active {
  bottom: 0px;
  z-index: 0;
  overflow: hidden;
  border-bottom: 2.5px solid #0075ff !important;
  color: #051229;
  background: #ffffff;
  border: none;
  outline: none;
}
.main .tab-bar {
  padding: 2.5rem 0 0;
  overflow: hidden;
  background: #ffffff;
}
.main .tab-bar-content {
  display: none;
  width: 100%;
  /*min-height: 10rem;*/
  transition: all 0.3s ease;
}
.main .tab-bar-content.is-active {
  display: block;
}
/*services*/

/*faqs*/
.faqs{
    background: #F3F6F8;
    padding: 8rem 0
}
.faq-image{
    width: 100%;
}

/*faqs*/
.faq-categories {
      text-align: center;
      /*margin-bottom: 40px;*/
    }

    .faq-categories button {
      border: none;
      border-radius: 30px;
      background-color: #fff;
      color: #021E40;
      font-weight: 600;
      padding: 10px 30px;
      margin: 8px 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }

    .faq-categories button:hover,
    .faq-categories button.active {
      background-color: #0071DC;
      color: #fff;
    }

    .faq-category {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      margin-top: 2rem;
      /*margin-bottom: 40px;*/
    }
   .faq-category h5 {
    color: #0071dc;
    text-align: center;
    margin-bottom: 2rem !important;
    }
    @media (max-width: 576px) {
      .faq-categories button {
        font-size: 14px;
        padding: 8px 20px;
      }
    }
.accordion-item {
  border-bottom: 1px solid rgb(2 30 64 / 10%);
}
.accordion-button {
  transition: all 0.3s ease;
  color: #021E40;
}
.accordion-button::after {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.accordion-collapse {
  transition: all 0.3s ease;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: #FFF;
  color: #0075ff;
}
.accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.accordion-body {
  color: #051229 !important;
  font-size: 16px;
  font-family: "Montserrat", "sans-serif";
  border-bottom: 1px solid rgb(5 18 41 / 5%);
}
.home-faqs-img {
  width: 100%;
  border-radius: 50% 5% 10% 10%;
  padding: 1.5rem 0 0;
  background: #0071dc;
}

.faq-category-wrapper {
  position: relative;
  overflow: hidden;
}

.scroll-x {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.scroll-x::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-x button {
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 15px;
}

/* Fading gradient left/right */
.scroll-fade {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.scroll-fade-left {
  left: 0;
  background: linear-gradient(to right, #021E40, transparent);
}

.scroll-fade-right {
  right: 0;
  background: linear-gradient(to left, #021E40, transparent);
}

/* Optional responsiveness */
@media (min-width: 992px) {
  .scroll-x {
    overflow-x: visible !important;
    flex-wrap: wrap;
  }
  .scroll-fade {
    display: none;
  }
}
/*faqs*/

/*faqs*/

/*contact*/
.contact-section{
  padding: 8rem 0 3rem;
}
.contact-section .row {
      /*min-height: 480px;*/
    }
    .contact-section img {
      height: 100%;
      object-fit: cover;
      border-radius: 0.375rem; /* Bootstrap rounded */
      width: 100%;
    }
/*contact*/

/*popup*/
.modal {
    background: rgb(5 18 41 / 30%);
    backdrop-filter: blur(15px);
}
/*popup*/

/*partners*/
.partners {
    padding: 0rem 0 0;
}

@keyframes scrollLTR {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  /*padding: 0rem 0 1rem;*/
}

.logo_items {
  display: inline-flex;
  animation: scrollLTR 25s linear infinite;
}

.logo_items img {
  height: 100px;
  margin-right: 40px;
  flex-shrink: 0;
}

/* Optional gradient overlays */
.logos::before,
.logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

/*partners*/


/*responsive*/
@media(max-width: 1199px){
  @keyframes backgroundZoom {
  0%, 100% {
    background-size: 320%;
  }
  50% {
    background-size: 370%;
  }
  }
  .min-1200{
    display: none;
  }
  .max-1199{
    display: block;
  }
  .simple-features{
    padding: 4rem 0;
  }
  .about-advanced{
    padding: 4rem 0;
  }
  .services-main{
    padding: 4rem 0;
  }
  .about-left-image{
    width: 100%;
    margin-bottom: 1.25rem;
    border-radius: 0px !important;
  }
  .faqs{
    padding: 4rem 0;
  }
  .contact-section{
    padding: 4rem 0 3rem;
  }
  .main .tab{
    padding: 0rem;
  }
}
@media(min-width: 1200px){
  .min-1200{
    display: block;
  }
  .max-1199{
    display: none;
  }
}
@media(min-width: 768px){
  .min-768{
    display: block;
  }
  .max-767{
    display: none;
  }
}
@media(max-width: 767px){
  .min-768{
    display: none !important;
  }
  .max-767{
    display: block;
  }
  .form-mb-image{
    padding-bottom: 1.25rem;
  }
}
/*responsive*/