
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Ensure all elements stay within viewport */
.container, .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --default-font: "Orbitron", monospace, system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Orbitron", monospace, sans-serif;
  --nav-font: "Orbitron", monospace, 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: #0f0f23;              
--default-color: #ffffff;                 
--heading-color: #e8e8ff;            
--accent-color: #00d4ff;                  
--surface-color: #1a1a3a;                
--contrast-color: #0f0f23;               
--bg-color: #2d1b69;                    
--nav-color: #ffffff;                    
--nav-hover-color: #00d4ff;              
--nav-mobile-background-color: #1a1a3a;   
--nav-dropdown-background-color: #2d1b69; 
--nav-dropdown-color: #ffffff;            
--nav-dropdown-hover-color: #00d4ff;      
}

/* Color Presets */

.light-background {
  --background-color: #f0f4ff;
  --surface-color: #ffffff;
  --default-color: #2d1b69;
  --heading-color: #0f0f23;
}

.dark-background {
  --background-color: #0f0f23;
  --default-color: #ffffff;
  --heading-color: #e8e8ff;
  --surface-color: #1a1a3a;
  --contrast-color: #0f0f23;
}


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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--accent-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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 11px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

  .navmenu li a {
    border-radius: 0.5rem;
    margin: 0 1rem;
  }
  
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    border-top: 1px solid var(--accent-color);
    border-left: 1px solid var(--accent-color);
    color: var(--nav-hover-color);
    border-color: var(--default-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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.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 20%);
  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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top 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;
}

/*--------------------------------------------------------------
# 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);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(45, 27, 105, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 30s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: white;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.tech-cube {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotate-cube 20s infinite linear;
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.cube-face.front { transform: rotateY(0deg) translateZ(100px); }
.cube-face.back { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  animation: float-icon 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 60%; right: 20%; }
.floating-icon:nth-child(3) { bottom: 20%; left: 30%; }

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

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes rotate-cube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tech-cube {
    width: 150px;
    height: 150px;
  }
  
  .cube-face {
    width: 150px;
    height: 150px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about .feature-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.about .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.about .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.about .feature-content p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about-visual {
  position: relative;
}

.tech-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.showcase-item {
  padding: 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.showcase-item.active,
.showcase-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateX(8px);
}

.showcase-item .showcase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.showcase-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.showcase-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-4px);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-sidebar {
  position: sticky;
  top: 100px;
}

.features-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.nav-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent-color);
}

.nav-item.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.nav-item i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.features-content {
  position: relative;
}

.feature-detail {
  display: none;
  padding: 40px;
  background: rgba(0, 212, 255, 0.02);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature-detail.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.feature-header .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}

.feature-title h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.feature-title p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.feature-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 30px;
}

.feature-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

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

.feature-stats .stat {
  text-align: center;
}

.feature-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.feature-stats .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}
.feature-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: var(--background-color);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-right: 15px;
}

.feature-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.feature-item strong {
    font-size: 18px;
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}


.testimonial-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--default-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 20%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 1.5rem;
  color: var(--heading-color);
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--default-color);
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  border-radius: 2rem;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 2rem;
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  border-radius: 2rem;
}

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

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

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
  border-radius: 2rem;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #00ffff;
  border-radius: 0;
  padding: 0;
  font-family: 'Orbitron', monospace;
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.5),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
  overflow: hidden;
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: cookie-scan 3s infinite;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup .popup-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
}

#cookie-popup .popup-message {
  margin-bottom: 20px;
}

#cookie-popup .popup-message p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

#cookie-popup .popup-message a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 10px #00ffff;
  transition: all 0.3s ease;
  position: relative;
}

#cookie-popup .popup-message a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transition: width 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff;
}

#cookie-popup .popup-message a:hover::after {
  width: 100%;
}

#cookie-popup button {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  padding: 12px 25px;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

#cookie-popup button:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.8),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

#cookie-popup button:hover::before {
  left: 100%;
}

#cookie-popup button:active {
  transform: translateY(0);
  box-shadow: 
    0 0 15px rgba(0, 255, 255, 0.6),
    inset 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Cookie popup corner decorations */
#cookie-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 255, 255, 0.3);
  pointer-events: none;
}

#cookie-popup .corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #00ffff;
}

#cookie-popup .corner.tl {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

#cookie-popup .corner.tr {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}

#cookie-popup .corner.bl {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}

