@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:wght@500&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --primary-color: #021c17;
  --secondary-color: #02b795;
  --third-color: #ed1c24;
  --white-color: #fff;
  --black-color: #141125;
  --heading-font: "Inter", serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --menu-font: "Montserrat", sans-serif;
}

/*--------------------
    Common CSS
--------------------*/
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #222;
  font-family: var(--heading-font);
}

img {
  max-width: 100%;
  height: auto;
}

.sj-container {
  max-width: 1320px;
  width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.sj-section-title-area {
  text-align: center;
}

.sj-section-title-area h2 {
  font-family: var(--heading-font);
  font-size: 65px;
  font-weight: 600;
  line-height: 1.5em;
}

.sj-btn {
  display: inline-block;
  padding: 15px 30px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--menu-font);
  border-radius: 10px;
}

.sj-btn-primary {
  display: flex;
  gap: 10px;
  background-color: var(--primary-color);
}

.sj-btn-primary:hover {
  background-color: var(--secondary-color);
}
.sj-btn-secondary {
  display: flex;
  gap: 10px;
  background-color: var(--secondary-color);
}

.sj-btn-secondary:hover {
  background-color: var(--primary-color);
}

.sj-btn-primary svg {
  width: 20px;
  fill: white;
}

.sj-btn-secondary svg {
  width: 20px;
  fill: white;
}
/*--------------------
    Header Area
--------------------*/
.sj-header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #1b564a;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
.slicknav_menu {
	display:none;
}

.sj-header-area {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.sj-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 20px 0;
  gap: 20px;
}

.sj-header-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.sj-header-menu ul li a {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--menu-font);
  letter-spacing: 1px;
}

.sj-header-menu ul li a:hover {
  color: var(--secondary-color);
}

/*--------------------
    Hero Area
--------------------*/
.sj-hero-area {
  background-color: var(--primary-color);
  background-image: url("../img/hero-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.sj-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 30px;
  position: relative;
}

.sj-hero-content-area h1 {
  font-size: 60px;
  color: var(--white-color);
  font-family: var(--heading-font);
  line-height: 1.2em;
  font-weight: 600;
}

.sj-hero-content-area {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  padding: 200px 10px;
  position: relative;
  flex-basis: 65%;
}

.sj-hero-content-area p {
  color: var(--white-color);
  font-family: var(--body-font);
  line-height: 1.5em;
}

.sj-hero-dowload-button {
  display: flex;
  gap: 20px;
}

.sj-hero-shape {
  position: absolute;
  bottom: 35px;
  right: 0;
}

.sj-hero-image {
  width: 50%;
}

.sj-hero-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 400px;
}

.sj-scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  z-index: 9999;
  position: relative;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.scroll-indicator > a > svg {
  animation: bounce 3s infinite;
  /* Adding the animation */
}

.scroll-indicator span {
  color: #5f6168;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

.sj-scroll-wave {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Bounce animation keyframes */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    /* Initial and final position */
  }

  50% {
    transform: translateY(-10px);
    /* Move down */
  }
}

/*--------------------
 Why Choose Us Area
--------------------*/
.sj-why-choose-us-area {
  padding: 100px 0;
  background-image: url(../img/why-choose-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 200px;
  background-size: contain;
}

.sj-why-choose-us-content-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
  position: relative;
  margin-bottom: 100px;
}

.sj-why-choose-single-item {
  border: 1px solid #e8eaf1;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s ease-in-out;
}

.sj-why-choose-single-item:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  transition: all 0.3s ease-in-out;
}

.sj-why-choose-single-item h2 {
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--black-color);
}

.sj-why-choose-single-item img {
  max-width: 60px;
  height: auto;
}

.sj-why-choose-single-item p {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
  color: #686868;
}

