@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Figtree", sans-serif;
  --heading-font: "Figtree", sans-serif;
  --nav-font: "Figtree", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #3c4049;
  --heading-color: #112344;
  --accent-color: #007e8c;
  --surface-color: #fafafa;
  --contrast-color: #ffffff;
  --light-text-color: #575e61;
}

:root {
  --nav-color: #3c4049;
  --nav-hover-color: #007e8c;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3c4049;
  --nav-dropdown-hover-color: #007e8c;
}

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

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
a.header-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid;
  border-image-source: linear-gradient(
    94.32deg,
    rgba(0, 126, 140, 0.2) 0%,
    rgba(0, 126, 140, 0) 30%,
    rgba(0, 126, 140, 0) 70%,
    rgba(0, 126, 140, 0.2) 100%
  );
  height: 44px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 126, 140, 0.2);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

/* Icon Wrapper */
a.header-demo-btn .box-icon img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.header-demo-btn:hover {
  transform: translateY(-2px);
  border-color: #4fd8e5;
  box-shadow: 0 10px 24px rgba(79, 216, 229, 0.15);

  color: #007e8c;
}
.navmenu a.header-demo-btn:hover:before,
.navmenu li:hover > a.header-demo-btn:before,
.navmenu .active:before {
  visibility: hidden;
}

/* Mobile */
@media (max-width: 991px) {
  .header-demo-btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-16 {
  background: #fafafa;
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer-16 .footer-main {
  margin-bottom: 80px;
}

.footer-16 .brand-section .logo {
  text-decoration: none;
}

.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer-16 .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer-16 .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer-16 .nav-column {
  margin-bottom: 40px;
}

.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-16 .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-16 .nav-column .footer-nav a {
  color: #0e181d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  transition: all 0.3s ease;
}

.footer-16 .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

/* Newsletter */

.footer-newsletter-box {
  padding-left: 30px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-email i {
  color: #4fd8e5;
  font-size: 16px;
}

.footer-email a {
  color: #4fd8e5;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 500;
}

.footer-newsletter-box p {
  color: #0e181d;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 22px;
}

/* Form */

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 6px;
  overflow: hidden;
  width: 350;
  height: 49;
  border-radius: 12px;
  border-width: 1px;
  justify-content: space-between;
  opacity: 1;
  padding-top: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-left: 20px;
  border: 1px solid #0000000a;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  height: 56px;
  padding: 0 20px;
  font-size: 16px;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.newsletter-form button {
  border: none;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  background: #b9ecf1;
  color: #111827;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #4fd8e5;
  color: #fff;
}
/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 100px;
}

.page-title .heading {
  padding: 80px 0;
}

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

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

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

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

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/BG.png") center/cover;
  opacity: 1;
  z-index: 0;
}

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

.hero .hero-content {
  padding: 2rem 0;
}

.hero .hero-content .trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero .hero-content .trust-badges .badge-item i {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .hero .hero-content .trust-badges {
    gap: 0.75rem;
  }

  .hero .hero-content .trust-badges .badge-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

.main h4 {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--accent-color);
}

.hero .hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: var(--heading-color);
  padding-right: 7rem;
}

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero .hero-content .hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero .hero-content .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .hero-content .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

.hero .hero-visual {
  position: relative;
  height: 600px;
}

.hero .hero-visual .main-image {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.hero .hero-visual .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero .hero-visual .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero .hero-visual .background-elements .element {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.1;
}

.hero .hero-visual .background-elements .element.element-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation: float1 6s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation: float2 8s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  animation: float3 7s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

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

@keyframes float3 {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-70%) rotate(180deg);
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.main section {
  padding: 20px 0;
}

.main section h4 {
  padding: 30px 0;
  white-space: nowrap;
}

.main section .container {
  padding: 30px;
}

.main section .innerBox {
  padding: 50px;
  border-radius: 48px;
  background-color: var(--surface-color);
}

.main section .featureInnerBox {
  min-height: 500px;
  background: transparent url("../img/features-bg.png") center/cover;
}

.main section .section-heading {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .main section .section-heading {
    font-size: 2rem;
  }
}

.main section .section-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--light-text-color);
  margin-bottom: 1.5rem;
}

.main section .section-content .cta-section .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.main section .section-content .cta-section .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.main section .about-visual {
  position: relative;
}

