@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

/* Fonts */
:root {
  --default-font: "Roboto Flex", serif;
  --heading-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff;
  --primary-color: #2d3387;
  --primary-loight-color: #ebedff;
  --heading-color: #595959;
  --triary-color: #bb7637;
  --secondaryy-color: #7e6a9a;
  --tick-color: #3fb6ce;
  --yellow-color: #fffa80;
  --white-color: #ffffff;
  --black-color: #525252;
  --nav-color: #2d3387;
  --light-color: #f9f4ec;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--primary-loight-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

body {
  color: var(--black-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--secondaryy-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--secondaryy-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--black-color);
  background-color: var(--background-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 997;
  position: relative;
}

.header .header-container {
  background: var(--white-color);
  padding: 8px 25px 10px 25px;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--white-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header.fixed-top {
  position: fixed;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1200px) {
  .header .header-container {
    padding: 10px 5px 10px 15px;
  }

  .header .logo img {
    max-height: 40px;
  }

  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 768px) {
  .header .logo img {
    max-height: 60px;
}
}
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--black-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #2d3387;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--white-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--black-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb,
        var(--secondaryy-color),
        transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    width: 100%;
  }

  .header.fixed-top {
    position: fixed;
    animation: none;
  }
}

.footer {
  color: var(--black-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--black-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--white-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb,
      var(--secondaryy-color),
      transparent 20%);
  color: var(--white-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--black-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondaryy-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 1.7rem;
  }
}

.hero {
  position: relative;
  padding-top: 130px;
  background: #e4e6ff url(../images/cloud-element.png) no-repeat right bottom -48px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%,
      color-mix(in srgb, var(--secondaryy-color), transparent 92%),
      transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  margin-bottom: 160px;
}

.hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 1280px) {
  .hero .hero-content {
    margin-bottom: 80px;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content p {
    width: 75%;
  }
}

@media (max-width: 1190px) {
  .hero {
    background-size: 70% 70%;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 60px;
  }

  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content p {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    background: #fff url(../images/cloud-element.png) no-repeat right bottom 120px;
  }

  .hero {
    background-size: auto auto;
  }

  .hero .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 90px !important;
    padding-bottom: 0 !important;
    background: #fff url(../images/cloud-element.png) no-repeat right bottom -77px;
  }

  .hero .hero-content h1 {
    font-size: 1.5rem;
  }
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.metric-container {
  background: #d0f3fa;
  border-radius: 6px;
}

.metrics-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  /* background-color: var(--white-color); */
  background: url(../images/metrics-row-bg.png) no-repeat 0 0;
  background-size: 100% 100%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.metric-item .metric-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50px;
  transition: 0.3s;
}

.metric-item .metric-icon i {
  font-size: 1.5rem;
  color: var(--black-color);
}

.metric-item .metric-content {
  flex-grow: 1;
}

.metricsasd {
  display: flex;
  justify-content: center;
}

.metricsasd .pllas {
  color: var(--primary-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
}

.metric-item .metric-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1190px) {
  .metric-item .metric-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .metrics-row.mt-5 {
    margin: 0 !important;
  }

  .metric-item {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .metrics-row {
    margin-top: 0 !important;
  }

  .metric-item {
    padding: 0;
  }

  .metrics-row .col-md-3 {
    width: 50%;
    max-width: 50%;
  }

  .metric-item .metric-content h4 {
    font-size: 1.1rem;
  }

  #metrics .col-md-3 {
    width: 50%;
    max-width: 50%;
  }
}

.about .about-meta {
  color: var(--secondaryy-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 1.5rem;
  }
  .about .row{
    flex-direction: column-reverse;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--black-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--tick-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--secondaryy-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--secondaryy-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--black-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 1190px) {
  .about .image-wrapper .main-image {
    width: 70%;
    margin: 0 auto;
    display: block;
    float: right;
  }

}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    width: 100%;
  }
}

.about .image-wrapper .small-image {
    position: absolute;
    top: 23%;
    left: -17%;
    width: 50%;
}

@media (max-width:1190px) {
  .about .image-wrapper .small-image {
    position: absolute;
    top: 23%;
    left: 1%;
    width: 48%;
    margin-top: 67px;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    display: none;
  }
}

@media (max-width: 767px) {
  #about .row {
    flex-direction: column-reverse;
  }

  .about .image-wrapper {
    margin: 0;
  }

  .about .image-wrapper .small-image {
    display: none;
  }
}

.highlights .features-tab {
  border: 0;
  background: var(--primary-loight-color);
  border-radius: 6px;
  padding: 6px;
  width: 100%;
  display: flex;
}

.highlights .swiper.tab-slider h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.highlights .custom-tab {
  display: none;
}

.highlights .custom-tab.active {
  display: block;
}