.sj-why-choose-single-item.sj-why-single-item-last {
  background-image: url(../img/why-choose-last.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  grid-row: span 6;
  position: relative;
}
.sj-why-single-item-last img {
  max-width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
}
.sj-why-single-item-last h2 {
  font-family: var(--body-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--white-color);
  width: 80%;
}
.sj-why-single-item-last a {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--white-color);
  background-color: var(--third-color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.sj-why-single-item-last a:hover {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

/*--------------------
 How It Works Area
--------------------*/
.sj-how-works-area {
  padding: 50px 0 100px;
}
.sj-how-works-content-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 50px;
  position: relative;
}

.sj-how-works-single-item {
  border: 1px solid #f2f4fb;
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s ease-in-out;
}
.sj-how-works-single-item h5 {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.5em;
  color: var(--secondary-color);
  display: flex;
  gap: 5px;
  align-items: center;
}
.sj-how-works-single-item h5 span {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.4;
}
.sj-how-works-single-item h2 {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
}
.sj-how-works-single-item p {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
  color: #686868;
}
/*--------------------
 call to action Area
--------------------*/
.sj-call-to-action-area {
  background-image: url(../img/call-to-action-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  background-color: var(--primary-color);
  overflow: hidden;
}
.sj-call-to-action-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 200px;
  padding-bottom: 200px;
}
.sj-call-to-action-content h2 {
  font-size: 50px;
  letter-spacing: -0.03em;
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1.3em;
  color: var(--white-color);
}
.sj-call-to-action-content p {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--white-color);
}
.sj-call-to-action-button {
  display: flex;
  gap: 20px;
}
.sj-call-to-action-button a {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--white-color);
  background-color: var(--white-color);
  display: flex;
  padding: 13px 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  width: 210px;
  justify-content: center;
}
.sj-call-to-action-right {
  flex-basis: 40%;
}

.sj-call-to-action.sj-container {
  display: flex;
  gap: 70px;
  justify-content: space-between;
  align-items: flex-end;
}

.sj-call-to-action-right img {
  margin-bottom: -10px;
}

/*--------------------
 Testimonial Area
--------------------*/
.sj-testimonial-area {
  padding: 100px 0;
  overflow: hidden;
  background-image: url(../img/testimonial-peoples.png);
  background-repeat: no-repeat;
  background-position: center;
}
.sj-testimonial {
  background-image: url(../img/testimonail-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}
.sj-testimonial .sj-section-title-area {
  text-align: center;
  width: 56%;
  margin-left: auto;
  margin-right: auto;
}
.sj-testimonial .sj-section-title-area h2 {
  font-family: var(--body-font);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: -0.19599999487400055px;
}

.sj-testimonial-slider-area {
  overflow: hidden;
}
.sj-testimonial-content-area {
  position: relative;
  text-align: center;
  padding: 50px 20px;
  background: url("assets/img/world-map.png") no-repeat center center;
  background-size: cover;
}

.main-swiper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 30px;
}

.sj-testimonial-single-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.sj-testimonial-single-item h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
  font-family: var(--body-font);
  color: #01103D;
}

.sj-testimonial-single-item h6 {
  font-size: 14px;
  color: var(--third-color);
  margin-bottom: 20px;
  font-family: var(--body-font);
}

.sj-testimonial-single-item p {
  font-size: 20px;
  line-height: 1.5em;
  color: #01103D;
  font-family: var(--body-font);
  
}

.thumb-swiper .swiper-slide {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  opacity: 0.5;
}

.thumb-swiper .swiper-slide-active {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}
.thumb-swiper .swiper-slide-active img {
  opacity: 1;
}

.thumb-swiper .sj-thumb-wrapper .sj-thumb-slide:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.sj-thumb-wrapper {
  transform: none !important;
  z-index: 999 !important;
}

/*--------------------
 FAQ Area
--------------------*/
.sj-faq-area {
  padding: 100px 0;
  background-color: #f7f9fb;
}
.sj-faq-content-area {
  display: flex;
  gap: 70px;
}
.sj-faq-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  background-image: url(../img/faq-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
@media (max-width: 767px) {
  .sj-faq-left {
      background-image: none;
  }
}

.sj-faq-left h2 {
  font-family: var(--menu-font);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  text-align: left;
  color: var(--primary-color);
}
.sj-faq-left p {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  color: #5f6168;
  margin-bottom: 30px;
}

.sj-faq-right {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  justify-content: start;
}

.sj-single-accordion {
  border-radius: 3px;
  overflow: hidden;
  transition: height 0.3s ease;
}

.sj-single-accordion .sj_accordion_tab {
  padding: 20px;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}

.sj-single-accordion .sj_accordion_tab .sj-accordion_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
}
.sj-accordion_arrow svg {
  width: 20px;
  height: 20px;
  display: flex;
  border: 1px solid #c0c2c8;
  padding: 5px;
  border-radius: 100%;
}
.sj-single-accordion.active .sj-accordion_arrow svg {
  border-color: #01103d;
}