#cookie-popup .corner.br {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

/* Scan line animation */
#cookie-popup .scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scan-move 2s linear infinite;
}

@keyframes cookie-scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes scan-move {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Responsive design for cookie popup */
@media (max-width: 768px) {
  #cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  #cookie-popup .popup-content {
    padding: 20px;
  }
  
  #cookie-popup button {
    font-size: 11px;
    padding: 10px 20px;
  }
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}



.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0); 
  border: 1px solid var(--bg-color); 
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(45, 27, 105, 0.02) 100%);
}

.testimonials-content {
  padding-right: 40px;
}

.testimonials-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.testimonials-slider {
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: slideIn 0.5s ease;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.testimonial-info p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 0 8px 0;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.project-type,
.project-result {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.project-type {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-color);
}

.project-result {
  background: rgba(0, 153, 204, 0.1);
  color: #0099cc;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #0099cc;
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-color);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 58, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateX(8px);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.method-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.method-content p {
  font-size: 1rem;
  color: var(--default-color);
  margin: 0 0 4px 0;
}

.method-note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact-social h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.contact-form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact-form-header p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--default-color);
  background: rgba(0, 212, 255, 0.02);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--default-color);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(45, 27, 105, 0.02) 100%);
}

.faq-content {
  padding-right: 40px;
}

.faq-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: white;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(0, 212, 255, 0.02);
}

.accordion-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
}

.accordion-header i {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 24px 24px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .feature-benefits {
    grid-template-columns: 1fr;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .testimonials-stats,
  .faq-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-methods {
    gap: 16px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# CYBER FUTURISTIC STYLES
--------------------------------------------------------------*/

/* Cyber Hero Section */
.cyber-hero {
  min-height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.matrix-rain {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.1) 50%, transparent 100%);
  animation: matrix-fall 3s linear infinite;
}

.neon-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-pulse 2s ease-in-out infinite;
}

.hologram-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 98px,
    rgba(0, 255, 255, 0.1) 100px
  );
  animation: scan-horizontal 4s linear infinite;
}

.cyber-content {
  position: relative;
  z-index: 2;
}

.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  padding: 8px 20px;
  border-radius: 0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #00ffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse-dot 1s ease-in-out infinite;
}

.glitch-text {
  position: relative;
  color: #00ffff;
  font-weight: 700;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitch-1 0.5s infinite;
  color: #ff00ff;
  z-index: -1;
}

.glitch-text::after {
  animation: glitch-2 0.5s infinite;
  color: #ffff00;
  z-index: -2;
}

.cyber-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.neon-text {
  color: #00ffff;
  text-shadow: 
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 15px #00ffff,
    0 0 20px #00ffff;
  animation: neon-flicker 2s ease-in-out infinite alternate;
}

.cyber-subtitle {
  color: #ff00ff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 20px;
  font-family: 'Courier New', monospace;
}

.terminal-window {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00ffff;
  border-radius: 8px;
  margin: 30px 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.terminal-header {
  background: #00ffff;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.btn-close, .btn-minimize, .btn-maximize {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0000;
}

.btn-minimize {
  background: #ffff00;
}

.btn-maximize {
  background: #00ff00;
}

.terminal-title {
  color: #000;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
}

.terminal-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.terminal-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ff00;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: #00ffff;
  margin-left: 20px;
}

.cursor {
  color: #ffffff;
  animation: blink 1s infinite;
}

.cyber-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-hologram {
  text-align: center;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 20px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.stat-hologram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: scan-effect 3s infinite;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 255, 0.2);
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  border-radius: 2px;
  animation: fill-bar 2s ease-out;
}

.cyber-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.cyber-btn {
  position: relative;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cyber-btn.primary {
  background: rgba(0, 255, 255, 0.1);
}

.cyber-btn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cyber-btn:hover .btn-glow {
  left: 100%;
}

.cyber-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hologram-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.hologram-brain {
  position: relative;
  width: 100%;
  height: 100%;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 20px #00ffff;
  animation: node-pulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
}

.node:nth-child(1) { top: 20%; left: 20%; }
.node:nth-child(2) { top: 20%; right: 20%; }
.node:nth-child(3) { top: 50%; left: 10%; }
.node:nth-child(4) { top: 50%; right: 10%; }
.node:nth-child(5) { top: 50%; left: 50%; transform: translateX(-50%); }
.node:nth-child(6) { bottom: 20%; left: 20%; }
.node:nth-child(7) { bottom: 20%; right: 20%; }
.node:nth-child(8) { bottom: 50%; left: 30%; }
.node:nth-child(9) { bottom: 50%; right: 30%; }

.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  animation: line-pulse 3s ease-in-out infinite;
}

