/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
: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: "Roboto Condensed", "Nunito Sans", sans-serif;
  --nav-font: "Roboto Condensed", "Raleway", sans-serif;

  --background-color: #031119;
  --default-color: rgba(255, 255, 255, 0.8);
  --heading-color: #e0e9f2;
  --accent-color: #0aa6e8;
  --surface-color: #1b262c;
  --contrast-color: #ffffff;

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
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);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px 5px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin: 8px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
# AOS mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e9f7ef;
  color: #198754;
  border: 1px solid #b7ebc6;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin: 18px 0 8px 0;
  font-size: 15px;
}

.update-badge i {
  font-size: 18px;
}

.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;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
  color: #09f;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .cta-button .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .tab-content .details-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.tabs .tab-content .details-list .doc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.tabs .tabs-container {
  padding: 0;
}

.tabs .nav-sidebar {
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  border-radius: 25px;
  padding: 30px 20px;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tabs .nav-sidebar {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }
}

.tabs .nav-pills .nav-item {
  margin-bottom: 15px;
}

.tabs .nav-pills .nav-item:last-child {
  margin-bottom: 0;
}

.tabs .nav-pills .nav-link {
  background: var(--surface-color);
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  cursor: pointer;
}

.tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.tabs .nav-pills .nav-link .nav-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.tabs .nav-pills .nav-link .nav-icon i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.tabs .nav-pills .nav-link .nav-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.tabs .nav-pills .nav-link .nav-text h6 {
  margin: 0 0 3px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.tabs .nav-pills .nav-link .nav-text span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
  display: block;
}

.tabs .nav-pills .nav-link .nav-arrow {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  opacity: 0.6;
}

.tabs .nav-pills .nav-link .nav-arrow i {
  font-size: 15px;
  color: var(--default-color);
  transition: all 0.4s ease;
}

.tabs .nav-pills .nav-link:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  transform: translateX(5px);
}

.tabs .nav-pills .nav-link:hover .nav-icon,
.tabs .nav-pills .nav-link.active .nav-icon {
  background: var(--contrast-color);
}

.tabs .nav-pills .nav-link:hover .nav-icon i,
.tabs .nav-pills .nav-link.active .nav-icon i {
  color: var(--accent-color);
}

.tabs .nav-pills .nav-link:hover .nav-text h6,
.tabs .nav-pills .nav-link:hover .nav-text span,
.tabs .nav-pills .nav-link.active .nav-text h6,
.tabs .nav-pills .nav-link.active .nav-text span,
.tabs .nav-pills .nav-link.active .nav-arrow i,
.tabs .nav-pills .nav-link:hover .nav-arrow i {
  color: var(--contrast-color);
}

.tabs .nav-pills .nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateX(8px);
}

.tabs .tab-content {
  padding: 0;
}

.tabs .tab-content .tab-pane {
  animation: slideInRight 0.6s ease-in-out;
}

.tabs .tab-content .content-card {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .tabs .tab-content .content-card {
    padding: 30px 25px;
  }
}

.tabs .tab-content .content-header {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.tabs .tab-content .content-header .header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 576px) {
  .tabs .tab-content .content-header .header-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }
}

.tabs .tab-content .content-header .header-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .tabs .tab-content .content-header .header-icon i {
    font-size: 28px;
  }
}

.tabs .tab-content .content-header .header-text {
  flex: 1;
}

.tabs .tab-content .content-header .header-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-header .header-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-header .header-text h3 {
    font-size: 22px;
  }
}

.tabs .tab-content .content-header .header-text p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#tabs-tab-1 .content-card .details-list .doc-item a {
  font-weight: bolder;
}

/*--------------------------------------------------------------
# Mobile fixes
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .tabs .nav-sidebar {
    position: relative;
    top: auto;
    margin-bottom: 20px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .tabs .nav-pills .nav-item {
    margin-bottom: 10px;
  }

  .tabs .nav-pills .nav-link {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
    align-items: center;
  }

  .tabs .nav-pills .nav-link .nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex: 0 0 40px;
  }

  .tabs .nav-pills .nav-link .nav-icon i {
    font-size: 17px;
  }

  .tabs .nav-pills .nav-link .nav-text h6 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 2px;
  }

  .tabs .nav-pills .nav-link .nav-text span {
    font-size: 11px;
    line-height: 1.35;
  }

  .tabs .nav-pills .nav-link .nav-arrow {
    display: none;
  }

  .tabs .tab-content .content-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .tabs .tab-content .content-header {
    gap: 16px;
    margin-bottom: 24px;
  }

  .tabs .tab-content .content-header .header-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .tabs .tab-content .content-header .header-icon i {
    font-size: 24px;
  }

  .tabs .tab-content .content-header .header-text h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .tabs .tab-content .content-header .header-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .tabs .tab-content .details-list {
    padding-left: 0;
    margin: 0;
  }

  .tabs .tab-content .details-list h5 {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 22px !important;
    margin-bottom: 12px;
  }

  .tabs .tab-content .details-list .doc-item {
    display: grid;
    grid-template-columns: 22px 1fr 22px;
    align-items: start;
    gap: 10px;
    margin-bottom: 14px !important;
  }

  .tabs .tab-content .details-list .doc-item i:first-child {
    margin-top: 3px;
    font-size: 18px;
  }

  .tabs .tab-content .details-list .doc-item a {
    display: block;
    min-width: 0;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .tabs .tab-content .details-list .doc-item i:last-child {
    margin-top: 3px;
    margin-left: 0 !important;
    justify-self: end;
    font-size: 16px;
  }

  .tabs .tab-content .content-header {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .tabs .tab-content .content-header .header-icon {
    margin: 0;
  }

  .tabs .tab-content .content-header .header-text h3 {
    font-size: 20px;
  }
}

