/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #040677; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e8a8d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #0e8a8d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0e8a8d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #045a5c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
: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);
}

/* 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(--surface-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(--surface-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);
  --default-color: #ffffff;
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);

  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;

  /* Rounded corners */
  border-radius: 20px;

  /* Dark shadow */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

  /* Center header */
  width: 95%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  /* Align content */
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .logo {
  line-height: 1;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.header .logo img {
  max-height: 70px;
  width: auto;
  margin-right: 0;
  display: block;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.35);
    background-color: var(--background-color);
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.dropdown-heading {
  pointer-events: none;
  padding: 12px 20px 8px !important;
}

.dropdown-heading span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0e8a8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
}
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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: 14px;
  }

  .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;
  }
}

/* Mobile Navigation */
@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(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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(--contrast-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(--contrast-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);
    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: 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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* =========================================
   PRO TALENTISH FOOTER RESPONSIVE
========================================= */

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 90%
  );
}

/* Company */

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

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

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

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

/* Social */

.footer .social-links {
  gap: 8px;
}

.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;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 30%
  );
  margin-right: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Footer Links */

.footer h4 {
  font-size: 17px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

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

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

.footer .footer-links ul li {
  padding: 8px 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 30%
  );
  display: inline-block;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Newsletter */

.footer .footer-newsletter p {
  line-height: 1.7;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 25px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 5px;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 80%
  );
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 8px;
  width: 100%;
  min-width: 0;
  background-color: transparent;
  color: var(--default-color);
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="email"]::placeholder {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 45%
  );
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 15px;
  padding: 0 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 4px;
  cursor: pointer;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(
    in srgb,
    var(--accent-color),
    black 15%
  );
}

/* Copyright */

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 90%
  );
}

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

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .footer .footer-about {
    margin-bottom: 20px;
  }

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

  .footer .footer-newsletter {
    margin-top: 10px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .footer {
    text-align: center;
  }

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

  .footer .footer-about .logo {
    justify-content: center;
  }

  .footer .footer-about .logo span {
    font-size: 20px;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .footer-links {
    margin-top: 20px;
  }

  .footer .footer-links ul li {
    justify-content: center;
  }

  .footer .footer-newsletter {
    margin-top: 20px;
  }

  .footer .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 10px;
    border: 0;
    padding: 0;
  }

  .footer .footer-newsletter .newsletter-form input[type="email"] {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 80%
    );
    border-radius: 5px;
    background: var(--background-color);
  }

  .footer .footer-newsletter .newsletter-form input[type="submit"] {
    width: 100%;
    padding: 13px 20px;
    border-radius: 5px;
  }

  .footer .copyright {
    padding: 20px 10px;
  }

  .footer .copyright p {
    font-size: 13px;
    line-height: 1.7;
  }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .footer .footer-about .logo span {
    font-size: 17px;
    letter-spacing: 0.5px;
  }

  .footer .footer-contact p {
    font-size: 13px;
  }

  .footer .social-links a {
    width: 36px;
    height: 36px;
  }

  .footer h4 {
    font-size: 16px;
  }

}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  /*color: color-mix(in srgb, var(--heading-color), transparent 30%);*/
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 50px;
}

.about .content h3 {

  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}
/* =========================================
   NAPS / NATS SECTION
========================================= */

.naps-nats-section {
  padding: 80px 0;
  background: var(--background-color);
  overflow: hidden;
}

/* =========================================
   SECTION TITLE
========================================= */

.naps-nats-section .section-title {
  text-align: center;

}

.naps-nats-section .section-title h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.naps-nats-section .section-title div {
  font-size: 34px;
  font-weight: 700;
}

.naps-nats-section .description-title {
  color: var(--accent-color);
}

/* =========================================
   HERO
========================================= */

.naps-hero {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent-color), transparent 94%),
      var(--surface-color)
    );

  border: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 80%);

  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.08);
}

.naps-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.07;
}

.naps-hero-content {
  width: 65%;
  position: relative;
  z-index: 2;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 30px;
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 90%
  );
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.naps-hero-content h3 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.naps-hero-content h3 span {
  display: block;
  color: var(--accent-color);
}

.naps-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 20%
  );
  margin-bottom: 12px;
}

.naps-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.naps-btn,
.naps-btn-outline {
  padding: 12px 24px;
  border-radius: 7px;
  font-weight: 600;
  transition: 0.3s;
}

.naps-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.naps-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 65%);
}

.naps-btn-outline {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.naps-btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* =========================================
   HERO IMAGE
========================================= */

.naps-hero-image {
  width: 42%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.naps-hero-image img {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  border-radius: 18px;
  transition: 0.5s ease;
}

.naps-hero-image img:hover {
  transform: scale(1.04) translateY(-5px);
}

.image-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent-color);
  filter: blur(70px);
  opacity: 0.18;
}