.line-1 { top: 25%; left: 25%; width: 50%; transform: rotate(15deg); }
.line-2 { top: 25%; right: 25%; width: 50%; transform: rotate(-15deg); }
.line-3 { top: 50%; left: 15%; width: 70%; transform: rotate(0deg); }
.line-4 { top: 50%; right: 15%; width: 70%; transform: rotate(0deg); }
.line-5 { bottom: 25%; left: 25%; width: 50%; transform: rotate(-15deg); }
.line-6 { bottom: 25%; right: 25%; width: 50%; transform: rotate(15deg); }

.data-stream {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.data-bit {
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 600;
  animation: data-flow 2s linear infinite;
  opacity: 0.7;
}

.cyber-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.particle:nth-child(3) { bottom: 20%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 3s; }
.particle:nth-child(5) { top: 60%; left: 50%; animation-delay: 4s; }

/* Animations */
@keyframes matrix-fall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes scan-horizontal {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(-2px, -2px); }
}

@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes scan-effect {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes fill-bar {
  0% { width: 0%; }
  100% { width: var(--width, 100%); }
}

@keyframes node-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes line-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes data-flow {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cyber-title {
    font-size: 2.5rem;
  }
  
  .cyber-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .cyber-actions {
    flex-direction: column;
  }
  
  .hologram-container {
    width: 250px;
    height: 250px;
  }
}

/*--------------------------------------------------------------
# FUTURISTIC HERO SECTION
--------------------------------------------------------------*/
.futuristic-hero {
  min-height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.matrix-code-rain {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 0, 0.1) 2px,
      rgba(0, 255, 0, 0.1) 4px
    ),
    linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.2) 50%, transparent 100%);
  animation: matrix-rain-fall 4s linear infinite;
}

.neon-circuit-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: circuit-pulse 3s ease-in-out infinite;
}

.holographic-scan-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 98px,
    rgba(0, 255, 255, 0.1) 100px
  );
  animation: scan-horizontal-move 5s linear infinite;
}

.quantum-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.quantum-particles::before,
.quantum-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  animation: particle-float 6s ease-in-out infinite;
}

.quantum-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.quantum-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.hero-cyber-content {
  position: relative;
  z-index: 10;
}

.cyber-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  padding: 10px 25px;
  border-radius: 0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #00ffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #00ff00;
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}

.status-dot.active {
  background: #00ff00;
  box-shadow: 0 0 20px #00ff00;
}

.status-text {
  color: #00ffff;
  font-weight: 700;
}

.status-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 0;
  transform: translate(-50%, -50%);
  animation: status-ring-pulse 2s ease-in-out infinite;
}

.hero-main-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.title-line-1 {
  color: #00ffff;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #00ffff;
  animation: neon-flicker-1 3s ease-in-out infinite alternate;
  display: block;
}

.title-line-2 {
  color: #ff00ff;
  text-shadow: 
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff;
  animation: neon-flicker-2 3s ease-in-out infinite alternate;
  display: block;
  margin-left: 50px;
}

.title-line-3 {
  color: #ffff00;
  text-shadow: 
    0 0 10px #ffff00,
    0 0 20px #ffff00,
    0 0 30px #ffff00;
  animation: neon-flicker-3 3s ease-in-out infinite alternate;
  display: block;
  margin-left: 100px;
}

.hero-subtitle {
  margin-bottom: 40px;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  color: #ffffff;
}

.subtitle-prefix {
  color: #00ffff;
  font-weight: 600;
  margin-right: 10px;
}