.main section .about-visual .main-image {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.main section .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.main section .main-image:hover img {
  transform: scale(1.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 16px;
  background: #f0f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 44px;
  height: 44px;
  margin-top: 10px;
  object-fit: contain;
}

.feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0e181d;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #575e61;
  margin: 0;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px;
    min-height: auto;
  }

  .feature-content h4 {
    font-size: 22px;
  }

  .feature-content p {
    font-size: 16px;
  }
}

.system-title {
  font-size: 44px;
  line-height: 130%;
  font-weight: 600;
  color: #0e181d;
  letter-spacing: -1%;
  padding-bottom: 40px;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.small-card {
  display: flex;
  align-items: flex-start;
  min-height: 110px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: none;
  gap: 5px;
}

.small-card:hover {
  transform: translateY(-4px);
}

.small-icon {
  border-radius: 0;
  width: auto;
  height: auto;
  min-width: 40px;
  background: transparent;
  justify-content: flex-start;
  align-items: flex-start;
}

.small-icon img {
  width: auto;
  height: auto;
  margin-top: 5px;
}

.small-card .feature-content h5 {
  font-size: 17px;
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1f2937;
}

.small-card .feature-content p {
  font-size: 14px;
  line-height: 150%;
  color: #575e61;
}

@media (max-width: 1199px) {
  .three-column-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-title {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .systemFeatureBox {
    padding: 30px 20px;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
  }

  .system-title {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .small-card {
    min-height: auto;
  }
}

.molecular-wrapper {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #cef7fc;
  display: flex;
  /* Background Gradient */
  background: linear-gradient(135deg, rgba(207, 243, 248, 0.4) 0%, #f5fffe 100%);
}

/* Gradient Button */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(90deg, #41c8d8 0%, #49d4e2 100%);

  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 14px 30px rgba(73, 212, 226, 0.35);
}

.btn-gradient i {
  font-size: 18px;
}

/* Outline Button */
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #111827;
  border: 1.5px solid #41c8d8;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #41c8d8;
  color: #fff;
}

/* Image */
.molecular-image {
  text-align: center;
}

.molecular-image img {
  max-width: 100%;
  animation: floatDNA 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatDNA {
  0%,
  100% {
    transform: translateY(0px);
  }

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

@media (max-width: 767px) {
  .btn-gradient,
  .btn-outline-custom {
    justify-content: center;
    width: 100%;
    font-size: 16px;
    padding: 16px 24px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 97%) 100%
  );
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}

/* ==========================================
   COMING SOON PAGE
========================================== */

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(79, 216, 229, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 126, 140, 0.12), transparent 35%), #f8fdff;
  padding: 120px 20px;
}

.coming-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.coming-logo {
  width: 170px;
  margin-bottom: 40px;
}

.badge-pill {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(79, 216, 229, 0.12);
  border: 1px solid rgba(79, 216, 229, 0.2);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.home-link {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 10px 18px;
  margin-top: 50px;
  border-radius: 10px;
  background: rgba(79, 216, 229, 0.12); 
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background: #4fd8e5;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4fd8e5;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.coming-wrapper h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  color: #0e181d;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.coming-wrapper h1 span {
  color: var(--accent-color);
}

.coming-wrapper p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 20px;
  line-height: 1.8;
  color: #5d6870;
}
 
.coming-newsletter {
  max-width: 620px;
  margin: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 126, 140, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.coming-newsletter input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  height: 64px;
  padding: 0 22px;
  font-size: 16px;
  color: #0e181d;
}

.coming-newsletter input::placeholder {
  color: #94a3b8;
}

.coming-newsletter button {
  border: none;
  height: 58px;
  padding: 0 30px;
  border-radius: 16px;
  background: linear-gradient(90deg, #41c8d8 0%, #49d4e2 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.coming-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(73, 212, 226, 0.35);
}
 
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.bg-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(79, 216, 229, 0.25);
  top: -120px;
  left: -120px;
}

.bg-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(0, 126, 140, 0.18);
  bottom: -100px;
  right: -100px;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px) {
  .coming-wrapper h1 {
    font-size: 52px;
  }

  
}

@media (max-width: 767px) {
  .coming-soon-page {
    padding: 100px 20px;
  }

  .coming-wrapper h1 {
    font-size: 38px;
  }

  .coming-wrapper p {
    font-size: 16px;
  }

  .count-box h2 {
    font-size: 42px;
  }

  .coming-newsletter {
    flex-direction: column;
    padding: 14px;
  }

  .coming-newsletter input,
  .coming-newsletter button {
    width: 100%;
  }

  .coming-newsletter button {
    height: 56px;
  }
}
 