/* =========================================
   PROGRAM CARDS
========================================= */

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.program-card {
  position: relative;
  padding: 35px;
  border-radius: 18px;
  background: var(--surface-color);
  border: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: 0.4s ease;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.12);
}

.nats-card::after {
  background: #f47b20;
}

.program-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 90%
  );
  color: var(--accent-color);
  font-size: 27px;
  margin-bottom: 20px;
}

.program-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.program-card h3 {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 15px;
}

.program-card p {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 25%
  );
  line-height: 1.7;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.program-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}

.program-card ul i {
  color: var(--accent-color);
  font-size: 17px;
}

/* =========================================
   COMPARISON
========================================= */

.comparison-section {
  margin-top: 70px;
}

.comparison-heading {
  text-align: center;
  margin-bottom: 30px;
}

.comparison-heading span {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.comparison-heading h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 8px 0;
}

.comparison-heading p {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 30%
  );
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.comparison-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--surface-color);
}

.comparison-table th {
  padding: 18px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-align: left;
  font-weight: 700;
}

.comparison-table th i {
  margin-right: 7px;
}

.comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 14px;
}

.comparison-table tbody tr {
  transition: 0.3s;
}

.comparison-table tbody tr:hover {
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 95%
  );
}

.comparison-table td:first-child {
  font-weight: 700;
}

/* =========================================
   ROLE SECTION
========================================= */

.role-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
  margin-top: 80px;
}

.role-image {
  position: relative;
}

.role-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12);
}

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 13px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.image-caption i {
  color: var(--accent-color);
  font-size: 20px;
}

.small-title {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.role-content h3 {
  font-size: 35px;
  font-weight: 800;
  margin: 12px 0;
}

.role-content h3 span {
  color: var(--accent-color);
}

.role-content > p {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 25%
  );
  line-height: 1.8;
}

.support-list {
  margin-top: 25px;
}

.support-item {
  display: flex;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.support-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 90%
  );
  color: var(--accent-color);
  font-weight: 800;
  font-size: 12px;
}

.support-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.support-item p {
  margin: 0;
  font-size: 13px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
}

/* =========================================
   CTA
========================================= */

.naps-cta {
  margin-top: 70px;
  padding: 35px 40px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(
      110deg,
      var(--accent-color),
      color-mix(
        in srgb,
        var(--accent-color),
        #000 20%
      )
    );
  color: var(--contrast-color);
}

.naps-cta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.naps-cta h3 {
  font-size: 26px;
  margin: 7px 0;
  font-weight: 700;
}

.naps-cta p {
  margin: 0;
  opacity: 0.9;
}

.cta-button {
  flex-shrink: 0;
  padding: 12px 23px;
  border-radius: 7px;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 700;
  transition: 0.3s;
}

.cta-button:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .naps-nats-section {
    padding: 60px 0;
  }

  .naps-hero {
    flex-direction: column;
    padding: 35px;
  }

  .naps-hero-content,
  .naps-hero-image {
    width: 100%;
  }

  .naps-hero-content h3 {
    font-size: 34px;
  }

  .naps-hero-image {
    margin-top: 10px;
  }

  .role-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .role-image {
    max-width: 650px;
    margin: auto;
  }

}