.subtitle-text {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cyber-command-interface {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ffff;
  border-radius: 8px;
  margin: 40px 0;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.command-header {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.command-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff0000; }
.dot.yellow { background: #ffff00; }
.dot.green { background: #00ff00; }

.command-title {
  color: #000;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
}

.command-body {
  padding: 25px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
}

.command-line {
  margin-bottom: 10px;
}

.prompt-symbol {
  color: #00ff00;
  font-weight: 600;
  margin-right: 10px;
}

.command-text {
  color: #ffffff;
}

.output-text {
  color: #00ffff;
  margin-left: 20px;
}

.blinking-cursor {
  color: #ffffff;
  animation: cursor-blink 1s infinite;
}

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

.metric-card {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 25px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: metric-scan 4s infinite;
}

.metric-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.icon-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-pulse 2s ease-in-out infinite;
}

.icon-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ring-expand 3s ease-in-out infinite;
}

.ring:nth-child(1) {
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.ring:nth-child(2) {
  width: 50px;
  height: 50px;
  animation-delay: 0.5s;
}

.ring:nth-child(3) {
  width: 60px;
  height: 60px;
  animation-delay: 1s;
}

.metric-data {
  position: relative;
  z-index: 2;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.metric-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  border-radius: 3px;
  animation: bar-fill-animation 2s ease-out;
  position: relative;
}

.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: bar-shine 2s infinite;
}

.hero-action-buttons {
  display: flex;
  gap: 25px;
  margin-top: 50px;
}

.cyber-action-btn {
  position: relative;
  padding: 18px 35px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cyber-action-btn.primary {
  background: rgba(0, 255, 255, 0.1);
}

.cyber-action-btn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-energy-wave {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.cyber-action-btn:hover .btn-energy-wave {
  left: 100%;
}

.hero-holographic-display {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.hologram-frame {
  position: relative;
  width: 400px;
  height: 400px;
  border: 2px solid #00ffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #00ffff;
}

.frame-corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.frame-corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.frame-corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.frame-corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.frame-scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scan-line-move 3s linear infinite;
}

.hologram-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.neural-brain-visualization {
  position: relative;
  width: 100%;
  height: 60%;
  margin-bottom: 20px;
}

.brain-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: brain-pulse 2s ease-in-out infinite;
}

.core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-pulse-ring 2s ease-in-out infinite;
}

.neural-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.neural-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ffff;
  animation: node-pulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
}

.neural-node:nth-child(1) { top: 20%; left: 20%; }
.neural-node:nth-child(2) { top: 20%; right: 20%; }
.neural-node:nth-child(3) { top: 50%; left: 10%; }
.neural-node:nth-child(4) { top: 50%; right: 10%; }
.neural-node:nth-child(5) { top: 50%; left: 50%; transform: translateX(-50%); }
.neural-node:nth-child(6) { bottom: 20%; left: 20%; }
.neural-node:nth-child(7) { bottom: 20%; right: 20%; }
.neural-node:nth-child(8) { bottom: 50%; left: 30%; }

.neural-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  animation: connection-pulse 3s ease-in-out infinite;
  transform-origin: left center;
}

.connection-line:nth-child(1) { top: 25%; left: 25%; width: 50%; transform: rotate(15deg); }
.connection-line:nth-child(2) { top: 25%; right: 25%; width: 50%; transform: rotate(-15deg); }
.connection-line:nth-child(3) { top: 50%; left: 15%; width: 70%; transform: rotate(0deg); }
.connection-line:nth-child(4) { top: 50%; right: 15%; width: 70%; transform: rotate(0deg); }
.connection-line:nth-child(5) { bottom: 25%; left: 25%; width: 50%; transform: rotate(-15deg); }
.connection-line:nth-child(6) { bottom: 25%; right: 25%; width: 50%; transform: rotate(15deg); }
.connection-line:nth-child(7) { bottom: 50%; left: 30%; width: 40%; transform: rotate(0deg); }
.connection-line:nth-child(8) { bottom: 50%; right: 30%; width: 40%; transform: rotate(0deg); }

