@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
: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: "Barlow",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color: #141820; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050918; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #015c8a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #000000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #14201c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #000000; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */


/* Add this at the end of your main.css file */

/* Light mode nav menu text color (before scroll) */
body.light-background .header .navmenu > ul > li > a {
  color: #222 !important;
}

/* Light mode nav menu text color (after scroll) */
body.light-background.scrolled .header .navmenu > ul > li > a,
body.light-background .header.scrolled .navmenu > ul > li > a {
  color: #fff !important;
}

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

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --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);
}

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);
}



.btn {
    background: linear-gradient(135deg, #015c8a, #0284c7);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(1, 92, 138, 0.3);
  }

  .btn:hover {
    background: linear-gradient(135deg, #0284c7, #015c8a);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(1, 92, 138, 0.4);
  }





/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.main-header {
  transition: all 0.4s ease;
  z-index: 1000 !important;
}

.navbar {
  background: transparent;
  transition: all 0.4s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  transition: 0.3s;
}

.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(1, 22, 36, 0.349);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar-collapse.show {
  backdrop-filter: blur(15px);
  background: rgba(10, 10, 10, 0.164);
  border-radius: 10px;
  margin-top: 10px;
  padding-bottom: 20px;
  transition: 0.4s;
}

/* Dropdown Menu */
.dropdown-menu {
  background: rgba(2, 2, 2, 0.24);
  padding-bottom: 10px;
  border: none;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.dropdown-item {
  color: #fff;
  position: relative;
}

.dropdown-item:hover {
  background-color: #006597;
  color: #fff;
}

/* Desktop hover only */
@media (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .hover-dropdown > .dropdown-toggle::after {
    display: none;
  }
}

/* Coming Soon Ribbon */
.ribbon {
  background-color: #ff0000;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-left: 8px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ---------- TOGGLER ANIMATION ---------- */
.custom-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}

.custom-toggler .bar1,
.custom-toggler .bar2,
.custom-toggler .bar3 {
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  transition: all 0.4s ease;
}

/* When active */
.custom-toggler.active .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active .bar2 {
  opacity: 0;
}

.custom-toggler.active .bar3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.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: 60px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 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;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Global 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-mix(in srgb, var(--background-color), transparent 30%);
  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: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--default-color);
  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;
  font-weight: 800;
}

.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;
  font-weight: 900;
  color: var(--default-color);
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--default-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px 0;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 35%) 0%, color-mix(in srgb, var(--background-color), transparent 10%) 400%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 40px 15px;
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color);
}

.hero .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  color: var(--accent-color);
}

.hero .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-visual {
  position: relative;
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: calc(50% - 10px);
}

.hero .feature-card:hover {
  transform: translateY(-5px);
}

.hero .feature-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.hero .feature-card span {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .feature-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    margin-top: 60px;
  }

  .hero .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero .hero-stats {
    gap: 24px;
  }

  .hero .feature-card {
    padding: 16px;
  }

  .hero .feature-card i {
    font-size: 24px;
  }

  .hero .feature-card span {
    font-size: 12px;
  }
}

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

  .hero .hero-visual {
    margin-top: 40px;
  }

  .hero .feature-card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .hero .feature-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero .feature-card span {
    font-size: 11px;
  }
}



  @media (max-width: 820px) {
  #hero {
  }
  #hero video {
    height: 820px;
  }
}
@media (max-width: 820px) {
  #hero {
    min-height: 820px;
  }
  #hero video {
    height: 820px;
    min-height: 820px;
  }
}





