:root {
  --default-font: 'Ubuntu', Verdana, Arial, Helvetica !important;
  --heading-font: 'Ubuntu', sans-serif !important;
  --nav-font: 'Ubuntu' !important;
  --background-color: #000000;
  --default-color: #f6f6f6;
  --heading-color: #ffffff;
  --accent-color: #12abdb;
  --surface-color: #181a1b;
  --contrast-color: #000000;
  --nav-color: #f6f6f6;
  --nav-hover-color: #22242a;
  --nav-mobile-background-color: #181a1b;
  --nav-dropdown-background-color: #181a1b;
  --nav-dropdown-color: #f6f6f6;
  --nav-dropdown-hover-color: #12abdb;
  scroll-behavior: smooth;
}

/* Color Presets */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #f6f6f6;
}
.dark-background {
  --background-color: #272936;
  --default-color: #f6f6f6;
  --heading-color: #f6f6f6;
  --surface-color: #404356;
  --contrast-color: #f6f6f6;
}

/* General Styling */
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);
}

/* Header */
.header {
  color: var(--default-color);
  background-color: transparent !important;
  padding: 20px 0;
  transition: background-color 0.5s, box-shadow 0.5s;
  z-index: 997;
}
.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
/*
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.scrolled .header {
  --background-color: #272936;
}
*/

.scrolled .header {
  background-color: var(--background-color) !important;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Navigation Menu */
@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;
    margin-left: 5px;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: #12abdb !important;
    color: var(--contrast-color) !important;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 105%;
    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;
  }
}
@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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 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;
  }
}

/* Footer */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
  box-shadow: 0 -6px 24px -8px rgba(18, 171, 219, 0.18);
}
.footer h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px 0;
}
.footer p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 10px 0;
}
.footer .social-links {
  margin: 0 0 30px 0;
}
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before,
#preloader:after {
  content: '';
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  animation-delay: -0.5s;
}
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--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;
  bottom: 15px;
}

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

/* Page Titles & Breadcrumbs */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}
.page-title:before {
  content: '';
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  position: absolute;
  inset: 0;
}
.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: '/';
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* Global Sections */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/* Section Titles */
.section-title {
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.section-title h2::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--heading-font);
}

/* Home Section */
.home {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000000;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.home .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}
.home h2 {
  padding-top: 50px;
  margin-bottom: 30px;
  font-size: 90px;
  font-weight: lighter;
}
.home h2 span {
  text-decoration: underline;
}
.home p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}
.home .carousel-control-prev,
.home .carousel-control-next {
  width: 10%;
}
.home .carousel-control-next-icon,
.home .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  width: auto;
  height: auto;
}
.home .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}
.home .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}
@media (min-width: 1024px) {
  .home p {
    max-width: 60%;
  }
  .home .carousel-control-prev,
  .home .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px) {
  .home .carousel-container {
    min-height: 90vh;
  }
  .home h2 {
    font-size: 28px;
  }
}
.home .home-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}
.home .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #12abdb;
  opacity: 0.6;
}
.home .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -3s;
  fill: #f6f6f6;
  opacity: 0.4;
}
.home .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #0070ad;
}
@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%);
  }
}

/* About Section */
.about ul {
  list-style: none;
  padding: 0;
}
.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: flex-start;
}
.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
  vertical-align: text-top;
}
.about .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: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.about .read-more:hover i {
  transform: translate(5px, 0);
}

/* Services Section */
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 30px 50px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.services .service-item .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 30px);
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}
.services .service-item:hover h3 {
  color: var(--accent-color);
}

/* Portfolio Section (Industry Solutions) */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