.highlights .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.highlights .swiper-slide.tab-button {
  background-color: initial;
  color: var(--heading-color);
  padding: 10px 40px;
  transition: 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .highlights .custom-tab img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 767px) {
  .highlights .section-title{
    text-align: left;
  }
  .highlights .section-title h2:after{
    right: inherit;
  }
  .highlights .custom-tab img {
    width: 80%;
  }
  .highlights .swiper-slide.tab-button{
    padding: 10px 16px;
  }
}
@media (max-width: 468px) {
  .highlights .nav-link {
    padding: 8px 20px;
  }
}

.highlights .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.highlights .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.highlights .nav-link:hover {
  border-color: color-mix(in srgb, var(--black-color), transparent 80%);
}

.highlights .nav-link:hover h4 {
  color: var(--primary-color);
}

.highlights .swiper-slide.tab-button.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.highlights .swiper-slide.tab-button.active h4 {
  color: var(--white-color);
}

.highlights .custom-tabs-content {
  margin-top: 30px;
}

.highlights .custom-tab h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .highlights .custom-tab h3 {
    font-size: 1.5rem;
  }
}

.highlights .custom-tab h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondaryy-color);
  left: 0;
  bottom: 0;
}

.highlights .custom-tab ul {
  list-style: none;
  padding: 0;
}

.highlights .custom-tab ul li {
  padding-top: 10px;
}

.highlights .custom-tab ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--tick-color);
}

.highlights .custom-tab p:last-child {
  margin-bottom: 0;
}

.highlight-cards {
  --primary-color: #555;
  --heading-color: #333;
}

.highlight-cards .highlight-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 6px;
}

.highlight-cards .highlight-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--secondaryy-color);
  margin-bottom: 20px;
}

.highlight-cards .highlight-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.highlight-cards .highlight-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.highlight-cards .highlight-box.first {
  background-color: #eff7ff;
}

.highlight-cards .highlight-box.first i {
  color: #28629d;
}

.highlight-cards .highlight-box.second {
  background-color: #fffce3;
}

.highlight-cards .highlight-box.second i {
  color: #74784e;
}

.highlight-cards .highlight-box.third {
  background-color: #e4e6ff;
}

.highlight-cards .highlight-box.third i {
  color: #2d3387;
}

.highlight-cards .highlight-box.fourth {
  background-color: #ffeeee;
}

.highlight-cards .highlight-box.fourth i {
  color: #f11515;
}

.highlights-2 .highlight-item .highlight-item-inner {
  padding: 25px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.highlights-2 .highlight-item .highlight-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e4e6ff;
}

.highlights-2 .highlight-item .highlight-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.highlights-2 .highlight-item .highlight-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.1;
}