.feature-card {
  text-align: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.icon-circle {
  width: 70px;
  height: 50px;
  background: #ffffffe5;
  color: #0d6efd; /* Primary blue (you can change to your theme color) */
  border-radius: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  padding-top: 10px;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .content {
  padding-right: 20px;
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about .content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .stats-container {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stat-item {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .about .stat-item {
    margin-bottom: 2rem;
  }

  .about .stat-item .number {
    font-size: 2rem;
  }
}

.about .cta-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 576px) {
  .about .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 0px;
  padding-bottom: 1px;
  background: linear-gradient(135deg, #000000f8 0%, #051620 100%);
}

.clients .clients-slider {
  overflow: hidden;
  background-color: #001322;
  border: 1px solid color-mix(in srgb, var(--background-color), transparent 10%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid color-mix(in srgb, var(--background-color), transparent 10%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
  opacity: 1;
 
}

.clients .client-logo img:hover {
  max-width: 90%;
  transition: 0.3s;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper-wrapper {
  height: auto !important;
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-slider .swiper-button-prev:hover,
.team .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  text-align: center;
}

.team .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-section {
  height: 100%;
}

.contact .contact-info-section .info-header {
  margin-bottom: 40px;
}

.contact .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.contact .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.contact .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .social-contact {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 20px;
  text-align: center;
}

.contact .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-info-section .social-contact .social-icons .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--background-color) 50%));
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact .contact-form-wrapper .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact .contact-form-wrapper .form-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-wrapper .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
  outline: none;
}

.contact .contact-form-wrapper .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact .contact-info-section {
    margin-bottom: 40px;
  }

  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact .contact-info-section .info-item {
    padding: 20px;
  }

  .contact .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

  .contact .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}



.btn-wallet {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(90deg, #014a75 0%, #086f7d 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
}

/* Hover effect */
.btn-wallet:hover {
  background: linear-gradient(90deg, #086f7d 0%, #014a75 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-wallet {
    padding: 9px 20px;
    font-size: 13px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .btn-wallet {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 10px auto;
    text-align: center;
  }
}

  /* Basic styling */
  .navmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.2rem;
    align-items: center;
  }

  .navmenu a {
    position: relative;
    text-decoration: none;
   
    font-weight: 500;
    transition: color 0.3s;
  }

  .navmenu a:hover {
    color: #026fa1;
  }

  /* Coming soon badge */
  .coming-badge {
    background: #ff4757;
    
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 6px;
    text-transform: uppercase;
  }

  /* Disable link look */
  .coming-soon {
    opacity: 0.9;
    cursor: default;
  }

  .coming-soon:hover {
    color: #fff;
  }

  /* Toast message style */
  .toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111827;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInOut 2.5s ease forwards;
    z-index: 9999;
  }

  @keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10%, 90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
  }





.presale-section {
  background-color: #003d55;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

.presale-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f4f9f7;
}

.presale-section p {
  margin: 15px auto;
  max-width: 600px;
  color: #cfd8ff;
  font-size: 1rem;
}

.presale-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
  color: #f4f9f7;
}

.button-group {
  margin: 30px 0;
}


.btn-primary {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}


.btn-primary:hover {
  background-color: #01375c;
  color: #ebebeb;
}

.btn-outline {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #03243a;
}

/* Cube GIF container */
.cube-container {
  display: flex;
  justify-content: center;
}

/* Smooth floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
  .presale-section h1 { font-size: 2.2rem; }
  .cube-gif { width: 120px; height: 120px; }
}

  .security-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000f8 0%, #051620 100%);
  font-family: "Poppins", sans-serif;
}

.security-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.security-section p {
  color: #ebe9e9;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.audit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.audit-card {
  background: #000e13;
  border: 1px solid #024058;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 75, 105, 0.26);
  padding: 30px;
  max-width: 360px;
  text-align: left;
  transition: all 0.3s ease;
}

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

.audit-icon {
  width: 80px;
  margin-bottom: 20px;
}

.audit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #e4f5fc;
  margin-bottom: 10px;
}

.status {
  display: inline-block;
  background-color: #00203365;
  color: #27ae60;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 14px;
  margin-bottom: 15px;
}

.audit-card p {
  font-size: 15px;
  color: #e9e9e9;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .audit-cards {
    flex-direction: column;
    align-items: center;
  }

  .security-section h1 {
    font-size: 36px;
  }
}


.presale-section {
  position: relative;
  background: url('assets/img/bg/bg1-img.jpg') center/cover no-repeat;
  padding: 60px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.presale-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* darkness */
  backdrop-filter: blur(6px);      /* blur effect */
  -webkit-backdrop-filter: blur(6px); /* for Safari */
  z-index: 0;
}

.presale-section h2,
.presale-section p,
.presale-section h1,
.cube-container,
.button-group {
  position: relative;
  z-index: 1;
}