.sj-single-accordion.active {
  background: #ffffff;
  box-shadow: 0px 20px 20px rgba(3, 4, 28, 0.08);
  border-radius: 0px 0px 20px 20px;
}

.sj-single-accordion .sj-accordion_content {
  padding: 10px 20px;
}

.sj-single-accordion .sj-accordion_content .sj-accordion_item {
  margin-bottom: 20px;
}

.sj-single-accordion .sj-accordion-title {
  font-family: var(--menu-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
  text-align: left;
  color: #01103d;
  text-transform: capitalize;
}
.sj-single-accordion .sj-accordion_item p {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}
.sj-single-accordion .sj-accordion_content .sj-accordion_item p:last-child {
  color: #9a9b9f;
  font-size: 14px;
  line-height: 20px;
}
.sj-single-accordion .sj-accordion_arrow svg.minus {
  display: none;
}
.sj-single-accordion.active .sj-accordion_arrow svg.minus {
  display: block;
}
.sj-single-accordion.active .sj-accordion_arrow svg.plus {
  display: none;
}
.sj-single-accordion .sj-accordion_content {
  display: none;
  padding: 10px 20px;
}
.sj-single-accordion:not(.active) {
  border-bottom: 1px solid #ebecf0;
}

/*--------------------
 Footer Area
--------------------*/
.sj-footer-area {
  background-color: #eeeef5;
  background-image: url(../img/footer-bg.svg);
  background-repeat: no-repeat;
  background-position: right top;
}
.sj-footer-top {
  padding: 100px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}
.sj-footer-single-widget {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sj-footer-single-widget p {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  color: #5f6168;
}
.sj-footer-single-widget h3 {
  font-family: var(--menu-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: left;
  color: var(--primary-color);
}
.sj-footer-single-widget ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  justify-content: start;
  list-style: none;
}
.sj-footer-single-widget ul li {
  padding-left: 15px;
  position: relative;
}
.sj-footer-single-widget ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
}
.sj-footer-single-widget ul li:hover:before {
  background-color: var(--third-color);
}
.sj-footer-single-widget ul li a {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5em;
  text-align: left;
  color: #5f6168;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sj-footer-single-widget ul li a:hover {
  color: var(--third-color);
}

.sj-footer-contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  justify-content: start;
  list-style: none;
}
.sj-footer-contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.sj-footer-contact-info ul li::before {
  display: none;
}
.sj-footer-contact-info ul li img {
  width: 18px;
}
.sj-footer-contact-info ul li a {
  font-family: var(--menu-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5em;
  text-align: left;
  color: var(--primary-color);
}

.sj-footer-download {
  display: flex;
  gap: 15px;
  align-items: center;
}
.sj-footer-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sj-footer-btn a {
  background-color: var(--white-color);
  display: flex;
  padding: 10px 15px;
  border-radius: 5px;
}

.sj-footer-bottom-area {
  border-top: 1px solid #dfdfea;
  padding: 30px 0;
}
.sj-footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}
.sj-footer-social ul {
  display: flex;
  list-style: none;
  gap: 10px;
}

.sj-footer-social ul li a {
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(1, 16, 61, 0.14);
  border-radius: 10px;
  display: flex;
  padding: 10px;
}
.sj-footer-social ul li a svg {
  width: 15px;
  height: 15px;
}
.sj-footer-social ul li a:hover {
  background-color: var(--secondary-color);
}
.sj-footer-social ul li a:hover svg path {
  fill: var(--white-color);
}
.sj-footer-copyright p {
  margin: 0;
  font-family: var(--menu-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  color: var(--primary-color);
}
.sj-footer-copyright p span {
  color: var(--secondary-color);
}
.sj-language-switcher select {
  background-color: var(--white-color);
  padding: 8px 12px;
  border: 0;
  border-radius: 5px;
}
.sj-language-switcher select option {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5em;
  color: #5f6168;
}