.data-stream-visualization {
  position: relative;
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.data-packet {
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 600;
  animation: data-packet-flow 2s linear infinite;
  opacity: 0.8;
}

/* Animations */
@keyframes matrix-rain-fall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes circuit-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes scan-horizontal-move {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 1; }
  50% { transform: translateY(-15px) translateX(-15px); opacity: 0.8; }
  75% { transform: translateY(-45px) translateX(10px); opacity: 0.9; }
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes status-ring-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

@keyframes neon-flicker-1 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes neon-flicker-2 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

@keyframes neon-flicker-3 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes metric-scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes core-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

@keyframes ring-expand {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

@keyframes bar-fill-animation {
  0% { width: 0%; }
  100% { width: var(--width, 100%); }
}

@keyframes bar-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes scan-line-move {
  0% { top: 0; }
  100% { top: 100%; }
}

@keyframes brain-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes core-pulse-ring {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes node-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes connection-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes data-packet-flow {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2rem;
  }
  
  .title-line-2 {
    margin-left: 25px;
  }
  
  .title-line-3 {
    margin-left: 50px;
  }
  
  .hero-performance-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-action-buttons {
    flex-direction: column;
  }
  
  .hologram-frame {
    width: 300px;
    height: 300px;
  }
}

/*--------------------------------------------------------------
# HORIZONTAL SCROLL FIXES
--------------------------------------------------------------*/

/* Fix horizontal scroll issues */
.hero-matrix-bg,
.neural-bg,
.quantum-bg,
.cyber-bg,
.futuristic-hero,
.neural-about,
.quantum-features,
.neural-testimonials,
.cyber-contact,
.cyber-faq {
  overflow: hidden;
  position: relative;
}

/* Ensure scan animations don't cause overflow */
.scan-line,
.frame-scan,
.energy-wave,
.hologram-scan-lines,
.neural-scan-lines {
  overflow: hidden;
  position: absolute;
  width: 100%;
}

/* Fix elements that might extend beyond viewport */
.matrix-code-rain,
.neural-network-bg,
.data-streams,
.quantum-field,
.hologram-grid,
.neural-particles {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Fix cookie popup positioning */
#cookie-popup {
  max-width: calc(100vw - 40px);
  left: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  #cookie-popup {
    left: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
  }
}

/* Ensure all sections don't overflow */
section {
  overflow-x: hidden;
  max-width: 100%;
}

/* Fix any remaining overflow issues */
.row {
  margin-left: 0;
  margin-right: 0;
}

.col-lg-12,
.col-lg-6,
.col-lg-4,
.col-lg-8,
.col-md-6,
.col-md-12,
.col-md-3 {
  padding-left: 15px;
  padding-right: 15px;
}

/*--------------------------------------------------------------
# CYBER DETAILS SECTION
--------------------------------------------------------------*/
.cyber-details {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cyber-details-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.neural-circuit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: circuit-pulse 4s ease-in-out infinite;
}

.data-streams-flow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 255, 255, 0.05) 10px,
    rgba(0, 255, 255, 0.05) 20px
  );
  animation: stream-flow 6s linear infinite;
}

.holographic-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holographic-particles::before,
.holographic-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffff;
  animation: particle-float 5s ease-in-out infinite;
}

.holographic-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.holographic-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 2.5s;
}

.quantum-field-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 0, 255, 0.1) 50%, transparent 100%);
  animation: field-waves 8s ease-in-out infinite;
}

.cyber-details-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.cyber-status {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  padding: 12px 30px;
  border-radius: 0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #00ffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cyber-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.title-line {
  display: block;
  color: #00ffff;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #00ffff;
  animation: title-flicker 3s ease-in-out infinite alternate;
}

.title-line:nth-child(2) {
  color: #ff00ff;
  text-shadow: 
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff;
  margin-left: 50px;
}

.title-line:nth-child(3) {
  color: #ffff00;
  text-shadow: 
    0 0 10px #ffff00,
    0 0 20px #ffff00,
    0 0 30px #ffff00;
  margin-left: 100px;
}

.cyber-subtitle {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  color: #ffffff;
}

.subtitle-prefix {
  color: #00ffff;
  font-weight: 600;
  margin-right: 10px;
}

.subtitle-text {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cyber-detail-module {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 40px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  height: 100%;
}

.cyber-detail-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: module-scan 4s infinite;
}

.module-hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hologram-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hologram-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 0;
  overflow: hidden;
}

.hologram-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: hue-rotate(180deg) saturate(2) contrast(1.2);
  mix-blend-mode: screen;
  animation: hologram-flicker 3s ease-in-out infinite;
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #00ffff;
}

.frame-corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.frame-corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.frame-corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.frame-corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.frame-scan {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scan-move 3s linear infinite;
}

.hologram-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.neural-visualization,
.transformation-visualization {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.neural-core,
.transformation-core {
  position: relative;
  width: 120px;
  height: 120px;
}

.core-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-pulse 2s ease-in-out infinite;
}

.core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-ring 2s ease-in-out infinite;
}

.neural-connections,
.transformation-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  animation: connection-pulse 3s ease-in-out infinite;
}

