/*
 * Name:        mm_home.css
 * Author:      George Lomas
 * Date:        xx-xx-2025
 * Purpose:     Styles for MileageMonster landing page
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: var(--color-three);
  overflow-x: hidden;
  position: relative;
}

:root {
  --color-one: #cc66ff;
  --color-two: #66ccff;
  --color-three: #222222;
  --color-four: #333333;
  --color-five: #444444;
  --text-one: #ffffff;
  --text-two: #C9C9C9;
}

a {
  text-decoration: none;
  color: #cc66ff;
}

button, input, textarea {
  background: none;
  border: none;
  outline: none;
}

.main-container {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.hero-section {
  width: 100%;
  height: fit-content;
  background: linear-gradient(rgba(0,0,0,0.95),rgba(0,0,0,0.7),rgba(0,0,0,0.95)), url('/hero-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 70px;
}

.hero-section .navbar {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 102;
}

.navbar {
  padding: 10px !important;
}

.nav-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.nav-content .main-logo {
  width: 200px;
}

.nav-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
}

.nav-content ul li {
  margin-right: 20px;
}

.nav-content ul li a {
  color: var(--text-two);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid #0000;
  transition: all 0.2s;
}

.nav-content ul li a.nav-active {
  color: var(--text-one);
  border-color: var(--color-one);
}

.nav-content ul li a:hover {
  color: var(--text-one);
}

#navList li.has-dropdown:hover > a {
  color: var(--text-one);
}

/* Dropdown Styles */
#navList li.has-dropdown {
  position: relative;
}

#navList li.has-dropdown .dropdown {
  display: block;
  position: absolute;
  top: 130%;
  left: -20px;
  background: '#000';
  backdrop-filter: blur(7px);
  border-radius: 30px;
  padding-left: 20px;
  padding-bottom: 4px;
  list-style: none;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

#navList li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#navList .dropdown li a {
  color: var(--text-two);
  font-size: 16px;
  font-weight: 500;
  padding-top: 18px;
  display: block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

#navList .dropdown li a:hover,
#navList .dropdown li a.nav-active {
  color: var(--text-one);
}

.navbar .nav-btns {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btns button {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--text-one);
  color: var(--text-one);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.2s;
}

.nav-btns button:hover {
  background: var(--text-one);
  color: var(--color-three);
}

#login-button-top {
  border-color: #cc66ff;
  color: var(--color-one);
  cursor: pointer;
}

#login-button-top:hover {
  background: var(--color-one);
  color: var(--color-three);
}

#refer-button {
  border-color: #ffffff;
  color: #ffffff;
  cursor: pointer;
}

#refer-button:hover {
  background: #ffffff;
  color: var(--color-three);
}

.fa-dollar-sign {
  color: #00df04;
}

.hero-content {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 5%;
  z-index: 1;
  overflow: hidden;
}

.hero-con-con {
  max-width: 1100px;
  min-height: 650px;
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-txt, .hero-mockup {
  width: 50%;
  height: fit-content;
}

.hero-txt h1 {
  max-width: 600px;
  color: var(--text-one);
  font-size: 50px;
  margin-bottom: 30px;
  line-height: 70px;
}

.hero-txt p {
  color: var(--text-two);
  max-width: 80%;
  margin-bottom: 80px;
  font-size: 16px;
  font-weight: 600;
}

.trial-txt {
  color: #cc66ff !important;
  font-weight: 600;
  font-size: 14px !important;
  margin-top: 16px;
  margin-left: 20px;
}

.hero-txt button {
  min-width: 180px;
  width: fit-content;
  color: var(--color-one);
  font-size: 18px;
  border-radius: 10px;
  border: 1px solid var(--color-one);
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.hero-txt button i {
  margin-left: 6px;
}

.hero-txt button:hover {
  background: var(--color-one);
  color: var(--color-three);
}

.hero-mockup {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.hero-mockup img {
  width: 80%;
  margin-right: -20%;
  transition: width 0.3s ease-in-out;
}

.hero-mockup img.hover {
  width: 90%;
}

/* Employer section */
.Employer-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  padding: 6rem 5%;
  background: #000;
  background-size: cover;
  background-position: center;
  position: relative;
}

.Employer-section .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

.Employer-section .particleAh,
.Employer-section .particleBh,
.Employer-section .particleCh,
.Employer-section .particleDh {
  position: absolute;
  background: #fff;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 12px #fff, 0 0 20px #fff, 0 0 20px #fff, 0 0 22px #fff;
}

.particleAh {
  animation: floatAcross 30s infinite, fadeInOut 10s ease-in-out infinite;
}

.particleBh {
  animation: floatAcrossAlt 40s infinite, fadeInOut 10s ease-in-out infinite;
}

.particleCh {
  animation: floatDiagonal 25s infinite, fadeInOut 10s ease-in-out infinite;
}

.particleDh {
  animation: floatWave 30s infinite, fadeInOut 10s ease-in-out infinite;
}

@keyframes fadeInOut {
  0% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0.3; }
  55% { opacity: 1; }
  100% { opacity: 1; }
}

.Emp-sec-con {
  max-width: 1200px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.Emp-sec-con h2 {
  color: var(--text-one);
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
}

.Emp-sec-con p {
  max-width: 740px;
  width: 100%;
  color: var(--text-two);
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.Emp-sec-con .table-box {
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  background: #ffffff11;
  backdrop-filter: blur(8px);
  padding: 35px 30px;
  border-radius: 15px;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  overflow: visible;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-in-out;
}

.Emp-sec-con .table-box:hover {
  box-shadow: 0 0 8px #ffffff9c;
  box-shadow: 0px 0px 20px 5px #ffffff60;
}

.table-box h4 {
  font-size: 20px;
  color: var(--color-one);
  margin-bottom: 15px;
}

.table-box h2 {
  text-align: left;
  font-size: 35px;
  margin-bottom: 20px;
}

.table-box p {
  margin-bottom: 0;
  text-align: left;
}

.emp-c-left {
  width: 45%;
}

.emp-c-right {
  width: 45%;
  height: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.emp-c-right img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: #000000d2 0px 0px 20px 5px;
  position: absolute;
  right: 20%;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(4deg) skew(-2deg);
  transition: transform 0.8s ease-in-out, scale 0.6s ease-in-out;
  z-index: 2;
}

.emp-c-right img.hover {
  box-shadow: #000000d2 0px 0px 20px 5px;
  transform: translateY(-50%) translateX(-10%) rotate(0deg) skew(0deg) scale(1.5);
}

/* App features */
.features-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6rem 5%;
  background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,0.85), rgba(0,0,0,1)), url('/third-bg2.jpg');
  background-size: cover;
  background-position: center;
}