@media (max-width: 767px) {

  .naps-nats-section {
    padding: 50px 0;
  }

  .naps-nats-section .section-title div {
    font-size: 25px;
  }

  .naps-hero {
    padding: 25px;
    border-radius: 18px;
  }

  .naps-hero-content h3 {
    font-size: 29px;
  }

  .naps-hero-content p {
    font-size: 14px;
  }

  .naps-buttons {
    flex-direction: column;
  }

  .naps-btn,
  .naps-btn-outline {
    text-align: center;
  }

  .program-cards {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 28px;
  }

  .comparison-section {
    margin-top: 50px;
  }

  .role-section {
    margin-top: 55px;
  }

  .role-content h3 {
    font-size: 29px;
  }

  .naps-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .naps-cta h3 {
    font-size: 22px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {

  .naps-hero-content h3 {
    font-size: 25px;
  }

  .top-badge {
    font-size: 11px;
  }

  .program-card h3 {
    font-size: 20px;
  }

  .program-card {
    padding: 23px;
  }

  .role-content h3 {
    font-size: 25px;
  }

  .image-caption {
    font-size: 12px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.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(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* Team Card */
/* =================================
   TEAM MEMBER - SAME SIZE
================================= */

.team .member {
  position: relative;
  width: 260px;
  height: 330px;
  margin: 0 auto;

  background: #fff;
  border-radius: 12px;

  overflow: visible;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  transition: all 0.4s ease;

  cursor: pointer;
}

/* Image Area */
.team .member .pic {
  width: 100%;
  height: 260px;

  overflow: hidden;

  border-radius: 12px;

  margin: 0;

  background: #f5f5f5;
}

/* All Images Same Size */
.team .member .pic img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transition: transform 0.5s ease;
}

/* Member Information */
.team .member .member-info {
  position: absolute;

  left: 15px;
  right: 15px;
  bottom: 15px;

  width: auto;
  min-height: 75px;

  padding: 10px;

  background: var(--surface-color);

  border-radius: 8px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

  text-align: center;

  z-index: 2;

  transition: all 0.4s ease;
}

/* Name */
.team .member h4 {
  margin: 0 0 5px;

  font-size: 15px;
  font-weight: 700;

  white-space: nowrap;
}

/* Designation */
.team .member span {
  font-size: 12px;

  display: block;
}

/* Social */
.team .member .social {
  margin-top: 5px;
}

/* =================================
   MOUSE OVER - BIG
================================= */

.team .member:hover {
  transform: scale(1.08);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25);

  z-index: 10;
}

.team .member:hover .pic img {
  transform: scale(1.12);
}

.team .member:hover .member-info {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.20);
}

/* =================================
   4 MEMBERS IN ONE ROW
================================= */

@media (min-width: 992px) {

  .team .col-lg-3 {
    width: 25%;
    flex: 0 0 25%;
  }

}

/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

  .team .member {
    width: 240px;
    height: 310px;
  }

}

/* =================================
   MOBILE
================================= */

@media (max-width: 575px) {

  .team .member {
    width: 260px;
    height: 330px;
  }

}
/* ==========================================
   NEW JOB OPENINGS SECTION
========================================== */
.job-openings {
  box-shadow: 0 -15px 20px rgba(14, 138, 141, 0.35);
}

.job-openings .job-item {
  background-color: color-mix(
    in srgb,    var(--accent-color),
    transparent 96%
);

  padding: 30px 28px;

  height: 100%;

  border-radius: 15px;

  border: 1px solid color-mix(
    in srgb,
    var(--accent-color),
    transparent 85%
  );

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;

  transition: all 0.4s ease;
}

/* Hover Card */

.job-openings .job-item:hover {
  transform: translateY(-8px);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12);

  border-color: var(--accent-color);
}

/* New Badge */

.job-openings .job-badge {
  position: absolute;

  top: 15px;
  right: 15px;

  background: var(--accent-color);

  color: var(--contrast-color);

  padding: 5px 12px;

  border-radius: 20px;

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;
}

/* Job Title */

.job-openings h3 {
  font-weight: 700;

  margin-bottom: 12px;

  font-size: 20px;

  color: var(--heading-color);
}

/* Job Description */

.job-openings .job-description {
  font-size: 14px;

  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 30%
  );

  margin-bottom: 18px;
}

/* Job Details */

.job-openings .job-details {
  padding: 0;

  margin: 0;

  list-style: none;
}

/* Details */

.job-openings .job-details li {
  display: flex;

  align-items: center;

  gap: 8px;

  padding: 7px 0;

  font-size: 14px;

  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 20%
  );
}

/* Icons */

.job-openings .job-details i {
  color: var(--accent-color);

  font-size: 17px;

  min-width: 20px;
}

/* Salary */

.job-openings .salary {
  color: var(--accent-color);

  font-size: 18px;

  font-weight: 700;

  margin-top: 12px;
}

/* Apply Button */

.job-openings .apply-btn {
  display: block;

  width: 100%;

  text-align: center;

  margin-top: 20px;

  padding: 11px 20px;

  border-radius: 6px;

  background: var(--accent-color);

  color: var(--contrast-color);

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;
}

/* Button Hover */

.job-openings .apply-btn:hover {
  background: var(--default-color);

  color: var(--contrast-color);

  transform: translateY(-2px);
}

/* ==========================================
   JOB ICON
========================================== */

.job-openings .job-icon {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 88%
  );

  border-radius: 10px;

  margin-bottom: 18px;
}

.job-openings .job-icon i {
  font-size: 25px;

  color: var(--accent-color);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .job-openings .job-item {
    padding: 25px 20px;
  }

  .job-openings h3 {
    font-size: 18px;
  }

}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.faq .content h3 strong {
  color: var(--accent-color);
  font-weight: 700;
}

.faq .content p {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 30%
  );

  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
}

/* FAQ CONTAINER */

.faq .faq-container {
  margin-top: 20px;
}

/* FAQ ITEM */

.faq .faq-container .faq-item {
  position: relative;

  background-color: var(--surface-color);

  padding: 20px 55px 20px 58px;

  margin-bottom: 18px;

  border-radius: 10px;

  border: 1px solid color-mix(
    in srgb,
    var(--accent-color),
    transparent 88%
  );

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.07);

  overflow: hidden;

  transition: all 0.35s ease;
}

/* TOP GLOW */