.connection:nth-child(1) { top: 30%; left: 30%; width: 40%; transform: rotate(15deg); }
.connection:nth-child(2) { top: 30%; right: 30%; width: 40%; transform: rotate(-15deg); }
.connection:nth-child(3) { bottom: 30%; left: 30%; width: 40%; transform: rotate(-15deg); }
.connection:nth-child(4) { bottom: 30%; right: 30%; width: 40%; transform: rotate(15deg); }

.neural-nodes,
.transformation-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ffff;
  animation: node-pulse 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 25%; left: 25%; animation-delay: 0s; }
.node:nth-child(2) { top: 25%; right: 25%; animation-delay: 0.5s; }
.node:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 1s; }
.node:nth-child(4) { bottom: 25%; right: 25%; animation-delay: 1.5s; }

.module-content {
  position: relative;
  z-index: 2;
}

.module-header {
  margin-bottom: 25px;
}

.module-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.module-subtitle {
  color: #ffffff;
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

.module-description {
  margin-bottom: 30px;
}

.description-main {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.description-detail {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.module-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 8px 15px;
  border-radius: 0;
}

.feature-icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.icon-pulse {
  width: 100%;
  height: 100%;
  background: #00ffff;
  border-radius: 50%;
  animation: icon-pulse 2s ease-in-out infinite;
}

.feature-text {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-module-btn {
  position: relative;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
}

.cyber-module-btn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cyber-module-btn:hover .btn-glow {
  left: 100%;
}

.cyber-terminal {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ffff;
  border-radius: 8px;
  margin-top: 50px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.terminal-header {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red { background: #ff0000; }
.control.yellow { background: #ffff00; }
.control.green { background: #00ff00; }

.terminal-title {
  color: #000;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
}

.terminal-body {
  padding: 25px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
}

.terminal-line {
  margin-bottom: 10px;
}

.prompt {
  color: #00ff00;
  font-weight: 600;
  margin-right: 10px;
}

.command {
  color: #ffffff;
}

.output {
  color: #00ffff;
  margin-left: 20px;
}

.cursor {
  color: #ffffff;
  animation: cursor-blink 1s infinite;
}

/* Animations */
@keyframes circuit-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes stream-flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes field-waves {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

@keyframes module-scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes core-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes core-ring {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes connection-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes node-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cyber-title {
    font-size: 2.5rem;
  }
  
  .title-line:nth-child(2) {
    margin-left: 25px;
  }
  
  .title-line:nth-child(3) {
    margin-left: 50px;
  }
  
  .cyber-detail-module {
    padding: 30px 20px;
  }
  
  .hologram-content {
    width: 150px;
    height: 150px;
  }
  
  .neural-core,
  .transformation-core {
    width: 100px;
    height: 100px;
  }
}

@keyframes hologram-flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/*--------------------------------------------------------------
# CYBER FOOTER SECTION
--------------------------------------------------------------*/
.cyber-footer {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  border-top: 2px solid #00ffff;
}

.cyber-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.neural-grid-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: grid-pulse 4s ease-in-out infinite;
}

.data-streams-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(0, 255, 255, 0.03) 8px,
    rgba(0, 255, 255, 0.03) 16px
  );
  animation: stream-flow 8s linear infinite;
}

.holographic-particles-footer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holographic-particles-footer::before,
.holographic-particles-footer::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ffff;
  animation: particle-float 6s ease-in-out infinite;
}

.holographic-particles-footer::before {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.holographic-particles-footer::after {
  top: 70%;
  right: 25%;
  animation-delay: 3s;
}

.cyber-footer-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  padding: 10px 25px;
  border-radius: 0;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
}

.cyber-footer-section {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  padding-bottom: 10px;
}

.section-content {
  color: #ffffff;
}

.section-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: '▶';
  color: #00ffff;
  position: absolute;
  left: 0;
  top: 8px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-label {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  color: #ffffff;
  font-size: 0.9rem;
}

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

.legal-links li {
  margin-bottom: 10px;
}

.legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.legal-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00ffff;
  transition: width 0.3s ease;
}

.legal-links a:hover {
  color: #00ffff;
}

.legal-links a:hover::after {
  width: 100%;
}

.cyber-terminal-footer {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ffff;
  border-radius: 8px;
  margin: 40px 0;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.cyber-copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.cyber-copyright p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer-title {
    font-size: 2rem;
  }
  
  .cyber-footer-section {
    margin-bottom: 30px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}