/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Stack Sans Headline", sans-serif;
  --nav-font: "Rubik", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #333;
  --heading-color: #153d7a;
  --accent-color: #153d7a;
  --white-color: #ffffff;
  --red-color: #db5651;
  --blue-color: #0f3bb3;
  --green-color: #00a19e;
  --nav-color: #3b5353;
  --nav-hover-color: #00a19e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3b5353;
  --nav-dropdown-hover-color: #00a19e;

  --button-hover: #f4717d;
}

.light-background {
  --background-color: #f0f6f5;
  --surface-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.red-color {
  color: var(--red-color) !important;
}
.blue-color {
  color: var(--blue-color) !important;
}
.green-color {
  color: var(--green-color) !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--white-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--white-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.siteLogo {
  width: 100%;
  max-width: 170px;
  margin-bottom: 0;
}
.logo {
  line-height: 1;
  height: 100%;
  width: 100%;
  background: url(../images/logo.svg) no-repeat center left / contain;
  font-size: 52px;
  text-indent: -999em;
  display: flex;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--white-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--white-color);
  background: var(--button-hover);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    font-size: 40px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 16px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 4px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-background-color);
    background-color: var(--heading-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    top: 10px;
    position: relative;
    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(--nav-mobile-background-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(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    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(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 30px;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-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(--accent-color), transparent 20%);
  color: var(--white-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-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;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 60px 0;
  /* background: linear-gradient(
    135deg,
    var(--white-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  ); */
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 80%,
    color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
    transparent 50%
  );
  pointer-events: none;
} */

.hero .hero-content {
  padding: 20px 0 0 0;
}

.hero .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary,
.btn-primary {
  background: var(--accent-color);
  color: var(--white-color);
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover,
.btn-primary:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-visual .floating-elements .floating-card {
  position: absolute;
  background: var(--white-color);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card i {
  font-size: 1.125rem;
  color: var(--heading-color);
}

.hero .hero-visual .floating-elements .floating-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
}

.hero .hero-visual .floating-elements .floating-card.card-1 {
  top: 10px;
  left: 40%;
  animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-2 {
  top: 50%;
  right: 15px;
  animation-delay: -1s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
  bottom: 25%;
  left: 15px;
  animation-delay: -2s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--button-hover);
}

@media (max-width: 768px) {
  .hero .hero-visual .floating-elements .floating-card {
    padding: 12px 16px;
  }

  .hero .hero-visual .floating-elements .floating-card span {
    font-size: 0.75rem;
  }

  .hero .hero-visual .floating-elements .floating-card.card-1 {
    left: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-2 {
    right: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-3 {
    left: 10px;
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }
}

/* @media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
} */

/* Home Section */
.cardItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iconBlk {
  width: 55px;
  height: 55px;
  border-radius: 60px;
  background: linear-gradient(135deg, #0d6efd20, #0d6efd40);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 2rem;
}
.cardItem h5 {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: #dccae0;
  background: radial-gradient(
    circle,
    rgba(220, 202, 224, 0.5) 0%,
    rgba(255, 247, 232, 0.5) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  /* background: url(../images/bg-color2.png) no-repeat right center / 500px; */
  position: relative;
}

.about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .section-header {
  margin-bottom: 2rem;
}

.about .section-header h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .section-header h2 {
    font-size: 1.875rem;
  }
}

.about .section-badge {
  display: inline-block;
  background-color: color-mix(in srgb, #da40ff, transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.about .lead-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 500;
}

.about .description-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about .stat-item,
.cardItem {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--white-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stat-item:hover,
.cardItem:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .visual-section {
  position: relative;
}

.about .main-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.about .main-image-container .main-visual {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .main-image-container .overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--white-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .main-image-container .overlay-card {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.about .main-image-container .overlay-card .card-content {
  position: relative;
}

.about .main-image-container .overlay-card .card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.about .main-image-container .overlay-card .card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.about .main-image-container .overlay-card .card-content .card-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .main-image-container .overlay-card .card-content .card-icon i {
  font-size: 1.125rem;
}

.about .secondary-images .secondary-img {
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .secondary-images .secondary-img:hover {
  transform: scale(1.05);
}

.about .features-section {
  padding: 3rem 0;
  background-color: color-mix(
    in srgb,
    var(--white-color),
    var(--background-color) 50%
  );
  border-radius: 12px;
  margin-top: 2rem;
}

/* Mission Vission */
.aboutRightInner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aboutRightInner li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 74px;
}
.aboutRightInner li.mission {
  padding-left: 80px;
}
.aboutRightInner li.vision {
  padding-left: 0px;
}
.aboutRightInner li.coreValues {
  padding-left: 80px;
}
.circleStyle {
  background: var(--white-color);
  position: relative;
  border-radius: 50%;

  animation: multiGlow 3s infinite ease-in-out;

  display: flex;
  align-items: center;
}
.circleStyle i {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.circleStyle i.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 48;
  font-size: 4rem;
}
.mission .circleStyle i,
.mission .circleStyle h5 {
  color: #00a19e;
}
.vision .circleStyle i,
.vision .circleStyle h5 {
  color: #8600a1;
}
.coreValues .circleStyle i,
.coreValues .circleStyle h5 {
  color: #4ea100;
}
.circleStyle h5 {
  position: absolute;
  top: 40px;
  right: -60px;
  font-size: 1rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  background-color: #ffffffcf;
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 30px 0 30px 0;
  padding: 5px 10px;
  text-align: center;
  animation: floating 3s ease-in-out infinite;
}
.coreValues b {
  display: inline-block;
}
/* Glow animation */
@keyframes multiGlow {
  0% {
    box-shadow: 0 0 20px #f7eeff, 0 0 40px #f7eeff;
  }

  33% {
    box-shadow: 0 0 20px #e9f3f3, 0 0 40px #e9f3f3;
  }

  66% {
    box-shadow: 0 0 20px #d6e6f0, 0 0 40px #d6e6f0;
  }

  100% {
    box-shadow: 0 0 20px #f7eeff, 0 0 40px #f7eeff;
  }
}
@media (max-width: 767px) {
  .aboutRightInner li {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    text-align: center;
  }
  .aboutRightInner li,
  .aboutRightInner li.mission,
  .aboutRightInner li.coreValues,
  .aboutRightInner {
    padding-left: 0;
  }
  .circleStyle h5 {
    top: calc(100% - 32px);
    right: auto;
    height: 52px;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background-color: #f1f1f12e;
}
.features .tabs-wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link .material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
  color: var(--white-color);
}
.features .nav-link:hover .material-symbols-rounded {
  color: var(--heading-color);
}
.features .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
}
.features .nav-link:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-3px);
}
.features .nav-link h5 {
  margin-bottom: 0;
}
.features .nav-link:hover h5 {
  color: var(--white-color);
}
.features .nav-link .featureIcon {
  position: relative;
  min-width: 50px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.features .nav-link:hover .featureIcon {
  background: var(--white-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}

.services .services-grid .service-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px
    color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--white-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

.contact .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact .contact-form {
  background-color: var(--white-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.services {
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
  margin-bottom: 60px;
}
.servicesCol {
  position: relative;
  display: flex;
  align-items: center;
}
.servicesTitleGroup {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.subHeading {
  font-weight: 300;
}
.servicesContent {
  position: relative;
  width: 100%;
  padding: 30px 0 30px 70px;
}
.services_color {
  position: absolute;
  left: -100px;
  bottom: 0;
  width: 50%;
  height: calc(100% - 120px);
  border-radius: 45px;
  background-color: #e9e9e9;
}

.services_bg-color {
  position: absolute;
  top: 60px;
  right: -40px;
  width: 80px;
  height: calc(100% - 60px);
  border-radius: 50px;
  background-color: rgba(180, 184, 255, 0.25);
  background-image: linear-gradient(
    180deg,
    rgba(180, 184, 255, 0.25) 0%,
    rgba(241, 184, 255, 0.25) 100%
  );
}

.services .auto-container {
  position: relative;
  max-width: 1700px;
}

.step-award_count {
  position: relative;
  font-size: 64px;
  line-height: 36px;
  font-weight: 700;
  color: var(--white-color);
}

.step-award_subtitle {
  position: relative;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: uppercase;
}

.servicesTitle {
  position: relative;
  border-bottom: 1px solid #dddddd;
  display: flex;
  gap: 30px;
  padding: 20px 0;
}
.servicesTitle p {
  margin-bottom: 0;
}

.servicesTitle.active .services_arrow img,
.servicesTitle:hover .services_arrow img {
  fill: #ffffff;
  filter: brightness(200%);
  color: var(--white-color);
}

.servicesTitle:last-child {
  border-bottom: 0;
}

.servicesIconOuter {
  position: relative;
}

.servicesListIcon {
  position: relative;
  width: 70px;
  height: 70px;
  line-height: 66px;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #ffc5b9, #a3b8ff) border-box;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicesListIcon .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 48;
  font-size: 42px;
  color: #db5651;
}

.servicesListNumber {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 23px;
  height: 23px;
  z-index: 1;
  font-size: 12px;
  line-height: 23px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  color: var(--blue-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: #d9d9d9;
}

.servicesTitle.active .servicesListNumber,
.servicesTitle:hover .servicesListNumber {
  color: var(--blue-color);
  background-color: #fae4ff;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(180deg, #fae4ff 0%, #d3e5ff);
}

.servicesListHeading {
  color: var(--heading-color);
  transition: all 500ms ease;

  position: relative;
  font-weight: 300;
}

.servicesTitle.active .services_arrow,
.servicesTitle:hover .services_arrow {
  color: var(--white-color);
  background-color: rgba(0, 13, 255, 1);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(
    180deg,
    rgba(0, 13, 255, 1) 0%,
    rgba(193, 21, 236, 1) 100%
  );
}

.servicesTitle.active .servicesListHeading a,
.servicesTitle:hover .servicesListHeading a {
  color: var(--main-color);
}

.services_image-column {
  position: relative;
}

.services_image-outer {
  position: relative;
  height: 100%;
}

.services_images_outer {
  position: relative;
  height: 100%;
}

.servicesTitle.active .services_subtitle,
.servicesTitle:hover .services_subtitle {
  background-color: var(--color-two);
}

.services_image {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -webkit-transform: rotate(-5deg) translateX(0px);
  transform: rotate(-5deg) translateX(0px);
}
.services_image img {
  width: 100%;
}
.services_image.active {
  opacity: 1;
  -webkit-transform: rotate(0deg) translateX(0px);
  transform: rotate(0deg) translateX(0px);
}
@media (max-width: 991.99px) {
  .services_image-column {
    display: none;
  }
  .servicesContent {
    padding: 0px;
  }
  .services_color {
    display: none;
  }
}

/* Team */

.caption {
  text-align: center;
  transform: translateY(-80px);
  transition: 0.6s;
}

.caption p {
  font-size: 15px;
  color: #0c52a1;
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.teams .mainHeadline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.teams .mainDescription {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.teams .teamsGrid {
  margin-top: 3rem;
}

.teams .teamItem {
  background: var(--white-color);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teamMemerPic {
  position: absolute;
  transition: 0.6s;
  z-index: 99;
  transform: translateY(-100px);
  padding: 0 24px;
}
.teamMemberInner {
  overflow: hidden;
  border-radius: 20px;
}
.teamMemerPic img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.6s;
  border-radius: 20px;
}
.teamMemerPic:hover img {
  transform: scale(1.5);
}
.teams .teamItem:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.teamContent {
  padding-top: 180px;
}
.teamlabel {
  color: var(--heading-color);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 0;
}
.teamDesignation {
  font-weight: 500;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .teamsGrid > .row {
    row-gap: 5rem;
  }
}
@media (min-width: 1200px) {
  .teamsGrid > .row {
    row-gap: 1.5rem;
  }
}

.innerTopSection {
  padding-top: 160px;
}