.faq .faq-container .faq-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(
    90deg,
    var(--accent-color),
    #00c6ff,
    var(--accent-color)
  );

  opacity: 0;

  transition: 0.35s ease;
}

/* HOVER */

.faq .faq-container .faq-item:hover {
  transform: translateY(-3px);

  box-shadow:
    0 -5px 20px rgba(14, 138, 141, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.10);

  border-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 65%
  );
}

.faq .faq-container .faq-item:hover::before {
  opacity: 1;
}

/* LAST ITEM */

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

/* QUESTION */

.faq .faq-container .faq-item h3 {
  font-weight: 600;

  font-size: 16px;

  line-height: 24px;

  margin: 0;

  padding: 0;

  cursor: pointer;

  transition: 0.3s;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

/* QUESTION ICON */

.faq .faq-container .faq-item .faq-icon {
  position: absolute;

  top: 20px;
  left: 20px;

  font-size: 22px;

  color: var(--accent-color);

  transition: 0.3s;
}

/* TOGGLE ICON */

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;

  top: 22px;
  right: 20px;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s;

  color: var(--default-color);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

/* FAQ CONTENT */

.faq .faq-container .faq-item .faq-content {
  display: grid;

  grid-template-rows: 0fr;

  visibility: hidden;

  opacity: 0;

  transition:
    grid-template-rows 0.35s ease,
    opacity 0.35s ease,
    padding 0.35s ease;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 0;

  overflow: hidden;

  font-size: 14px;

  line-height: 1.7;

  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 25%
  );
}

/* ACTIVE FAQ */

.faq .faq-container .faq-active {
  border-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 70%
  );

  box-shadow:
    0 -5px 20px rgba(14, 138, 141, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq .faq-container .faq-active::before {
  opacity: 1;
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;

  visibility: visible;

  opacity: 1;

  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);

  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-icon {
  transform: scale(1.08);
}

/* ==========================================
   FAQ IMAGE
========================================== */

.faq .faq-image-wrapper {
  height: 100%;

  min-height: 450px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;
}

.faq .faq-image-wrapper img {
  width: 100%;

  max-width: 550px;

  height: auto;

  border-radius: 18px;

  object-fit: cover;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.15);

  transition: all 0.4s ease;
}

.faq .faq-image-wrapper img:hover {
  transform: scale(1.02);

  box-shadow:
    0 15px 45px rgba(14, 138, 141, 0.20);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

  .faq .content {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .faq .faq-container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .faq .faq-image-wrapper {
    min-height: auto;

    padding: 10px 25px 30px;
  }

  .faq .faq-image-wrapper img {
    max-width: 650px;
  }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .faq .content h3 {
    font-size: 28px;
  }

  .faq .content p {
    font-size: 14px;
  }

  .faq .faq-container {
    margin-top: 15px;

    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .faq .faq-container .faq-item {
    padding: 18px 45px 18px 50px;

    margin-bottom: 14px;

    border-radius: 9px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 15px;

    line-height: 22px;
  }

  .faq .faq-container .faq-item .faq-icon {
    left: 17px;
    top: 19px;
    font-size: 20px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    right: 15px;
    top: 21px;
    font-size: 14px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 13px;

    line-height: 1.6;
  }

  .faq .faq-image-wrapper {
    padding: 5px 15px 25px;

    min-height: auto;
  }

  .faq .faq-image-wrapper img {
    border-radius: 12px;
  }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

  .faq .content h3 {
    font-size: 24px;
  }

  .faq .content p {
    font-size: 13px;
  }

  .faq .faq-container .faq-item {
    padding: 16px 40px 16px 45px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 14px;

    line-height: 21px;
  }

  .faq .faq-container .faq-item .faq-icon {
    left: 14px;

    top: 18px;

    font-size: 18px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    right: 13px;

    top: 20px;
  }

}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  position: relative;
  box-shadow: 0 -12px 35px rgba(14, 138, 141, 0.20);
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*=============================
Moving Shine
==============================*/

.shine{

    position:absolute;

    top:-100%;
    left:-80%;

    width:50%;
    height:300%;

    background:linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.18),

    rgba(255,255,255,.55),

    rgba(255,255,255,.18),

    transparent

    );

    transform:rotate(25deg);

    animation:shine 8s linear infinite;

    pointer-events:none;

}

/*=============================
Glow
==============================*/

.glow{

    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.60;

}

.glow1{

    width:400px;
    height:400px;

    background:#49b6ff;

    top:-120px;
    left:-100px;

    animation:glow1 12s ease-in-out infinite;

}

.glow2{

    width:500px;
    height:500px;

    background:#005eff;

    right:-120px;
    bottom:-150px;

    animation:glow2 15s ease-in-out infinite;

}

/*=============================
Animations
==============================*/

@keyframes shine{

0%{

left:-120%;

}

100%{

left:180%;

}

}

@keyframes zoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}