/* Contact Section */
.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 .email-form {
  height: 100%;
}
.contact .email-form input[type='text'],
.contact .email-form input[type='email'],
.contact .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 .email-form input[type='text']:focus,
.contact .email-form input[type='email']:focus,
.contact .email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .email-form input[type='text']::placeholder,
.contact .email-form input[type='email']::placeholder,
.contact .email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .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 .email-form button[type='submit']:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
.contact-quick-link a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s;
  padding-left: 5px;
}
.contact-quick-link a:hover,
.contact-quick-link a:focus {
  color: var(--accent-color);
  text-decoration: underline;
}
.contact-bgvid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
#contact {
  position: relative;
  overflow: hidden;
}
#contact > .container {
  position: relative;
  z-index: 1;
}
.contact .lh-lg ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Industry Solutions Card Styles */
.industry-solutions-card {
  background: linear-gradient(180deg, #232323 35%, #22343c 100%);
  border-radius: 28px;
  border: 1px solid #333;
  min-height: unset;
  margin-bottom: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.industry-solutions-card .industry-type {
  background: #000000;
  color: #bdbdbd;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 10px 0 10px 28px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  text-transform: uppercase;
}
.industry-solutions-card .industry-title {
  color: #e0e0e0;
  font-size: 1.2rem;
  font-family: 'Roboto Mono', 'Ubuntu', monospace, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 10px 0 10px 28px;
  text-transform: uppercase;
}
.industry-solutions-card:hover {
  box-shadow: 0 8px 32px 0 rgba(18, 171, 219, 0.18);
}
.industry-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #232323 0%, #22343c 100%);
  opacity: 0.7;
  margin: 0;
  border: none;
}

/* Quote Section */
.quoteSection {
  font-size: 3.3em;
  margin-bottom: 0;
  font-weight: 900;
  text-align: center;
}
.quoteIcon {
  font-size: 1em;
  background: -webkit-linear-gradient(#0070ad, #272936);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quoteIcon_ {
  display: inline-block;
  position: relative;
  font-size: 1em;
  font-weight: 900;
  color: #12abdb; /* Main fill color */
  text-shadow: 3px 4px 0 rgba(18, 171, 219, 0.25),
    /* shadow/offset */ 0 0 0 #fff, /* border fallback */ -1px -1px 0 #fff,
    1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  background: transparent;
}
.quoteColorText {
  color: var(--accent-color);
}
.quoteColorTextBig {
  color: var(--accent-color);
  font-size: 1.8em;
}
.text-center {
  display: block;
  text-align: center;
}

/* Icon image styling for service cards */
.service-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin-left: 10px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px #12abdb) brightness(0) saturate(100%)
    invert(62%) sepia(82%) saturate(747%) hue-rotate(162deg) brightness(92%)
    contrast(101%);
  transition: filter 0.3s;
}
.service-item:hover .service-icon-img {
  filter: drop-shadow(0 2px 8px #0070ad) brightness(0) saturate(100%)
    invert(34%) sepia(99%) saturate(747%) hue-rotate(170deg) brightness(92%)
    contrast(101%);
}

/* Home Headline */
.home-headline {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 4px 32px #12abdb, 0 2px 8px #000, 0 1px 0 #12abdb;
  margin-bottom: 30px;
  line-height: 1.1;
  text-align: center;
}
@media (max-width: 768px) {
  .home-headline {
    font-size: 2.2rem;
    padding: 0 10px;
  }
}

/* Responsive Video */
.responsive-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Utility Buttons */
.btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}
.btn:hover,
.btn:focus {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}
.formBtn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}
.formBtn:hover,
.formBtn:focus {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}
.formBtn.h-100 {
  min-height: 48px;
}
.footerLinkIcon {
  color: var(--accent-color);
}

.home .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.home > *:not(.bg-video) {
  position: relative;
  z-index: 1;
}

.btn-watch-video {
  font-size: 1.15rem;
  min-width: 120px;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.agent-border-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #12abdb;
  border-radius: 100px;
  padding: 0px 22px;
  font-weight: 500;
  font-size: 1.1rem;
  display: inline-block;
}
.agent-border-btn:hover,
.agent-border-btn:focus {
  background: #12abdb;
  color: #fff;
  text-decoration: none;
}
::selection {
  background: #336b7c;
}

wide-tooltip .tooltip-inner,
.extra-wide-tooltip .tooltip-inner {
  max-width: 250px !important; /* or 500px for extra-wide */
  min-width: 120px;
  white-space: normal;
  text-align: left;
}

.important-underline {
  color: #fff; /* Font color is white */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #1976d2; /* Underline color */
  font-weight: 600;
}
.important-underline:hover {
  color: #fff; /* Darker shade on hover */
  text-decoration-color: #12abdb;
}
.gradientBigText {
  font-size: 1.8em; /* Bigger text */
  font-weight: 700;
  background: linear-gradient(90deg, #6ec6ff 0%, #1976d2 60%, #5e35b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  line-height: 1.1;
  display: inline-block;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .gradientBigText {
    font-size: 1.4em; /* Adjust size for smaller screens */
  }
}
.smallSubtitle {
  display: block;
  font-size: 1rem;
  color: #f6f6f6;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: -4px;
  margin-bottom: 0;
  opacity: 0.85;
}