.highlights-2 .highlight-item .highlight-content p {
  color: color-mix(in srgb, var(--black-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.highlights-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}


@media (max-width: 991.98px) {

  section,
  .section {
    padding: 30px 0;
    scroll-margin-top: 60px;
  }

  .highlight-cards,
  .highlights-2 {
    padding-top: 0;
  }

  .highlights-2 .highlight-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .highlights-2 .highlight-item .d-flex {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center !important;
  }

  .highlights-2 .phone-mockup {
    margin: 0;
  }

  .highlight-cards .highlight-box {
    padding: 25px;
  }

  .section-title {
    padding-bottom: 30px;
  }

  .highlight-right .highlight-item .d-flex {
    flex-direction: column;
  }
  .highlights-2 .col-lg-4.highlight-left {
    order: 1;
}
/* .highlights-2 .highlight-item .highlight-item-inner {
  box-shadow: -1px -1px 24px -5px rgba(0, 0, 0, 0);
  -webkit-box-shadow: -1px -1px 24px -5px rgba(0, 0, 0, 0);
  -moz-box-shadow: -1px -1px 24px -5px rgba(0, 0, 0, 0);
} */
}
@media (max-width:768px) {
  .highlights-2 .highlight-item{
    margin-bottom: 15px!important;
  }
}
@media (max-width:767px) {
  .highlight-cards .highlight-box {
    text-align: center;
  }
  
}

section.services {
  border-top: 1px solid #efefef;
}

.clients {
  background-color: #e4e6ff;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--black-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondaryy-color);
}

.testimonials {
  background-color: #f2f3ff;
}

.testimonials .testimonial-item {
  background-color: var(--white-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 6px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--black-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--black-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondaryy-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (max-width: 768px) {
  .testimonials .section-title {
    padding: 0;
  }

  .testimonials .section-title h2 {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 767px) {
  .testimonials .section-title {
    padding-bottom: 0;
  }

  .testimonials .section-title h2 {
    margin: 0;
  }
}

.metrics {
  background-color: #e4e6ff;
}

.metrics .metrics-item {
  padding: 0 30px;
  width: 100%;
}

.metrics .metrics-item span {
  color: var(--primary-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  position: relative;
}

.metrics .metrics-item p {
  color: color-mix(in srgb, var(--black-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--white-color);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.services .service-card {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--secondaryy-color);
  color: var(--white-color);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: var(--primary-loight-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--black-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .metrics .metrics-item {
    padding: 0;
  }

  .metrics .metrics-item span {
    font-size: 34px;
  }

  .metricsasd .pllas {
    font-size: 32px;
  }

  .services .service-card {
    padding: 25px;
  }

  .services .service-card h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .services .service-card p {
    margin-bottom: 0;
  }
}

.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--white-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  transform: scale(1);
}

.pricing .pricing-card:hover {
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.pricing .pricing-card.basic {
  background-color: #f1d2d4;
}

.pricing .pricing-card.popular {
  background: #69518b;
  color: var(--white-color);
}

.pricing .pricing-card.premium {
  background-color: #cae7d9;
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--white-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .period {
  color: var(--white-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--white-color);
}

/* .pricing .pricing-card.popular .features-list li i {
  color: var(--white-color);
} */

.pricing .pricing-card.popular .btn-light {
  background: var(--white-color);
  color: var(--primary-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--primary-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #dc8186;
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.pricing .pricing-card .price {
  margin-bottom: 10px;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--black-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

.pricing .pricing-card .features-list li i {
  color: #8abc51;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .features-list li i.bi-x-circle-fill {
  color: #fc3b00;
}

@media (max-width: 768px) {
  .pricing .pricing-card {
    margin: 0 43px;
  }
}
@media (max-width: 767px) {
  .pricing .pricing-card {
    margin: 0 30px;
  }
}
.contact {
  background: #342647 url(../images/about_img0.png) no-repeat 0 100%;
}

.contact h2 {
  color: var(--white-color);
}

.contact .info-box {
  background-color: #352863;
  color: var(--white-color);
  padding: 3rem;
  border-radius: 6px;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--white-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }

  .pricing .pricing-card {
    padding: 25px;
  }

  .pricing.section .section-title {
    padding-bottom: 15px;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--white-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--white-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.contact .info-item .icon-box:hover {
  background-color: color-mix(in srgb, var(--white-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--white-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: #69518b;
  padding: 3rem;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.contact .loading {
  color: var(--white-color);
}

.contact .sent-message {
  color: #eee1b6;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--black-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--black-color), transparent 90%);
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--white-color) 90%, white 5%);
  color: var(--black-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--secondaryy-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--black-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: #352863;
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: #221943;
}

.service-details .service-box {
  background-color: var(--white-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--black-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--white-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--black-color), transparent 20%);
  background-color: color-mix(in srgb, var(--black-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--secondaryy-color);
}

.service-details .services-list a.active {
  color: var(--white-color);
  background-color: var(--secondaryy-color);
}

.service-details .services-list a.active i {
  color: var(--white-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb,
      var(--secondaryy-color),
      transparent 95%);
  color: var(--secondaryy-color);
}

.service-details .download-catalog a {
  color: var(--black-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--black-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--secondaryy-color);
}

.service-details .download-catalog a:hover {
  color: var(--secondaryy-color);
}

.service-details .help-box {
  background-color: var(--secondaryy-color);
  color: var(--white-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--white-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--secondaryy-color);
}

/* Animated Banner Start */
.floating-images-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}

.floating-img {
  position: absolute;
  animation: floatUpDown 5s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Specific positions & delays */
.img-1 {
  top: 0;
  right: 0;
  animation-delay: -3s;
  max-width: 70%;
}

.img-2 {
  bottom: 20px;
  left: 140px;
  max-width: 80%;
  animation-delay: -5s;
}

.img-3 {
  bottom: 40px;
  left: 20px;
  max-width: 240px;
  animation-delay: -7s;
}

.img-4 {
  bottom: 0;
  right: -116px;
  max-width: 200px;
  animation-delay: -9s;
}

/* Floating animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1190px) {
  .img-1 {
    right: 47px;
  }

  .img-3 {
    left: -36px;
    max-width: 210px;
  }

  .img-4 {
    bottom: 40px;
    right: -42px;
    max-width: 171px;
  }

  .img-2 {
    left: 72px;
    max-width: 73%;
  }
}



    .mobile-frame {
      width: 318px;
      height: 600px;
      border: 10px solid #000;
      border-radius: 36px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      position: relative;
	  margin: 0 auto;
    }

    .carousel {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 1s ease-in-out;
    }

    .carousel img {
      width: 300px;
      height: 600px;
      object-fit: cover;
      flex-shrink: 0;
    }
	






@media (max-width: 767px) {
  .img-1 {
    top: 40px;
  }
  .img-3 {
    left: -36px;
    max-width: 147px;
    bottom: 85px;
  }

  .img-2 {
    left: 39px;
    bottom: 40px;
  }

  .img-4 {
    bottom: 64px;
    right: -20px;
    max-width: 136px;
  }
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
  margin: 0 auto 15px auto;
  width: 40px;
  height: 40px;
}

.more-btn img {
  width: 20px;
  display: block;
}

.more-btn:hover {
  background-color: var(--secondaryy-color);
  color: var(--white-color);
}

.fancybox__content {
  max-width: 1020px;
}