.feature-sec-con {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.feature-sec-con h2 {
  color: var(--text-one);
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
}

.feature-sec-con p {
  max-width: 740px;
  width: 100%;
  color: var(--text-two);
  font-size: 16px;
  text-align: center;
  margin-bottom: 70px;
}

.feature-box {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.f-box-one,
.f-box-three {
  width: 37%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.f-box-two {
  width: 26%;
  display: grid;
  grid-template-areas: 'stack';
  position: relative;
}

.f-box-one h3,
.f-box-three h3 {
  color: var(--text-one);
  margin-bottom: 10px;
}

.f-box-one p,
.f-box-three p {
  margin-bottom: 40px;
}

/* Transitioning images */
.f-box-two img {
  grid-area: stack;
  width: 100%;
  height: auto;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.f-box-two img.active {
  opacity: 1;
}

.f-box-two .shadow-box {
  grid-area: stack;
  width: 90%;
  height: 93%;
  box-shadow: 0px 0px 100px #cc66ff7e;
  border-radius: 30px;
  z-index: 1;
  justify-self: center;
  align-self: center;
}

.f-b-txt {
  max-width: 300px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

/* Initial text styles */
.f-b-txt h3,
.f-b-txt p {
  color: var(--text-two);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  z-index: 101;
}

/* Persistent hover effect on container hover */
.f-b-txt.active h3,
.f-b-txt.active p {
  color: var(--text-one);
  backdrop-filter: blur(1px);
  text-shadow: 0 0 20px #fff;
}

/* Particles */
.particles {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.particleA,
.particleB,
.particleC,
.particleD {
  position: absolute;
  background: #cc66ff;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  box-shadow: 0 0 10px #cc66ff, 0 0 12px #cc66ff, 0 0 20px #cc66ff, 0 0 22px #cc66ff, 0 0 30px #cc66ff;
}

.particleA {
  animation: floatAcross 30s infinite;
}

.particleB {
  animation: floatAcrossAlt 20s infinite;
}

.particleC {
  animation: floatDiagonal 25s infinite;
}

.particleD {
  animation: floatWave 10s infinite;
}

@keyframes floatAcross {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -40px); }
  50% { transform: translate(50px, 50px); }
  75% { transform: translate(-40px, 40px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatAcrossAlt {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-50px, 60px); }
  50% { transform: translate(60px, -40px); }
  75% { transform: translate(55px, 40px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatDiagonal {
  0% { transform: translate(0, 0); }
  25% { transform: translate(30px, 30px); }
  50% { transform: translate(-30px, -30px); }
  75% { transform: translate(20px, -20px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatWave {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, 20px); }
  50% { transform: translate(10px, -20px); }
  75% { transform: translate(-40px, 10px); }
  100% { transform: translate(0, 0); }
}

.fourth-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6rem 5%;
  background: #000;
}

.fourth-sec-con {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fourth-sec-con h2,
.fifth-sec-con h2,
.cta-c-left h2 {
  color: var(--text-one);
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
}

.fifth-sec-con p,
.cta-c-left p {
  max-width: 740px;
  width: 100%;
  color: var(--text-two);
  font-size: 16px;
  text-align: center;
}

.fourth-sec-con p {
  width: 70%;
  color: var(--text-two);
  font-size: 16px;
  text-align: left;
}

.fourth-sec-p {
  text-align: center !important;
}

/* Portal Feature Styles */
.portal-feature {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
}

.portal-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1260px;
  width: 100%;
  height: 600px;
  margin-bottom: 40px;
  position: relative;
  background: #222;
  border-radius: 30px;
}

.portal-image-wrapper {
  position: absolute;
  max-width: 1260px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.portal-image-wrapper.active {
  opacity: 1;
}

.portal-image {
  max-width: 1260px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
  box-shadow: 0 0 8px 5px #222;
}

.portal-cards {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.portal-texts {
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-right: 20px;
  text-align: center;
}

.icon-and-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.arrow-icon {
  color: #cc66ff;
  margin-right: 16px;
  font-size: 22px;
}

.p-f-txt {
  position: relative;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.p-f-txt p {
  position: relative;
  color: var(--text-two);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  z-index: 101;
}

.p-f-txt.active p {
  color: var(--text-one);
  backdrop-filter: blur(1px);
  text-shadow: 0 0 20px #fff;
}

.p-f-txt .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 100;
}

.p-f-txt.active .particles {
  opacity: 1;
}

.p-f-txt .particles .particleA,
.p-f-txt .particles .particleB,
.p-f-txt .particles .particleC,
.p-f-txt .particles .particleD {
  position: absolute;
  background: #fff;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 12px #fff, 0 0 20px #fff, 0 0 22px #fff, 0 0 30px #fff;
}

.p-f-txt .particles .particleA {
  animation: floatPAcross 30s infinite;
}

.p-f-txt .particles .particleB {
  animation: floatPAcrossAlt 20s infinite;
}

.p-f-txt .particles .particleC {
  animation: floatPDiagonal 25s infinite;
}

.p-f-txt .particles .particleD {
  animation: floatPWave 10s infinite;
}

@keyframes floatPAcross {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -5px); }
  50% { transform: translate(50px, 12px); }
  75% { transform: translate(-40px, -8px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatPAcrossAlt {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-50px, 18px); }
  50% { transform: translate(60px, -2px); }
  75% { transform: translate(55px, 10px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatPDiagonal {
  0% { transform: translate(0, 0); }
  25% { transform: translate(30px, -3px); }
  50% { transform: translate(-30px, 15px); }
   rend
  75% { transform: translate(20px, -6px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatPWave {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, 8px); }
  50% { transform: translate(10px, 19px); }
  75% { transform: translate(-40px, -4px); }
  100% { transform: translate(0, 0); }
}

.fifth-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6rem 5%;
  background: linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.75)), url('/hero-bg.jpg');
  background-position: center;
  background-size: cover;
}

.fifth-sec-con {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.f-imgs-sec {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  margin-top: 20px;
}

.f-imgs-sec img {
  border-radius: 10px;
  border: 1px solid #cc66ff84;
  box-shadow: #cc66ff52 0px 8px 24px;
}

.f-imgs-web {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.f-imgs-sec .f-img-one {
  width: 20%;
  border: none !important;
  box-shadow: none !important;
}

.f-imgs-sec .f-img-two {
  width: 30%;
}

.f-imgs-sec .f-img-three {
  width: 100%;
  margin-bottom: 26px;
}

.f-imgs-sec .f-img-four {
  width: 100%;
}

.cta-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 5%;
  background: #000;
}

.cta-sec-con {
  max-width: 1200px;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--text-two);
  padding: 0px 30px;
  border-radius: 20px;
}

.cta-c-left,
.cta-c-right {
  width: 50%;
}

.cta-c-left h2 {
  color: var(--color-three);
  text-align: left;
}

.cta-c-left p {
  color: var(--color-five);
  margin-bottom: 40px;
  text-align: left;
}

.cta-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.cta-btn img {
  width: 200px;
}

.cta-c-right {
  display: flex;
  justify-content: flex-end;
  margin-right: -10%;
}

.cta-c-right img {
  width: 80%;
}

.footer {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 0px 0rem 0px;
  background: var(--color-four);
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
  padding: 0 5%;
}

.footer-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 15px;
}

.footer-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-two);
  transition: 0.2s;
}

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

.f-con-link {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 30px;
}

.f-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--text-one);
  transition: 0.2s;
}

.f-social a i {
  color: var(--text-one);
}

.f-social a:hover {
  border-color: var(--color-one);
  background: var(--color-one);
  color: var(--text-one);
}

.f-para {
  width: 80%;
  color: var(--text-two);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 24px;
  margin-bottom: 30px;
}

.footer .contact-form {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--text-two);
  background: var(--color-three);
  border-radius: 10px;
  padding: 20px;
}

.contact-form h3 {
  color: var(--text-one);
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 18px;
  border: 1px solid var(--text-two);
  margin-bottom: 10px;
  background: var(--color-four);
  color: var(--text-one);
}

.contact-form button {
  width: 100%;
  background: var(--text-one);
  color: var(--color-three);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 10px;
  margin-top: 10px;
  transition: 0.2s;
}

.contact-form button:hover {
  background: var(--color-one);
}

.footer-note {
  width: 100%;
  background: var(--color-three);
  text-align: center;
  color: var(--text-two) !important;
  font-weight: 300;
  padding: 15px 5%;
  margin-top: 2rem;
}

.menu-toggle {
  display: none;
}


/* Pricing */
.pricing-section {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background: #000;
  z-index: 1;
  color: var(--text-one);
  font-size: 16px;
  font-weight: 'bold';
  padding: 40px;
  padding-top: 100px;
  padding-bottom: 160px;
  position: relative;
}

.pricing-section h2 {
  color: var(--text-one);
  margin-bottom: 20px;
  font-size: 50px;
  text-align: center;
}

.pricing-top {
  margin-bottom: 50px;
}

.pricing-top p {
  text-align: center;
}

.pricing-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pricing-bottom {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.table-wrapper {
  width: 100%;
  background-color: #ffffff11;
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.6s ease-in-out;
}

.table-wrapper:hover {
  box-shadow: 0 0 8px #ffffff9c;
  box-shadow: 0px 0px 20px 5px #ffffff60;
}

.pricing-table {
  width: 100%;
}

.pricing-table th, .pricing-table td {
  padding: 6px;
  text-align: left;
  border-bottom: 1px solid #555555;
}

.pricing-table th {
  font-weight: bold;
}

.pricing-table thead, .pricing-table tbody {
  padding: 20px;
}

.pricing-section .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.pricing-section .particleAh,
.pricing-section .particleBh,
.pricing-section .particleCh,
.pricing-section .particleDh {
  position: relative;
  background: #fff;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 12px #fff, 0 0 20px #fff, 0 0 20px #fff, 0 0 22px #fff;
}

.free-offer {
  color: gold;
  margin-left: 60px;
}

.fa-gift {
  font-size: 14px;
  margin-right: 6px;
}

#guide-button {
  cursor: pointer;
  background: none !important;
  color: gold !important;
  border-color: gold !important;
  transition: all 0.3s ease-in-out;
}

#guide-button:hover {
  background: gold !important;
  color: #222222 !important;
}


@media(max-width:1200px) {
  .nav-right {
    width: fit-content;
    display: flex;
    align-items: center;
  }

  .hero-section {
    padding-top: 70px;
  }

  .hero-section .navbar {
    padding: 20px 5%;
  }

  .nav-content .main-logo {
    width: 200px;
  }

  .menu-toggle {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-one);
    font-size: 30px;
    margin-left: 20px;
  }

  .nav-content ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000000d2;
    position: absolute;
    right: 0;
    top: 146px;
    backdrop-filter: blur(5px);
    padding: 20px 30px 60px 30px;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .nav-content ul.show {
    display: flex;
  }

  .nav-content ul li {
    margin: 5px 0;
  }

  .nav-content ul li a {
    color: var(--text-one);
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 0px;
    border-bottom: 2px solid #0000;
    transition: all 0.2s;
  }

  .nav-content ul li.has-dropdown .dropdown {
    display: block;
    position: static;
    padding: 0;
    margin-left: 140px;
    margin-top: -50px;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-content ul .dropdown li a {
    padding: 0 20px;
    font-size: 14px;
    border-bottom: 2px solid transparent;
  }

  .navbar .nav-btns {
    display: none;
  }

  .navbar .nav-btns.show {
    display: flex;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0;
    background: #000000d2;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    gap: 12px;
  }

  .nav-btns button {
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid var(--text-one);
    color: var(--text-one);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s;
  }

  .nav-btns button:hover {
    background: var(--text-one);
    color: var(--color-three);
  }

  #login-button-top {
    border-color: #cc66ff;
    color: var(--color-one);
  }

  #login-button-top:hover {
    background: var(--color-one);
    color: var(--color-three);
  }

  .side-tray {
    width: 65% !important;
  }

  .portal-cards {
    flex-direction: column;
  }

  .portal-texts {
    flex-direction: row;
    justify-content: space-around;
    width: 80%;
    margin-bottom: 20px;
  }

  .portal-image-container {
    background-color: #222;
  }

  .pricing-bottom {
    width: 70%;
  }
}

@media(max-width:900px) {
  .cta-btn {
    gap: 15px;
  }

  .cta-btn img {
    width: 145px;
  }

  .cta-c-right {
    display: flex;
    justify-content: flex-end;
    margin-right: -10%;
  }

  .cta-c-right img {
    width: 80%;
  }

  .portal-image-container {
    height: 450px;
  }

  .free-offer {
    margin-left: 0;
  }
}

@media(max-width:750px) {
  .navbar .nav-btns {
    display: none;
  }

  .navbar .nav-btns.show {
    display: flex;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    background: #000000d2;
    backdrop-filter: blur(5px);
  }

  .nav-content .main-logo {
    width: 150px;
  }

  .nav-btns button {
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid var(--text-one);
    color: var(--text-one);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s;
  }

  .hero-content {
    gap: 20px;
    padding: 10px 5%;
  }

  .hero-con-con {
    max-width: 1100px;
    min-height: fit-content;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0 0px 0;
  }

  .hero-txt, .hero-mockup {
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero-txt h1 {
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 60px;
    text-align: center;
  }

  .hero-txt p {
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
  }

  .hero-txt button {
    min-width: 180px;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero-mockup img {
    max-width: 400px;
    width: 80%;
    margin-right: -30%;
  }

  .Employer-section {
    padding: 4.5rem 5% 3.5rem 5%;
  }

  .Emp-sec-con h2 {
    font-size: 40px;
  }

  .Emp-sec-con p {
    max-width: 600px;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .Emp-sec-con .table-box {
    padding: 35px 30px;
    gap: 30px;
    flex-direction: column;
  }

  .table-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }

  .table-box h2 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
  }

  .table-box p {
    margin-bottom: 0;
    text-align: center;
  }

  .emp-c-left {
    width: 100%;
  }

  .emp-c-right {
    width: 100%;
    height: 500px;
    justify-content: center;
  }

  .emp-c-right img {
    max-width: 300px;
    right: auto;
    margin-right: 0;
  }

  .emp-c-right img.hover {
    transform: translateY(-50%) rotate(0deg) skew(0deg) scale(1.3);
    box-shadow: #000000d2 0px 0px 20px 5px;
  }

  .features-section {
    padding: 4rem 5%;
  }

  .feature-sec-con h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .feature-sec-con p {
    max-width: 600px;
    font-size: 16px;
    margin-bottom: 70px;
  }

  .feature-box {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .f-box-two {
    width: 100%;
    display: grid;
    grid-template-areas: 'stack';
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .f-box-two img {
    grid-area: stack;
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .f-box-two img.active {
    opacity: 1;
  }

  .f-box-two .shadow-box {
    grid-area: stack;
    width: 90%;
    height: 93%;
    max-width: 180px;
    box-shadow: 0px 0px 100px #cc66ff7e;
    border-radius: 30px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .f-box-one,
  .f-box-three {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .f-box-one p,
  .f-box-three p {
    margin-bottom: 0px;
  }

  .f-b-txt {
    max-width: 350px;
    width: 100%;
  }

  .fourth-section {
    padding: 4rem 5%;
  }

  .fourth-sec-con h2,
  .fifth-sec-con h2,
  .cta-c-left h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .fifth-sec-con p,
  .cta-c-left p {
    max-width: 600px;
    font-size: 16px;
  }

  .fourth-sec-con p {
    max-width: 600px;
    font-size: 11px;
  }

  .portal-image-container {
    max-width: 600px;
  }

  .portal-image-container {
    height: 300px;
  }

  .portal-texts {
    justify-content: center;
    gap: 15px;
  }

  .p-f-txt {
    max-width: 300px;
    padding: 10px 15px;
    font-size: 16px;
  }

  .fifth-section {
    padding: 4rem 5%;
  }

  .f-imgs-sec {
    flex-wrap: wrap;
    gap: 15px;
  }

  .f-imgs-web {
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .f-imgs-sec .f-img-one {
    max-width: 155px;
    width: 100%;
  }

  .f-imgs-sec .f-img-two {
    width: 190%;
    max-width: 230px;
  }

  .f-imgs-sec .f-img-three {
    width: 100%;
    margin-bottom: 15px;
  }

  .cta-section {
    padding: 4rem 5%;
  }

  .cta-sec-con {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .cta-c-left,
  .cta-c-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-c-left h2 {
    max-width: 450px;
    text-align: center;
    font-size: 35px;
  }

  .cta-c-left p {
    margin-bottom: 30px;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .cta-btn {
    max-width: 400px;
    width: 100%;
    gap: 10px;
  }

  .cta-btn a {
    width: 45%;
  }

  .cta-btn img {
    width: 100%;
  }

  .cta-c-right {
    display: none;
  }

  .footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 35px;
  }

  .footer-left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .footer-logo {
    width: 200px;
    margin-bottom: 15px;
  }

  .footer-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .f-con-link {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .f-social a {
    width: 35px;
    height: 35px;
  }

  .f-para {
    width: 80%;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer .contact-form {
    width: 100%;
    border-radius: 10px;
    padding: 20px 12px;
  }

  .contact-form h3 {
    font-size: 27px;
    margin-bottom: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 10px 10px;
    margin-top: 0px;
  }

  .footer-note {
    padding: 13px 5%;
    margin-top: 1rem;
    font-size: 13px;
  }

  .side-tray {
    width: 85% !important;
  }

  #toggle-button {
    width: 120px !important;
  }

  #login-button, #signup-button {
    width: 120px !important;
  }

  .refer-container {
    height: 90px;
  }
}

@media(max-width:550px) {
  .hero-txt h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 18px;
  }

  .hero-txt p {
    margin-bottom: 30px;
  }

  .Emp-sec-con h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .Emp-sec-con p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .table-box h4 {
    font-size: 16px;
  }

  .table-box h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .table-box p {
    margin-bottom: 10px;
  }

  .emp-c-right img {
    margin-right: auto;
  }

  .emp-c-right img.hover {
    transform: translateY(-50%) rotate(0deg) skew(0deg) scale(1.2);
    box-shadow: #000000d2 0px 0px 20px 5px;
  }

  .feature-sec-con h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .feature-sec-con p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .f-b-txt p {
    margin-bottom: 0px;
  }

  .f-imgs-sec .f-img-one {
    max-width: 110px;
    width: 100%;
  }

  .f-imgs-sec .f-img-two {
    width: 190%;
    max-width: 166px;
  }

  .f-imgs-sec .f-img-three {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media(max-width:450px) {
  .pricing-bottom {
    width: 90%;
  }
}

@media(max-width:400px) {
  .pricing-table {
    max-width: 225px;
    font-size: 12px;
  }
}


/* Side tray */
.side-tray {
  position: fixed;
  top: 0;
  right: 0;
  width: 35%;
  height: 100vh;
  background-color: #111;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  border-width: 0px;
  border-left: #444;
  border-left-width: 1px;
  border-style: solid;
  z-index: 104;
}

.side-tray.open {
  transform: translateX(0);
}

.side-tray-button {
  background-color: #333;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #444;
  padding: 10px;
  cursor: pointer;
  text-align: center;
}

.side-tray-button:hover {
  background-color: #444;
}

.side-tray-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-width: 0px;
  border-bottom: #444;
  border-bottom-width: 1px;
  border-style: solid;
  border-radius: 10px;
}

.side-tray-icon {
  color: #cc66ff;
  font-size: 18px;
  width: 20px;
}

.side-tray-body {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px;
  border-radius: 10px;
  height: 90%;
}

.side-tray-body div {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}

.side-tray-body div:not(.input-container) {
  display: block;
}

.side-tray-body-text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.side-tray-logo {
  width: 20%;
  height: auto;
  align-self: center;
}

.info-tag {
  font-size: 18px;
  font-weight: bold;
  margin: 0px;
  color: #cc66ff;
}

.input-container {
  display: flex;
  align-items: center;
  position: relative;
}

.input-container label {
  width: 30%;
  text-align: right;
  margin-right: 10px;
}

.input-container input {
  width: 90%;
  padding: 10px;
  padding-left: 20px;
  padding-right: 40px;
  border-radius: 10px;
  border: 2px solid #C9C9C9;
  background-color: #222;
  color: #fff;
  font-size: 16px;
}

.input-container input:focus {
  outline: none;
  border-color: #cc66ff;
  box-shadow: 0 0 6px rgba(204,102,255,0.6);
}

#company-name-input {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#company-name-input.invisible {
  opacity: 0;
  pointer-events: none;
}

#password-strength-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  border: 2px solid #555;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.side-tray.signup-mode #password-strength-icon {
  opacity: 1;
}

#password-strength-icon.fa-circle-xmark {
  color: #fd4b4b;
}

#password-strength-icon.fa-exclamation-circle {
  color: #ff9900;
}

#password-strength-icon.fa-check-circle {
  color: #00df04;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 103;
  display: none;
}

.overlay.visible {
  display: block;
}

#error-message {
  display: flex;
  flex-direction: column;
  height: 6%;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding: 10px;
}

#error-message div:first-child {
  color: white;
}

#error-message div:last-child {
  color: white;
  margin-top: -4px;
}

.button-row {
  display: flex !important;
  flex-direction: row !important;
  width: 100%;
}

.button {
  background-color: #cc66ff;
  color: white;
  padding: 16px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid #222;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button:hover {
  background-color: #d582fe;
}

#toggle-button {
  width: 180px;
  height: 54px;
  background-color: #333;
  color: #cc66ff;
}