.timeline-section {
  background: linear-gradient(135deg, #000000f8 0%, #051620 100%);
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.timeline {
  position: relative;
  max-width: 950px;
  margin: auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, #00e0ff, #007bff, #00e0ff);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px;
  box-sizing: border-box;
  animation: fadeInUp 1s ease;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00e0ff, #007bff);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: -25px;
  z-index: 10;
  box-shadow: 0 0 20px #00e0ff80;
}

.timeline-item:nth-child(even) .icon-box {
  left: -25px;
  right: auto;
}

.icon-box i {
  font-size: 1.3rem;
}

.timeline-date {
  color: #00e0ff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 224, 255, 0.4);
}

.timeline-content h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.4rem;
}

.timeline-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::after {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 80px;
  }
  .icon-box {
    left: 10px !important;
    right: auto;
  }
}



    .exchange-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      background-color:linear-gradient(135deg, #000000f8 0%, #051620 100%);
    }

    .exchange-section {
      display: flex;
      align-items: center;
      border-radius: 16px;
      overflow: hidden;
      flex-wrap: wrap;
      padding: 10px;
    }

    .exchange-image {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .exchange-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px 0 0 16px;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    }

    .exchange-content {
      flex: 1.3;
      padding: 40px;
      min-width: 300px;
    }

    .exchange-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .exchange-subtitle {
      font-size: 1.1rem;
      color: #e6e6e6;
      margin-bottom: 24px;
    }

    .exchange-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
      margin-bottom: 16px;
      color: #ffffff;
    }

    .exchange-logos img {
      height: 32px;
      filter: brightness(220%) saturate(000%);
    }
    
    .more-exchanges {
      font-size: 0.95rem;
      color: #d8d8d8;
      font-style: italic;
    }

    @media (max-width: 768px) {
      .exchange-section {
        flex-direction: column;
        text-align: center;
      }

      .exchange-image img {
        border-radius: 16px 16px 0 0;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
      }

      .exchange-content {
        padding: 30px 20px;
      }

      .exchange-title {
        font-size: 2.2rem;
      }

      .exchange-logos {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .exchange-title {
        font-size: 1.9rem;
      }

      .exchange-logos img {
        height: 28px;
      }
    }




        .section12555 {
      background:linear-gradient(135deg, #018ccc 0%, #003655 100%);
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      border-radius: 0;
      box-shadow: 0 0 40px rgba(0, 123, 255, 0.3);
    }

    .container12555 {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .icon12555 {
      position: absolute;
      top: -40px;
      right: -50px;
      width: 220px;
      height: 220px;
      animation: float 6s ease-in-out infinite;
      z-index: 1;
      filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    }

    .amount12555 {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 20px;
      text-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
      letter-spacing: -1px;
      color: var(--surface-color);
    }

    .text12555 {
      font-size: 1.5rem;
      max-width: 900px;
      margin: 0 auto 40px;
      line-height: 1.7;
      opacity: 0.98;
      font-weight: 500;
      color: var(--surface-color);
    }

    .buttons12555 {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn12555 {
      padding: 18px 44px;
      font-size: 1.25rem;
      font-weight: 700;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      min-width: 180px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-primary12555 {
      background: #1a1a2e;
      color: white;
    }

    .btn-primary12555:hover {
      background: #000;
      transform: translateY(-6px) scale(1.05);
      color: white;
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
    }

    .btn-secondary12555 {
      background: white;
      color: #024c9b;
    }

    .btn-secondary12555:hover {
      background: transparent;
      color: white;
      border: 3px solid white;
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 16px 35px rgba(255, 255, 255, 0.2);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(8deg); }
    }

    @media (max-width: 768px) {
      .amount12555 {
        font-size: 3.2rem;
      }

      .text12555 {
        font-size: 1.15rem;
        padding: 0 15px;
      }

      .icon12555 {
        width: 140px;
        height: 140px;
        top: -20px;
        right: -20px;
      }

      .buttons12555 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }

      .btn12555 {
        width: 85%;
        max-width: 320px;
        font-size: 1.1rem;
        padding: 16px 32px;
      }

      .section12555 {
        padding: 70px 15px;
      }
    }

    @media (max-width: 480px) {
      .amount12555 {
        font-size: 2.7rem;
      }

      .icon12555 {
        width: 110px;
        height: 110px;
      }
    }



.problem-section4521 {
      background: linear-gradient(135deg, #000000f8 0%, #051620 100%);
      padding: 100px 20px;
      text-align: center;
      position: relative;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
    }

    .problem-container4521 {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .section-tag4521 {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #3bf0f6;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .problem-title4521 {
      font-size: 3.5rem;
      font-weight: 900;
      color: white;
      margin-bottom: 24px;
      line-height: 1.1;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .problem-desc4521 {
      font-size: 1.3rem;
      max-width: 900px;
      margin: 0 auto 60px;
      line-height: 1.8;
      color: #fdfdfd;
      font-weight: 400;
    }

    .challenges-grid4521 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 24px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
    }

    .challenge-card4521:nth-child(5) {
      grid-column: 2 / span 2;
      max-width: 420px;
      margin: 0 auto;
    }

    .challenge-card4521 {
      background: rgba(30, 51, 59, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(59, 178, 246, 0.3);
      border-radius: 20px;
      padding: 28px 20px;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .challenge-card4521:hover {
      transform: translateY(-10px);
      background: rgba(30, 51, 59, 0.9);
      border-color: #3bcaf6;
      box-shadow: 0 20px 40px rgba(59, 209, 246, 0.2);
    }

    .challenge-img4521 {
      width: 30px;
      height: 30px;
      margin-bottom: 16px;
      object-fit: contain;
      filter: brightness(0) invert(1) hue-rotate(200deg) brightness(1.3);
    }

    .challenge-title4521 {
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
      .challenges-grid4521 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .challenge-card4521:nth-child(5) {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .problem-section4521 {
        padding: 70px 15px;
      }
      .problem-title4521 {
        font-size: 2.8rem;
      }
      .problem-desc4521 {
        font-size: 1.1rem;
        margin-bottom: 40px;
      }
      .challenges-grid4521 {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .challenge-card4521 {
        padding: 24px 18px;
      }
      .challenge-card4521:nth-child(5) {
        grid-column: auto;
      }
    }

    @media (max-width: 480px) {
      .problem-title4521 {
        font-size: 2.3rem;
      }
      .section-tag4521 {
        font-size: 0.8rem;
      }
      .challenge-img4521 {
        width: 30px;
        height: 30px;
      }
      .challenge-title4521 {
        font-size: 1.1rem;
      }
    }