@keyframes float{

0%{

background-position:center center;

}

50%{

background-position:center 48%;

}

100%{

background-position:center 52%;

}

}

@keyframes glow1{

0%{

transform:translate(0,0);

}

50%{

transform:translate(80px,60px);

}

100%{

transform:translate(0,0);

}

}

@keyframes glow2{

0%{

transform:translate(0,0);

}

50%{

transform:translate(-80px,-50px);

}

100%{

transform:translate(0,0);

}

}

/* Section */

.clients-section {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Heading */

.clients-heading {
    text-align: center;
    margin-bottom: 40px;
}

.clients-heading span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0e8a8d;
    margin-bottom: 10px;
}

.clients-heading h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    color: #162033;
}

.clients-heading p {
    margin-top: 12px;
    color: #6b7280;
    font-size: 16px;
}

/* ==============================
   MARQUEE
================================ */

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Left / Right Fade */

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;

    top: 0;
    bottom: 0;

    width: 180px;

    z-index: 5;

    pointer-events: none;
}

.clients-marquee::before {
    left: 0;

    background: linear-gradient(
        to right,
        #ffffff,
        rgba(255,255,255,0)
    );
}

.clients-marquee::after {
    right: 0;

    background: linear-gradient(
        to left,
        #ffffff,
        rgba(255,255,255,0)
    );
}

/* Moving Track */

.clients-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation: infiniteScroll 25s linear infinite;
}

/* ==============================
   CLIENT CARD
================================ */

.client-logo {

    width: 220px;
    height: 130px;
    margin: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 15px;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.06);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

/* Hover Card */

.client-logo:hover {

    transform: translateY(-8px);
    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);
}

/* ==============================
   LOGO
================================ */

.client-logo img {

    max-width: 170px;
    max-height: 80px;

    width: auto;
    height: auto;

    object-fit: contain;
	transition:
        filter .4s ease,
        opacity .4s ease,
        transform .4s ease;
}

/* Logo Hover */

.client-logo:hover img {

    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.08);
}

/* ==============================
   INFINITE ANIMATION
================================ */

@keyframes infiniteScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* ==============================
   PAUSE ON HOVER
================================ */

.clients-marquee:hover .clients-track {

    animation-play-state: paused;

}

/* ==============================
   SHINE EFFECT
================================ */

.client-logo {

    position: relative;

    overflow: hidden;
}

.client-logo::before {

    content: "";

    position: absolute;

    top: -100%;
    left: -100%;

    width: 60%;
    height: 300%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );

    transform: rotate(25deg);

    animation: logoShine 5s linear infinite;

    pointer-events: none;
}

@keyframes logoShine {

    0% {
        left: -100%;
    }

    100% {
        left: 180%;
    }

}

/* ==============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .clients-section {
        padding: 50px 0;
    }

    .clients-heading h2 {
        font-size: 30px;
    }

    .clients-heading p {
        padding: 0 20px;
        font-size: 14px;
    }

    .client-logo {

        width: 170px;
        height: 100px;

        margin: 0 12px;
    }

    .client-logo img {

        max-width: 130px;
        max-height: 60px;
    }

    .clients-track {

        animation-duration: 18s;

    }

    .clients-marquee::before,
    .clients-marquee::after {

        width: 70px;

    }

}

/* ==============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .clients-heading h2 {
        font-size: 25px;
    }

    .client-logo {

        width: 145px;
        height: 85px;

        margin: 0 8px;
    }

    .client-logo img {

        max-width: 110px;
        max-height: 50px;
    }

    .clients-track {

        animation-duration: 15s;

    }

}

/* =====================================================
   HERO
===================================================== */

.pt-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;

    background-image:
       linear-gradient(
            90deg,
            rgba(0, 5, 20, 0.88) 0%,
            rgba(0, 8, 30, 0.60) 40%,
            rgba(0, 10, 40, 0.20) 75%,
            rgba(0, 5, 25, 0.35) 100%
        ),
        url("../assets/img/tech-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =====================================================
   TOP DARK GRADIENT
===================================================== */

.pt-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(0, 119, 255, .16),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            rgba(0, 8, 25, .75),
            transparent 45%,
            rgba(0, 5, 20, .65)
        );

    z-index: 1;
    pointer-events: none;
}

/* =====================================================
   SVG NETWORK
===================================================== */

.network {
    position: absolute;
    left: 0;
    bottom: -2%;
    width: 100%;
    height: 70%;

    z-index: 2;

    perspective: 1000px;

    pointer-events: none;
}

.network svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* =====================================================
   NETWORK LINES
===================================================== */

.network-line {
    fill: none;

    stroke: rgba(0, 153, 255, .45);

    stroke-width: 1.2;

    filter:
        drop-shadow(0 0 3px rgba(0, 174, 255, .8))
        drop-shadow(0 0 8px rgba(0, 100, 255, .3));

    stroke-dasharray: 7 8;

    animation:
        networkFlow 5s linear infinite;
}