#toggle-button:hover {
  background-color: #444;
}

#login-button, #signup-button {
  width: 180px;
}

.loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.button.loading .loader {
  display: inline-block;
}

.button.loading span:not(.loader) {
  display: none;
}

.button.loading {
  background-color: #d582fe;
}

.agreement-text {
  font-weight: bold;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.agreement-text.invisible {
  opacity: 0;
  pointer-events: none;
}

#agreement-text {
  min-height: 20px;
}

.password-meta {
  margin-top: -50px;
  position: relative;
  text-align: center;
}

#password-strength-message,
#forgot-password-container {
  font-size: 12px;
  text-align: center;
  color: var(--text-two);
  min-height: 20px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 30px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#password-strength-message.visible,
#forgot-password-container.visible {
  opacity: 1;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.visible {
  opacity: 1;
  pointer-events: auto;
}

#forgot-password-link {
  font-size: 13px;
  color: var(--color-one);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

#forgot-password-link:hover {
  color: #d582fe;
  text-shadow: 0 0 6px #111;
}

#forgot-password-loader {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.agreement-text {
  transition: opacity 0.3s ease;
}

.agreement-text-content {
  color: var(--text-two);
  font-size: 12px;
  text-align: center;
}

.agreement-text-content a {
  text-decoration: underline;
}

