@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Primary colors */
  --color-primary: #01c5f8;
  --color-primary-light: #dbf8ff;
  --color-primary-dark: #0125ff;
  /* Secondary colors */
  --color-secondary: #6c757d;
  --color-secondary-light: #a2a9b1;
  --color-secondary-dark: #494f54;
  /* Neutral colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  /* Feedback colors */
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-info: #17a2b8;
  /* Text colors */
  --color-text: #7c7c7c;
  --color-text-muted: #6c757d;
  /* Background colors */
  --color-background: #ffffff;
  --color-background-alt: #f9f9f9;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

p {
  margin-bottom: 0;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 7) Forms */
input,
button,
textarea,
select {
  font: inherit;
}

.p-100 {
  padding: 100px;
}

.py-100 {
  padding: 100px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.px-100 {
  padding: 0 100px;
}

.primary {
  color: var(--color-primary);
}

.primary-dark {
  color: var(--color-primary-dark);
}

.section-bg {
  background-color: #f1f5f9;
}

.section-bg-dark {
  background-color: #0b2545;
}

.text-color {
  color: var(--color-text) !important;
}

.text-color-dark {
  color: #373737;
}

.main-heading {
  font-size: 58px;
}

.bgSuccess {
  background: var(--color-success);
}

.cta-button {
  cursor: pointer;
  border: none;
  color: #fff;
  padding: 0.5rem 1.8rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
  background-image: linear-gradient(to right, #0138fe, #01b7f9);
  text-decoration: none;
  display: inline-block;
}
.cta-button:hover {
  background-image: linear-gradient(to right, #0334e6, #02a8e4);
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .cta-button {
    display: inline-block;
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* 8) Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.container {
  max-width: 1440px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
  position: relative;
  gap: 20px;
}
.header-section .menu-toggle {
  display: none;
}
.header-section .header-logo {
  flex-shrink: 0;
}
.header-section .header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-section .header-menu .header-menu-list .header-menu-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
}
.header-section .header-menu .header-menu-list .header-menu-item:hover {
  color: var(--color-primary);
}
@media (max-width: 1200px) {
  .header-section .header-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .header-section.menu-open .header-menu {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
  }
  .header-section.menu-open .header-menu li.header-menu-list {
    padding: 0.5rem 1rem;
    width: 100%;
  }
  .header-section .menu-toggle {
    display: block;
  }
  .header-section .header-section.menu-open .header-menu {
    display: flex;
  }
}
@media (max-width: 992px) {
  .header-section .cta-button {
    display: none;
  }
}

.hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  content: "";
  position: absolute;
  top: 0;
  right: -3%;
  bottom: 0;
  left: 0;
  background-image: url("../images/hero-bg-image.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  z-index: -1;
  pointer-events: none;
}
.hero-section .left-content .hero-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-section .left-content .hero-desc {
  font-size: 18px;
  margin-top: 20px;
  color: #333;
}
.hero-section .left-content .hero-list {
  margin: 40px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-section .left-content .hero-list .hero-list-icon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-section .left-content .hero-list .hero-list-icon .hero-icon {
  width: 24px;
}
.hero-section .left-content .hero-list .hero-list-icon .hero-list-text {
  margin: 0;
  font-weight: 500;
}
.hero-section .right-image {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-section .right-image .hero-image {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1440px) {
  .hero-section::before {
    right: -15%;
  }
}
@media (max-width: 1200px) {
  .hero-section::before {
    right: -35%;
  }
  .hero-section .left-content .hero-heading {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .hero-section {
    background-image: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .hero-section::before {
    display: none;
    right: 0;
  }
  .hero-section .right-image {
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-section .left-content {
    margin-top: 50px;
  }
  .hero-section .column-reverse {
    flex-direction: column-reverse;
  }
  .hero-section .left-content .hero-heading {
    font-size: 36px;
  }
  .hero-section .left-content .hero-list {
    align-items: flex-start;
  }
  .hero-section .left-content .hero-list .hero-list-icon {
    justify-content: center;
  }
  .hero-section .left-content .hero-list .hero-list-icon .hero-list-text {
    text-align: left;
  }
  .hero-section .right-image .hero-image {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero-section .left-content .hero-heading {
    font-size: 28px;
  }
  .hero-section .left-content .hero-desc {
    font-size: 14px;
  }
}

.common-section {
  padding: 100px 0;
}
.common-section .common-section-main-heading {
  font-size: 58px;
  font-weight: 600;
}
.common-section .common-section-main-desc {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: var(--color-text-muted);
}
.common-section .common-section-heading {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 600;
}
.common-section .common-section-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.common-section .common-section-list .common-section-list-item {
  display: flex;
  flex-direction: column;
}
.common-section .common-section-list .common-section-list-item .common-section-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.common-section .common-section-list .common-section-list-item .common-section-list-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.common-section .common-section-list .common-section-list-item .common-section-desc {
  color: var(--color-text-muted);
}
.common-section .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-section .flex-center img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .common-section .common-section-main-heading {
    font-size: 48px;
  }
  .common-section .common-section-heading {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .common-section .common-section-main-heading {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .common-section .column-reverse {
    flex-direction: column-reverse;
  }
  .common-section .common-section-main-heading {
    font-size: 36px;
  }
  .common-section .common-section-main-desc,
  .common-section .common-section-desc,
  .common-section .common-section-list-heading {
    text-align: center;
    font-size: 18px;
  }
  .common-section .common-section-list {
    gap: 30px;
  }
  .common-section .common-section-list .common-section-icon {
    margin: 20px auto;
  }
}
@media (max-width: 576px) {
  .common-section .common-section-main-heading {
    font-size: 28px;
  }
  .common-section .common-section-heading {
    font-size: 28px;
  }
  .common-section .common-section-desc {
    font-size: 14px;
  }
  .common-section .common-section-main-desc {
    font-size: 16px;
  }
}

.cards {
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: #fff;
}
.cards .card-heading {
  font-size: 20px;
}
.cards .card-image {
  width: 120px;
  margin: auto;
}

.cards-with-border {
  border: 1px solid #e2e2e2;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cards-with-border .card-image {
  margin-bottom: 10px;
}
.cards-with-border .card-image .card-img {
  width: 44px;
  height: 44px;
}
.cards-with-border .card-heading {
  font-size: 20px;
}
.cards-with-border .card-desc {
  color: var(--color-text);
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-section {
  /* Remove Swiper’s default positioning so we can manually place them */
  /* Position previous button to the right side */
  /* Position next button fully at the right */
  /* Adjust arrow size inside buttons */
  /* Hover effect for both buttons */
  /* Optional: center pagination bullets above buttons */
}
.testimonial-section .testimonial-swiper {
  padding-top: 40px;
  padding-bottom: 60px;
}
.testimonial-section .testimonial-swiper .testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-section .testimonial-swiper .testimonial-user {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-section .testimonial-swiper .testimonial-user .testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 15px;
}
.testimonial-section .testimonial-swiper .testimonial-user .testimonial-desc {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.testimonial-section .testimonial-swiper .testimonial-user .testimonial-desc .testimonial-name {
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}
.testimonial-section .testimonial-swiper .testimonial-user .testimonial-desc .testimonial-role {
  color: #888;
  font-size: 0.9rem;
  margin: 2px 0;
}
.testimonial-section .testimonial-swiper .testimonial-user .testimonial-desc .testimonial-location {
  color: #0a75ff;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}
.testimonial-section .testimonial-swiper .testimonial-text {
  color: var(--color-text);
  line-height: 28px;
  margin: 0;
  text-align: left;
}
.testimonial-section .swiper-pagination-bullets {
  bottom: 10px;
}
.testimonial-section .swiper-pagination-bullets span.swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 2px;
}
.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-button-next {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background-color: white;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
  z-index: 10;
}
.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-button-next {
  top: auto;
  bottom: 0; /* position buttons 20px from bottom */
}
.testimonial-section .swiper-button-prev {
  left: auto; /* reset default left */
  right: 70px; /* place it left of the next button */
}
.testimonial-section .swiper-button-next {
  left: auto; /* reset default left */
  right: 20px; /* place it at the rightmost */
}
.testimonial-section .swiper-button-prev::after,
.testimonial-section .swiper-button-next::after {
  font-size: 20px;
}
.testimonial-section .swiper-button-prev:hover,
.testimonial-section .swiper-button-next:hover {
  background-color: var(--color-primary);
  color: white;
}
.testimonial-section .swiper-pagination {
  position: absolute;
  bottom: 0; /* above the buttons */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
}

.pricing {
  padding: 60px 20px;
}
.pricing__container {
  margin: 0 auto;
  text-align: center;
}
.pricing__title {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}
.pricing__subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.pricing__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.pricing__card {
  background: #ffffff;
  border: 1px solid #cce1f9;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  text-align: left;
}
.pricing__plan {
  color: #0070f3;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.pricing__cost {
  font-size: 24px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}
.pricing__text {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}
.pricing__highlight {
  background-color: #e9f6fe;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #111;
}
.pricing__features {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.pricing__features li {
  margin-bottom: 10px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .pricing__cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing__card {
    width: 100%;
    max-width: 100%;
  }
}

.faq {
  background-color: #f4f7fc;
}
.faq .faq-container .accordion {
  background: #ffffff;
  border-radius: 6px;
  margin: 15px 0;
  padding: 20px;
  border: 1px solid #dce2ec;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq .faq-container .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  gap: 15px;
  color: #000;
}
.faq .faq-container .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-text);
  margin-top: 10px;
  line-height: 28px;
}
.faq .faq-container .accordion.open .accordion-content {
  max-height: 300px;
}
.faq .faq-container .accordion.open .icon {
  content: "−";
  background: #0b2545;
  color: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq .faq-container .accordion .icon {
  transition: transform 0.2s ease;
  background: #0b2545;
  color: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .faq-container {
    padding: 0 10px;
  }
  .faq-container h1 {
    font-size: 24px;
  }
  .faq-container .accordion {
    padding: 15px;
  }
  .faq-container .accordion-header {
    font-size: 15px;
  }
  .faq-container .accordion-content {
    font-size: 13px;
  }
}
.footer {
  background-color: #0c2d48;
  color: #d4dce4;
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer__logo {
  flex: 1 1 250px;
}
.footer__logo-img {
  margin-bottom: 10px;
}
.footer__title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}
.footer__title span {
  font-weight: normal;
}
.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
  max-width: 400px;
  color: #b7b7b7;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.footer__socials a img {
  width: 100%;
  height: auto;
}
.footer__heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  color: #b7b7b7;
}
.footer__contact li .icon {
  margin-right: 10px;
}
.footer .footer_menu li.footer_menu_list a {
  color: #b7b7b7;
}
.footer .footer__contact li a {
  color: #b7b7b7;
  text-decoration: none;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  margin-top: 40px;
  color: #b7b7b7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom ul.privacy-policy-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.footer__bottom ul.privacy-policy-menu li.policy-menu-item a {
  text-decoration: none;
  color: var(--color-text);
}
.footer__bottom ul.privacy-policy-menu li.policy-menu-item a:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  .footer__container {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__section, .footer__logo {
    flex: 1 1 100%;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
  .footer .footer__bottom {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 40px 20px 15px;
  }
  .footer__title {
    font-size: 20px;
  }
  .footer__desc {
    font-size: 13px;
  }
  .footer__heading {
    font-size: 15px;
  }
  .footer__contact li {
    font-size: 13px;
  }
  .footer__bottom {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .px-100 {
    padding: 0 20px;
  }
  .py-100 {
    padding: 50px 0;
  }
  .cards {
    margin-bottom: 30px;
  }
  .main-heading {
    font-size: 28px;
  }
  .cards-with-border {
    text-align: center;
  }
  .cards-with-border .card-image .card-img {
    margin: auto;
  }
  .testimonial-section .swiper-button-prev,
  .testimonial-section .swiper-button-next {
    display: none;
  }
  .header-section {
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(207, 207, 207);
    padding-bottom: 15px;
  }
  .card-image.card-img-center {
    text-align: center;
    margin: auto;
  }
}
.modal-dialog {
  max-width: 650px;
}

.modal-content {
  border-radius: 16px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.modal-form input,
.modal-form textarea {
  border-radius: 8px;
  border: 1px solid #ced4da;
}
.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(1, 197, 248, 0.25);
}

.modal-footer .btn {
  background-image: linear-gradient(to right, #0138fe, #01b7f9);
  border: none;
}
.modal-footer .btn:hover {
  background-image: linear-gradient(to right, #012ce0, #00a9ec);
}

.form-label {
  font-size: 14px;
  margin-bottom: 0px;
}

.form-control {
  border-radius: 0.2rem !important;
}

.thank-you-page-container {
  background: linear-gradient(to right, #01acfa, #f0faff);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-page-container .thank-you-card {
  background: white;
  padding: 40px;
  border-radius: 5px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 1rem;
}
.thank-you-page-container .thank-you-card .thank-you-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #28a745;
}
.thank-you-page-container .thank-you-card .thank-you-title {
  font-size: 2rem;
  font-weight: 600;
}
.thank-you-page-container .thank-you-card .thank-you-message {
  font-size: 1.1rem;
  color: #555;
  max-width: 400px;
}

.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 20px;
  z-index: 1055; /* above modal-content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-page-hero-section {
  background-image: linear-gradient(to right, #b4c4ff, #d5f4ff);
  padding: 100px 15px;
  text-align: center;
  text-transform: uppercase;
}

.policy-container {
  padding: 60px 20px;
}
.policy-container .policy-inner-headings {
  color: #000;
  margin: 30px 0 15px;
}
.policy-container .policy-inner-content {
  color: var(--color-text);
}
.policy-container ul.policy-list {
  list-style: disc;
  padding-left: 30px;
}
.policy-container .card-container {
  border: 1px solid #e5e5e5;
  margin-top: 20px;
  border-radius: 10px;
  padding: 15px 20px;
}/*# sourceMappingURL=style.css.map */