.network-line:nth-child(2n) {
    animation-duration: 7s;
}

.network-line:nth-child(3n) {
    animation-duration: 9s;
}

@keyframes networkFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -200;
    }
}

/* =====================================================
   BRIGHT NETWORK LINES
===================================================== */

.network-line.bright {
    stroke: rgba(80, 210, 255, .85);

    stroke-width: 1.8;

    filter:
        drop-shadow(0 0 4px #00bfff)
        drop-shadow(0 0 12px #0077ff);

    stroke-dasharray: 3 15;

    animation:
        brightFlow 3s linear infinite;
}

@keyframes brightFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -300;
    }
}

/* =====================================================
   SVG GLOW POINTS
===================================================== */

.network-point {
    fill: #dffaff;

    filter:
        drop-shadow(0 0 3px white)
        drop-shadow(0 0 8px #00bfff)
        drop-shadow(0 0 18px #006eff);

    animation: pointPulse 2s ease-in-out infinite;
}

.network-point:nth-child(2n) {
    animation-delay: .6s;
}

.network-point:nth-child(3n) {
    animation-delay: 1.1s;
}

@keyframes pointPulse {

    0% {
        opacity: .35;
        r: 2;
    }

    50% {
        opacity: 1;
        r: 4;
    }

    100% {
        opacity: .35;
        r: 2;
    }
}

/* =====================================================
   MOVING LIGHT PARTICLES
===================================================== */

.particle {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 5px #fff,
        0 0 12px #00c8ff,
        0 0 25px #006eff,
        0 0 45px #006eff;

    z-index: 4;

    animation:
        particleMove linear infinite;
}

.p1 {
    left: 8%;
    bottom: 20%;
    animation-duration: 7s;
}

.p2 {
    left: 22%;
    bottom: 28%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.p3 {
    left: 40%;
    bottom: 18%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.p4 {
    left: 55%;
    bottom: 30%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.p5 {
    left: 70%;
    bottom: 23%;
    animation-duration: 7s;
    animation-delay: 1.5s;
}

.p6 {
    left: 86%;
    bottom: 35%;
    animation-duration: 10s;
    animation-delay: 2.5s;
}

@keyframes particleMove {

    0% {
        transform:
            translate3d(0, 80px, 0)
            scale(.4);

        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform:
            translate3d(80px, -70px, 0)
            scale(1.3);

        opacity: 1;
    }

    85% {
        opacity: .7;
    }

    100% {
        transform:
            translate3d(180px, -180px, 0)
            scale(.2);

        opacity: 0;
    }
}

/* =====================================================
   HORIZONTAL SCANNING BEAM
===================================================== */

.scan-beam {
    position: absolute;
    left: -40%;
    top: 30%;
    width: 22%;
    height: 280px;
    z-index: 5;
    transform:
        rotate(-7deg)
        skewX(-15deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 174, 255, .04),
            rgba(0, 174, 255, .15),
            rgba(255, 255, 255, .5),
            rgba(0, 174, 255, .15),
            rgba(0, 174, 255, .04),
            transparent
        );

    filter: blur(12px);
    animation: scanBeam 10s linear infinite;
    pointer-events: none;
}

@keyframes scanBeam {

    0% {
        left: -40%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* =====================================================
   STRONG LIGHT STREAK
===================================================== */

.light-streak {

    position: absolute;
    left: -30%;
    top: 72%;
    width: 50%;
    height: 2px;
    z-index: 6;
    background:
        linear-gradient(
            90deg,
            transparent,
            #009dff,
            #ffffff,
            #00bfff,
            transparent
        );

    box-shadow:
        0 0 5px #00bfff,
        0 0 15px #008cff,
        0 0 30px #006eff;

    transform: rotate(-5deg);

    animation: streak 6s linear infinite;
}

@keyframes streak {

    0% {
        left: -50%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* =====================================================
   HERO CONTENT
===================================================== */

.pt-content {

    position: relative;

    z-index: 10;

    width: 100%;
    max-width: 1250px;

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;

    padding:
        100px 40px
        80px 40px;
}

.pt-text {

    max-width: 700px;
    animation:
        heroText 1.2s ease forwards;
}

@keyframes heroText {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   SMALL LABEL
===================================================== */

.pt-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border: 1px solid rgba(0, 174, 255, .4);
    border-radius: 30px;
    background:
        rgba(0, 119, 255, .08);
    backdrop-filter: blur(10px);
    color: #8bdfff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pt-label::before {

    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00c8ff;
    box-shadow:
        0 0 8px #00c8ff,
        0 0 18px #0077ff;
    animation: labelDot 1.5s infinite;
}

@keyframes labelDot {

    0%,100% {
        opacity: .4;
        transform: scale(.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* =====================================================
   HEADING
===================================================== */

.pt-text h1 {

    font-size:
        clamp(42px, 5.5vw, 76px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 22px;
    text-shadow:
        0 0 15px rgba(0, 132, 255, .25);
}

.pt-text h1 span {

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #62dfff,
            #008cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.pt-text p {

    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(225, 242, 255, .82);
    margin-bottom: 32px;
}

/* =====================================================
   BUTTONS
===================================================== */

.pt-buttons {

    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pt-btn {

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 27px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    transition: .35s ease;
	}

.pt-btn-primary {

    color: #fff;

    background:
        linear-gradient(
            90deg,
            #006eff,
            #00bfff
        );

    box-shadow:
        0 0 15px rgba(0, 140, 255, .3);
}

.pt-btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 20px rgba(0, 174, 255, .5),
        0 10px 30px rgba(0, 100, 255, .25);
}

.pt-btn-outline {

    color: #dff7ff;
    border: 1px solid rgba(100, 210, 255, .5);
    background:
        rgba(0, 100, 255, .07);
    backdrop-filter: blur(10px);
	}

.pt-btn-outline:hover {

    background:
        rgba(0, 140, 255, .15);
    border-color: #00bfff;
    transform: translateY(-3px);
}

/* =====================================================
   BUTTON SHINE
===================================================== */

.pt-btn-primary::after {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );
    transform: skewX(-20deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {

    0% {
        left: -100%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* =====================================================
   FLOATING TECH CARDS
===================================================== */

.tech-card {

    position: absolute;
    z-index: 9;
    right: 7%;
    top: 31%;
    width: 210px;
    padding: 20px;
    border-radius: 15px;
    border:
        1px solid rgba(0, 174, 255, .25);
    background:
        rgba(2, 15, 40, .45);
    backdrop-filter:
        blur(15px);
    box-shadow:
        0 0 40px rgba(0, 100, 255, .1);
    animation:
        floatingCard 4s ease-in-out infinite;
}

.tech-card h3 {

    font-size: 28px;
    color: #fff;
    margin-bottom: 5px;
}

.tech-card p {

    color: #7edfff;
    font-size: 13px;
}

@keyframes floatingCard {

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

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

/* BOTTOM FADE*/

.bottom-fade {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 180px;

    z-index: 7;

    background:
        linear-gradient(
            transparent,
            #020817
        );

    pointer-events: none;
}

/* MOBILE */

@media(max-width: 900px) {

    .pt-content {
        padding-left: 25px;
        padding-right: 25px;
    }

    .tech-card {
        display: none;
    }

    .network {
        height: 55%;
    }

}

@media(max-width: 600px) {

    .pt-hero {
        min-height: 700px;

        background-position:
            60% center;
    }

    .pt-content {

        align-items: center;

        padding:
            100px 22px
            60px;
    }

    .pt-text h1 {

        font-size: 43px;

        letter-spacing: -1px;
    }

    .pt-text p {

        font-size: 15px;

        line-height: 1.7;
    }

    .pt-label {

        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .pt-buttons {

        flex-direction: column;

        width: 100%;
    }

    .pt-btn {

        width: 100%;
    }

    .network {

        height: 48%;
    }

}

/*  CLIENT SECTION */

.clients-section {
    position: relative;
    width: 100%;
    padding: 70px 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 119, 255, 0.08),
            transparent 55%
        ),
        #020817;

    overflow: hidden;
}
/*    SECTION TITLE */

.clients-title {
    text-align: center;
    margin-bottom: 45px;
    padding: 0 20px;
}

.clients-title .small-title {

    display: inline-block;

    padding: 7px 18px;

    border: 1px solid rgba(0, 174, 255, .35);

    border-radius: 30px;

    color: #65dfff;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    background:
        rgba(0, 119, 255, .06);

    box-shadow:
        0 0 15px rgba(0, 174, 255, .08);
}

.clients-title h2 {

    margin-top: 16px;

    color: #fff;

    font-size: clamp(30px, 4vw, 46px);

    font-weight: 700;
}

.clients-title h2 span {

    background:
        linear-gradient(
            90deg,
            #fff,
            #5edfff,
            #008cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.clients-title p {

    margin-top: 12px;

    color: rgba(220, 235, 255, .7);

    font-size: 15px;
}

/* =====================================================
   MARQUEE OUTER
===================================================== */

.marquee {

    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 25px 0 35px;
}

/* =====================================================
   LEFT + RIGHT GRADIENT FADE
===================================================== */

.marquee::before,
.marquee::after {

    content: "";

    position: absolute;

    top: 0;

    width: 180px;

    height: 100%;

    z-index: 10;

    pointer-events: none;
}

.marquee::before {

    left: 0;

    background:
        linear-gradient(
            to right,
            #020817 0%,
            rgba(2, 8, 23, .95) 25%,
            rgba(2, 8, 23, .5) 60%,
            transparent 100%
        );
}

.marquee::after {

    right: 0;

    background:
        linear-gradient(
            to left,
            #020817 0%,
            rgba(2, 8, 23, .95) 25%,
            rgba(2, 8, 23, .5) 60%,
            transparent 100%
        );
}

/* =====================================================
   MARQUEE CONTENT
===================================================== */

.marquee-content {
    display: flex;

    align-items: center;

    gap: 35px;

    width: max-content;

    padding-left: 35px;

    animation:
        marqueeMove 32s linear infinite;

    will-change: transform;
}

/* =====================================================
   INFINITE MOVEMENT
===================================================== */

@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =====================================================
   LOGO CARD
===================================================== */

.logo-card {

    position: relative;

    width: 190px;

    height: 105px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 15px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f4f8fc
        );

    border: 1px solid rgba(0, 149, 255, .45);

    box-shadow:

        0 8px 25px rgba(0, 0, 0, .25),

        0 0 10px rgba(0, 140, 255, .15),

        inset 0 0 15px rgba(0, 140, 255, .05);

    overflow: hidden;

    transform-style: preserve-3d;

    perspective: 800px;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

/* =====================================================
   LOGO IMAGE
===================================================== */

.logo-card img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    position: relative;

    z-index: 3;

    transition:
        transform .45s ease,
        filter .45s ease;
}

/* =====================================================
   BLUE GLOWING BORDER
===================================================== */

.logo-card::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 15px;

    padding: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #008cff,
            #00d9ff,
            #008cff,
            transparent
        );

    background-size: 300% 100%;

    animation:
        borderGlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: .75;

    z-index: 1;
}

@keyframes borderGlow {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* =====================================================
   MOVING SHINE
===================================================== */

.logo-card::after {

    content: "";

    position: absolute;

    top: -50%;

    left: -100%;

    width: 55%;

    height: 200%;

    z-index: 4;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.15),
            rgba(255,255,255,.85),
            rgba(255,255,255,.15),
            transparent
        );

    transform: rotate(22deg);

    animation:
        logoShine 4.5s ease-in-out infinite;
}

@keyframes logoShine {

    0% {
        left: -100%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        left: 160%;
        opacity: 0;
    }

    100% {
        left: 160%;
        opacity: 0;
    }
}

/* =====================================================
   3D HOVER
===================================================== */

.logo-card:hover {

    transform:
        perspective(800px)
        rotateX(7deg)
        rotateY(-8deg)
        translateY(-12px)
        scale(1.06);

    border-color:
        #00bfff;

    box-shadow:

        0 20px 45px rgba(0, 0, 0, .35),

        0 0 15px rgba(0, 174, 255, .45),

        0 0 35px rgba(0, 119, 255, .30),

        0 0 70px rgba(0, 119, 255, .12);
}

.logo-card:hover img {

    transform:
        translateZ(25px)
        scale(1.05);

    filter:
        drop-shadow(
            0 5px 10px
            rgba(0, 120, 255, .25)
        );
}

/* =====================================================
   GLOW UNDER CARD
===================================================== */

.logo-card .card-glow {

    position: absolute;

    bottom: -30px;

    left: 10%;

    width: 80%;

    height: 35px;

    background:
        radial-gradient(
            ellipse,
            rgba(0, 174, 255, .55),
            transparent 70%
        );

    filter: blur(12px);

    opacity: .3;

    transition:
        opacity .4s ease,
        transform .4s ease;

    z-index: 0;
}

.logo-card:hover .card-glow {

    opacity: 1;

    transform:
        scale(1.2);
}

/* =====================================================
   PAUSE ON HOVER
===================================================== */

.marquee:hover .marquee-content {

    animation-play-state: paused;
}

/* =====================================================
   SECOND ROW - OPPOSITE DIRECTION
===================================================== */

.marquee.reverse {

    padding-top: 0;
}

.marquee.reverse .marquee-content {

    animation-name:
        marqueeReverse;

    animation-duration:
        38s;
}

@keyframes marqueeReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .clients-section {

        padding: 55px 0;

    }

    .marquee::before,
    .marquee::after {

        width: 90px;

    }

    .marquee-content {

        gap: 22px;

        padding-left: 22px;

        animation-duration:
            25s;

    }

    .logo-card {

        width: 145px;

        height: 85px;

        padding: 12px;

        border-radius: 11px;

    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .clients-title {

        margin-bottom: 25px;

    }

    .clients-title h2 {

        font-size: 29px;

    }

    .clients-title p {

        font-size: 13px;

        padding: 0 20px;

    }

    .logo-card {

        width: 125px;

        height: 72px;

    }

    .marquee-content {

        gap: 18px;

    }

    .marquee::before,
    .marquee::after {

        width: 55px;

    }

}