.agreement-text-visible {
  opacity: 1;
}

.agreement-text-hidden {
  opacity: 0;
}

.button-hidden {
  display: none;
}

.button-visible {
  display: block;
}

.link-disabled {
  pointer-events: none;
}

.link-enabled {
  pointer-events: auto;
}

.loader-visible {
  opacity: 1 !important;
}

.loader-hidden {
  opacity: 0;
}

.error-message-error {
  color: #fd4b4b;
}

.error-message-success {
  color: #00df04;
}

.error-message-prefix {
  color: #fd4b4b;
  padding-bottom: 0px;
}

.error-message-success-prefix {
  color: #00df04;
  padding-bottom: 0px;
}

.divider {
  all: initial;
  width: 1px;
  height: 20px;
  border-right: 1px solid #444;
  border-radius: 0px !important;
  padding: 0px !important;
}


/* Referral */
.refer-container {
  width: 100%;
  height: 125px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.refer-half {
  position: absolute !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-evenly !important;
  align-items: center !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.refer-half.visible {
  pointer-events: all;
  opacity: 1;
}

.refer-input-half {
  border-radius: 10px !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #333 !important;
}

.refer-text {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-two);
  text-align: center;
}

#referral {
  width: 100%;
  font-size: 12px !important;
  text-align: center !important;
  padding-right: 20px !important;
}





