/*
* Template Name: ComingSoon
* Template URL: https://bootstrapmade.com/comingsoon-free-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

:root {
  --default-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: "Manrope", "Inter", sans-serif;
  --nav-font: "Inter", system-ui, sans-serif;
}

:root {
  --background-color: #08111f;
  --default-color: #e5edf8;
  --heading-color: #ffffff;
  --accent-color: #ff4d4f;
  --accent-soft: rgba(255, 77, 79, 0.14);
  --surface-color: rgba(9, 17, 32, 0.72);
  --surface-strong: rgba(10, 19, 36, 0.88);
  --border-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
}

:root {
  --nav-color: rgba(229, 237, 248, 0.72);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: rgba(8, 17, 31, 0.96);
  --nav-dropdown-background-color: rgba(8, 17, 31, 0.96);
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #ff7a7c;
}

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.transparent-background {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: rgba(10, 19, 36, 0.74);
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  background:
    radial-gradient(circle at top left, rgba(255, 77, 79, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(84, 143, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(6, 12, 24, 0.64), rgba(6, 12, 24, 0.92)),
    url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 20, 0.72) 0%, rgba(4, 10, 20, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.6) 0%, rgba(8, 17, 31, 0.1) 100%);
  pointer-events: none;
  z-index: -1;
}

body.scrolled .header {
  background: rgba(8, 17, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1366px) {
  body {
    background-attachment: fixed;
  }
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
}

p {
  color: color-mix(in srgb, var(--default-color), white 6%);
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 14px;
}

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

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

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

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

.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0;
  transition: all 0.35s ease;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  gap: 14px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d4f, #c81e3a);
  box-shadow: 0 10px 30px rgba(255, 77, 79, 0.28);
}

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

.logo-subtitle {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 237, 248, 0.62);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 12px 10px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.25s ease;
    position: relative;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -7px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0;
    transition: all 0.25s ease;
  }

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

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

@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: 14px 0;
    margin: 0;
    border-radius: 18px;
    background-color: rgba(8, 17, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

  .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(7, 12, 23, 0.72);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

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

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

.footer-note p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer-small {
  margin-top: 8px;
  font-size: 13px;
}

.footer-small a {
  color: #ffffff;
  text-decoration: underline;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #07101d;
  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 {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(255, 77, 79, 0.22);
}

.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), white 10%);
}

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

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 72px 0;
  scroll-margin-top: 96px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 72px;
    padding: 64px 0;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 48px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-title p {
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9d9e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero {
  width: 100%;
  position: relative;
  padding: 110px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  max-width: 12ch;
}

.hero .hero-copy {
  margin: 22px 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 680px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metric-card {
  padding: 18px 18px 16px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.metric-value {
  display: block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.metric-label {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: rgba(229, 237, 248, 0.72);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-supporting-text {
  margin-top: 22px;
  font-size: 0.98rem;
  color: rgba(229, 237, 248, 0.82);
}

.hero-panel {
  position: relative;
}

.hero-contact-card,
.service-card,
.contact .info-item,
.contact .php-email-form,
.insight-card,
.trust-panel,
.compliance-note {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-contact-card {
  padding: 30px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffb8b9;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-contact-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-contact-card p {
  font-size: 1rem;
  line-height: 1.75;
}

.hero-contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.hero-contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #f1f6ff;
  font-size: 0.98rem;
}

.hero-contact-list i {
  color: #ff8f90;
  margin-top: 2px;
}

.hero-contact-list a {
  color: #fff;
  text-decoration: underline;
}

.hero-panel-cta {
  width: 100%;
}

.btn-primary-hero,
.btn-secondary-hero,
.contact .php-email-form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.btn-primary-hero,
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, #ff4d4f, #d62a3d);
  color: var(--contrast-color) !important;
  box-shadow: 0 16px 40px rgba(255, 77, 79, 0.24);
}

.btn-primary-hero:hover,
.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(255, 77, 79, 0.28);
}

.btn-secondary-hero {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--default-color) !important;
}

.btn-secondary-hero:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  padding-top: 16px;
}

.trust-panel {
  padding: 24px 28px;
}

.trust-panel p {
  margin: 0;
  font-size: 1rem;
}

.about h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

.about ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.about ul li {
  padding-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about ul i {
  font-size: 20px;
  color: var(--accent-color);
  margin-top: 4px;
}

.insight-card {
  padding: 28px;
}

.insight-card h4 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.services .service-card,
.why-us .service-card,
.case-study-card {
  padding: 30px;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services .service-card:hover,
.why-us .service-card:hover,
.case-study-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 79, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 77, 79, 0.12);
  color: #ff8f90;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.services .service-card h3,
.why-us .service-card h3,
.case-study-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-step {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ff9d9e;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.case-label {
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: #ff9d9e;
}

.compliance-note {
  padding: 18px 22px;
  margin-bottom: 30px;
}

.compliance-note p {
  margin: 0;
}

.contact .info-item {
  padding: 28px;
  height: 100%;
}

.contact .info-item i {
  font-size: 30px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 18px 0 10px 0;
}

.contact .info-item p,
.contact .info-item a {
  padding: 0;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 0;
  color: #f4f8ff;
}

.contact .info-item a {
  text-decoration: underline;
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 15px;
  padding: 14px 16px;
  box-shadow: none;
  border-radius: 14px;
  color: var(--default-color);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: rgba(255, 77, 79, 0.7);
  background-color: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(229, 237, 248, 0.52);
}

@media (max-width: 991px) {
  .hero {
    padding-top: 92px;
  }

  .hero h2 {
    max-width: none;
  }

  .hero-metrics,
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .header .logo h1 {
    font-size: 19px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .hero .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-hero,
  .btn-secondary-hero,
  .contact .php-email-form button[type=submit] {
    width: 100%;
  }

  .hero-contact-card,
  .service-card,
  .contact .info-item,
  .contact .php-email-form,
  .insight-card,
  .trust-panel,
  .compliance-note {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