/* Employers section particles */
.particle-ah-1 { left: 5%; top: 10%; animation-delay: 0.5s; }
.particle-ah-2 { left: 40%; top: 60%; animation-delay: 1.1s; }
.particle-ah-3 { left: 85%; top: 80%; animation-delay: 0s; }
.particle-ah-4 { left: 45%; top: 25%; animation-delay: 1.4s; }
.particle-ah-5 { left: 10%; top: 75%; animation-delay: 0.2s; }
.particle-ah-6 { left: 50%; top: 30%; animation-delay: 1.7s; }
.particle-ah-7 { left: 80%; top: 60%; animation-delay: 0.6s; }
.particle-ah-8 { left: 20%; top: 45%; animation-delay: 0.8s; }

.particle-bh-1 { left: 80%; top: 20%; animation-delay: 0.8s; }
.particle-bh-2 { left: 10%; top: 90%; animation-delay: 1.4s; }
.particle-bh-3 { left: 20%; top: 35%; animation-delay: 0s; }
.particle-bh-4 { left: 75%; top: 85%; animation-delay: 1.8s; }
.particle-bh-5 { left: 35%; top: 15%; animation-delay: 0.6s; }
.particle-bh-6 { left: 60%; top: 65%; animation-delay: 1.2s; }
.particle-bh-7 { left: 90%; top: 30%; animation-delay: 0.4s; }
.particle-bh-8 { left: 25%; top: 50%; animation-delay: 1.6s; }

.particle-ch-1 { left: 15%; top: 70%; animation-delay: 1.2s; }
.particle-ch-2 { left: 70%; top: 15%; animation-delay: 1.8s; }
.particle-ch-3 { left: 60%; top: 65%; animation-delay: 0s; }
.particle-ch-4 { left: 30%; top: 40%; animation-delay: 2.2s; }
.particle-ch-5 { left: 45%; top: 25%; animation-delay: 0.9s; }
.particle-ch-6 { left: 85%; top: 80%; animation-delay: 1.5s; }
.particle-ch-7 { left: 10%; top: 90%; animation-delay: 0.7s; }
.particle-ch-8 { left: 50%; top: 30%; animation-delay: 1.1s; }

.particle-dh-1 { left: 90%; top: 30%; animation-delay: 1.6s; }
.particle-dh-2 { left: 25%; top: 50%; animation-delay: 2.1s; }
.particle-dh-3 { left: 35%; top: 95%; animation-delay: 0s; }
.particle-dh-4 { left: 95%; top: 55%; animation-delay: 0.6s; }
.particle-dh-5 { left: 20%; top: 45%; animation-delay: 1.9s; }
.particle-dh-6 { left: 80%; top: 60%; animation-delay: 0.3s; }
.particle-dh-7 { left: 40%; top: 25%; animation-delay: 2.0s; }
.particle-dh-8 { left: 60%; top: 85%; animation-delay: 0.8s; }


/* Features section particles for vehicles */
.particle-a-1 { left: 5%; top: 8%; animation-delay: 0.5s; }
.particle-b-1 { left: 78%; top: 22%; animation-delay: 1.2s; }
.particle-c-1 { left: 23%; top: 15%; animation-delay: 0.2s; }
.particle-d-1 { left: 92%; top: 27%; animation-delay: 1.5s; }
.particle-a-2 { left: 47%; top: 19%; animation-delay: 0.9s; }
.particle-b-2 { left: 15%; top: 25%; animation-delay: 1.7s; }
.particle-c-2 { left: 60%; top: 12%; animation-delay: 1.4s; }
.particle-d-2 { left: 35%; top: 29%; animation-delay: 0.3s; }
.particle-a-3 { left: 85%; top: 14%; animation-delay: 1.9s; }
.particle-b-3 { left: 10%; top: 21%; animation-delay: 0.6s; }
.particle-c-3 { left: 70%; top: 18%; animation-delay: 0.8s; }
.particle-d-3 { left: 40%; top: 23%; animation-delay: 1.1s; }

/* Features section particles for customers */
.particle-a-4 { left: 65%; top: 4%; animation-delay: 0.7s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-b-4 { left: 20%; top: 27%; animation-delay: 1.3s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-c-4 { left: 30%; top: 8%; animation-delay: 0.2s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-d-4 { left: 90%; top: 11%; animation-delay: 1.6s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-a-5 { left: 80%; top: 10%; animation-delay: 1.4s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-b-5 { left: 50%; top: 16%; animation-delay: 0s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-c-5 { left: 45%; top: 26%; animation-delay: 1.1s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-d-5 { left: 15%; top: 13%; animation-delay: 0.5s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-a-6 { left: 25%; top: 22%; animation-delay: 0s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-b-6 { left: 70%; top: 9%; animation-delay: 0.8s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-c-6 { left: 60%; top: 19%; animation-delay: 0.7s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }
.particle-d-6 { left: 95%; top: 15%; animation-delay: 0.3s; background: #66ccff; box-shadow: 0 0 10px #66ccff, 0 0 12px #66ccff, 0 0 20px #66ccff, 0 0 22px #66ccff, 0 0 30px #66ccff; }

/* Features section particles for input */
.particle-a-7 { left: 35%; top: 14%; animation-delay: 0.4s; }
.particle-b-7 { left: 88%; top: 27%; animation-delay: 1.1s; }
.particle-c-7 { left: 10%; top: 20%; animation-delay: 1.9s; }
.particle-d-7 { left: 70%; top: 16%; animation-delay: 0.6s; }
.particle-a-8 { left: 50%; top: 23%; animation-delay: 1.3s; }
.particle-b-8 { left: 25%; top: 11%; animation-delay: 0.2s; }
.particle-c-8 { left: 80%; top: 28%; animation-delay: 1.5s; }
.particle-d-8 { left: 15%; top: 18%; animation-delay: 0.9s; }
.particle-a-9 { left: 60%; top: 22%; animation-delay: 1.7s; }
.particle-b-9 { left: 90%; top: 15%; animation-delay: 1.4s; }
.particle-c-9 { left: 40%; top: 26%; animation-delay: 0.7s; }
.particle-d-9 { left: 75%; top: 12%; animation-delay: 1.2s; }

/* Features section particles for journeys */
.particle-a-10 { left: 95%; top: 24%; animation-delay: 0.4s; }
.particle-b-10 { left: 22%; top: 19%; animation-delay: 1.7s; }
.particle-c-10 { left: 15%; top: 28%; animation-delay: 1.9s; }
.particle-d-10 { left: 40%; top: 16%; animation-delay: 1.2s; }
.particle-a-11 { left: 85%; top: 21%; animation-delay: 1.3s; }
.particle-b-11 { left: 70%; top: 13%; animation-delay: 0.6s; }
.particle-c-11 { left: 30%; top: 25%; animation-delay: 1.0s; }
.particle-d-11 { left: 50%; top: 17%; animation-delay: 0.8s; }
.particle-a-12 { left: 10%; top: 20%; animation-delay: 0.2s; }
.particle-b-12 { left: 75%; top: 11%; animation-delay: 1.5s; }
.particle-c-12 { left: 90%; top: 15%; animation-delay: 1.4s; }
.particle-d-12 { left: 60%; top: 29%; animation-delay: 1.8s; }

/* Features section particles for claims */
.particle-a-13 { left: 28%; top: 26%; animation-delay: 0.9s; }
.particle-b-13 { left: 80%; top: 18%; animation-delay: 1.4s; }
.particle-c-13 { left: 45%; top: 22%; animation-delay: 0.3s; }
.particle-d-13 { left: 15%; top: 14%; animation-delay: 1.7s; }
.particle-a-14 { left: 90%; top: 27%; animation-delay: 1.1s; }
.particle-b-14 { left: 60%; top: 16%; animation-delay: 0.5s; }
.particle-c-14 { left: 35%; top: 21%; animation-delay: 1.9s; }
.particle-d-14 { left: 70%; top: 13%; animation-delay: 0.7s; }
.particle-a-15 { left: 20%; top: 19%; animation-delay: 1.6s; }
.particle-b-15 { left: 85%; top: 25%; animation-delay: 0.2s; }
.particle-c-15 { left: 50%; top: 28%; animation-delay: 1.3s; }
.particle-d-15 { left: 10%; top: 17%; animation-delay: 0.8s; }

/* Pricing section particlees */
.particle-ap-1 { left: 5% !important; top: 10% !important; animation-delay: 0.5s; }
.particle-ap-2 { left: 40% !important; top: 60% !important; animation-delay: 1.1s; }
.particle-ap-3 { left: 85% !important; top: 80% !important; animation-delay: 0s; }
.particle-ap-4 { left: 45% !important; top: 25% !important; animation-delay: 1.4s; }
.particle-ap-5 { left: 10% !important; top: 75% !important; animation-delay: 0.2s; }
.particle-ap-6 { left: 50% !important; top: 30% !important; animation-delay: 1.7s; }
.particle-ap-7 { left: 80% !important; top: 60% !important; animation-delay: 0.6s; }
.particle-ap-8 { left: 20% !important; top: 45% !important; animation-delay: 0.8s; }

.particle-bp-1 { left: 80% !important; top: 20% !important; animation-delay: 0.8s; }
.particle-bp-2 { left: 10% !important; top: 90% !important; animation-delay: 1.4s; }
.particle-bp-3 { left: 20% !important; top: 35% !important; animation-delay: 0s; }
.particle-bp-4 { left: 75% !important; top: 85% !important; animation-delay: 1.8s; }
.particle-bp-5 { left: 35% !important; top: 15% !important; animation-delay: 0.6s; }
.particle-bp-6 { left: 60% !important; top: 65% !important; animation-delay: 1.2s; }
.particle-bp-7 { left: 90% !important; top: 30% !important; animation-delay: 0.4s; }
.particle-bp-8 { left: 25% !important; top: 50% !important; animation-delay: 1.6s; }

.particle-cp-1 { left: 15% !important; top: 70% !important; animation-delay: 1.2s; }
.particle-cp-2 { left: 70% !important; top: 15% !important; animation-delay: 1.8s; }
.particle-cp-3 { left: 60% !important; top: 65% !important; animation-delay: 0s; }
.particle-cp-4 { left: 30% !important; top: 40% !important; animation-delay: 2.2s; }
.particle-cp-5 { left: 45% !important; top: 25% !important; animation-delay: 0.9s; }
.particle-cp-6 { left: 85% !important; top: 80% !important; animation-delay: 1.5s; }
.particle-cp-7 { left: 10% !important; top: 90% !important; animation-delay: 0.7s; }
.particle-cp-8 { left: 50% !important; top: 30% !important; animation-delay: 1.1s; }

.particle-dp-1 { left: 90% !important; top: 30% !important; animation-delay: 1.6s; }
.particle-dp-2 { left: 25% !important; top: 50% !important; animation-delay: 2.1s; }
.particle-dp-3 { left: 35% !important; top: 95% !important; animation-delay: 0s; }
.particle-dp-4 { left: 95% !important; top: 55% !important; animation-delay: 0.6s; }
.particle-dp-5 { left: 20% !important; top: 45% !important; animation-delay: 1.9s; }
.particle-dp-6 { left: 80% !important; top: 60% !important; animation-delay: 0.3s; }
.particle-dp-7 { left: 40% !important; top: 25% !important; animation-delay: 2.0s; }
.particle-dp-8 { left: 60% !important; top: 85% !important; animation-delay: 0.8s; }