/* CSS Variables */
@font-face {
  font-family: 'apercu_medium';
  src: url('../fonts/apercu_medium_pro.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'apercu_regular';
  src: url('../fonts/apercu_regular_pro.otf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-blue: #e51d2f;
  --primary-cyan: #c60415;
  --primary-dark: #0052cc;
  --secondary-purple: #6366f1;
  --accent-gold: #ffd700;
  --text-primary: #0a0a0a;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --bg-dark: #1a202c;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 10px 40px rgba(0, 102, 255, 0.1);
  --shadow-medium: 0 20px 60px rgba(0, 102, 255, 0.15);
  --shadow-strong: 0 30px 80px rgba(0, 102, 255, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-purple), var(--primary-blue));
  --gradient-gold: linear-gradient(135deg, var(--accent-gold), #ffed4e);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a
{text-decoration: none;}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
   font-family: 'apercu_regular';
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient( to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5) ), url('../images/web-bg.jpg');
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  color: white;
}

.circuit-loader {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 2rem;
}

.circuit-path {
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 2px;
  animation: circuitPulse 2s ease-in-out infinite;
}

.circuit-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-cyan);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  animation: circuitMove 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--primary-cyan);
}

.loading-text {
  font-family: 'Space Grotesk', monospace;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 14px;
  opacity: 0.8;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes circuitMove {
  0% { left: 0; }
  100% { left: 100%; }
}

@keyframes textPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Navigation */
.glass-nav {
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.chip-design {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.chip-core {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 2px;
  position: relative;
}

.chip-pins::before,
.chip-pins::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
}

.chip-pins::before {
  width: 2px;
  height: 8px;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.chip-pins::after {
  width: 8px;
  height: 2px;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
}

.brand-text {
  
  font-weight: 700;
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-blue);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #fff;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-primary-glow {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
  color: white;
}

.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;
}

.btn-primary-glow:hover .btn-glow {
  left: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
 
  /*background: linear-gradient(
                    to bottom right, 
                    rgba(18, 64, 112, 0.9), 
                    rgba(0, 0, 0, 0.5)
                ), 
                url('../images/AdobeStock_677730610.jpg');*/
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:#184070;
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


.header .logo {
  line-height: 1;
}



.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  text-transform: uppercase;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
 
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 3;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 2;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 87, 81, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff!important;
    text-transform: uppercase;
    font-size: 15px;
    padding: 0 2px;
    font-weight: 400;
    display: flex;
    align-items: center;
    
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    
    font-weight: 600;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #e51e30;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    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: #124070!important;
  }

  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    color: #fff;
    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: #fff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;

  }

  .navmenu a,
  .navmenu a:focus {
    color: #124070;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-chip {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 4px;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.chip-1 { top: 20%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 80%; animation-delay: 2s; }
.chip-3 { top: 80%; left: 20%; animation-delay: 4s; }
.chip-4 { top: 30%; left: 70%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.neural-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.network-svg {
  width: 100%;
  height: 100%;
}

.network-lines line {
  animation: lineGlow 3s ease-in-out infinite;
}

.pulse-node {
  animation: nodePulse 2s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes nodePulse {
  0%, 100% { r: 6; opacity: 0.6; }
  50% { r: 10; opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 210px;
  padding-bottom: 70px;
}

.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: 20px;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-title {
  font-size: clamp(3rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary-large {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
  color: white;
}

.btn-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.7s; }
.particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 1.4s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

.btn-outline-glow {
  background: transparent;
  color: white;
  border: 2px solid rgba(0, 212, 255, 0.5);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-outline-glow:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-cyan);
  transform: translateY(-3px);
  color: white;
}

.btn-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(45deg, transparent, var(--primary-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-outline-glow:hover .btn-border-glow {
  opacity: 0.3;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  display: block;
  
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-weight: 500;
}

.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(24, 64, 112, 0.2), transparent);
  border-radius: 50%;
  animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.hologram-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.hologram-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
  border: 2px solid rgba(0, 212, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: chipFloat 4s ease-in-out infinite;
}

@keyframes chipFloat {
  0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
  50% { transform: translate(-50%, -50%) rotateY(180deg); }
}

.chip-layers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chip-layer {
  position: absolute;
  background: var(--gradient-primary);
  border-radius: 4px;
  opacity: 0.8;
}

.layer-1 { width: 60px; height: 60px; top: -30px; left: -30px; }
.layer-2 { width: 40px; height: 40px; top: -20px; left: -20px; animation-delay: 0.5s; }
.layer-3 { width: 20px; height: 20px; top: -10px; left: -10px; animation-delay: 1s; }

.chip-layer {
  animation: layerPulse 2s ease-in-out infinite;
}

@keyframes layerPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.chip-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connection-line {
  position: absolute;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.line-1 { width: 2px; height: 40px; top: -20px; left: 50%; transform: translateX(-50%); }
.line-2 { width: 40px; height: 2px; right: -20px; top: 50%; transform: translateY(-50%); }
.line-3 { width: 2px; height: 40px; bottom: -20px; left: 50%; transform: translateX(-50%); }
.line-4 { width: 40px; height: 2px; left: -20px; top: 50%; transform: translateY(-50%); }

.connection-line {
  animation: connectionPulse 1.5s ease-in-out infinite;
}

@keyframes connectionPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.data-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-cyan);
}

.data-particle:nth-child(1) {
  top: 50%;
  left: 0;
  animation: dataFlow1 3s linear infinite;
}

.data-particle:nth-child(2) {
  top: 0;
  left: 50%;
  animation: dataFlow2 3s linear infinite 1s;
}

.data-particle:nth-child(3) {
  bottom: 0;
  right: 50%;
  animation: dataFlow3 3s linear infinite 2s;
}

@keyframes dataFlow1 {
  0% { left: 0; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes dataFlow2 {
  0% { top: 0; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes dataFlow3 {
  0% { right: 0; opacity: 0; }
  50% { opacity: 1; }
  100% { right: 100%; opacity: 0; }
}

.hologram-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  animation: ringRotate 10s linear infinite;
}

.ring-1 { width: 300px; height: 300px; top: -150px; left: -150px; }
.ring-2 { width: 350px; height: 350px; top: -175px; left: -175px; animation-direction: reverse; animation-duration: 15s; }
.ring-3 { width: 400px; height: 400px; top: -200px; left: -200px; animation-duration: 20s; }

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--gradient-primary);
  margin: 0 auto 10px;
  border-radius: 2px;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-cyan);
  border-radius: 50%;
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.section-header {
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.premium-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.premium-card:hover .card-glow {
  opacity: 0.05;
}

.service-icon {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.premium-card:hover .icon-bg {
  transform: rotate(10deg) scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
}

.icon-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.icon-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: iconParticle 2s ease-in-out infinite;
}

.premium-card:hover .icon-particles .particle {
  opacity: 1;
}

.icon-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.icon-particles .particle:nth-child(2) { top: 20%; right: 10%; animation-delay: 0.5s; }
.icon-particles .particle:nth-child(3) { bottom: 10%; left: 20%; animation-delay: 1s; }

@keyframes iconParticle {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--primary-blue);
  font-size: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.featured-service {
  margin-top: 3rem;
}

.featured-card {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  color: white;
}

.featured-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: featuredGlow 4s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.featured-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.featured-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.featured-info {
  flex: 1;
}

.featured-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-info p {
  opacity: 0.9;
  margin-bottom: 0;
}

.btn-featured {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.services-section .card h3
{
  
  font-size: 1.6rem;
}
.services-section .card .bg-danger
{
  background: var(--primary-blue)!important;
}
.services-section .card .bg-secondary
{
  background: #124070!important;
}
.btn-featured:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

/* Technology Section */
.tech-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.tech-content {
  padding-right: 2rem;
}

.tech-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.certifications h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.cert-grid {
  display: grid;
  gap: 1rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cert-item:hover {
  background: rgba(0, 102, 255, 0.1);
  transform: translateX(5px);
}

.cert-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cert-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cert-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.tech-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  position: relative;
}

.tech-sphere {
  position: relative;
  width: 300px;
  height: 300px;
}

.sphere-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-pulse {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  animation: orbitRotate 10s linear infinite;
}

.ring-1 { 
  width: 150px; 
  height: 150px; 
  transform: translate(-50%, -50%);
}

.ring-2 { 
  width: 200px; 
  height: 200px; 
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  animation-duration: 15s;
}

.ring-3 { 
  width: 250px; 
  height: 250px; 
  transform: translate(-50%, -50%);
  animation-duration: 20s;
}

@keyframes orbitRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-cyan);
}

.dot-1 { top: -6px; left: 50%; transform: translateX(-50%); }
.dot-2 { top: -6px; left: 50%; transform: translateX(-50%); }
.dot-3 { top: -6px; left: 50%; transform: translateX(-50%); }

.tech-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tech-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-cyan);
  border-radius: 50%;
  opacity: 0.6;
  animation: techParticleFloat 4s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 80%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 10%; animation-delay: 2s; }
.particle-4 { top: 30%; left: 90%; animation-delay: 3s; }

@keyframes techParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.contact-info {
  padding-right: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-dark);
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}



.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + .input-glow,
.form-group select:focus + .input-glow,
.form-group textarea:focus + .input-glow {
  opacity: 0.05;
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.footer-contact {
  text-align: right;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-cyan);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.logo-clr
{display: none;}
#main-header.scrolled .logo-clr
{display: block;}
#main-header.scrolled .logo-wtr
{display: none;}
#main-header.scrolled .navmenu a {
    color: #124070!important;
  }
/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary-large,
  .hero-cta .btn-outline-glow {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 2rem;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .tech-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .hologram-container {
    width: 300px;
    height: 300px;
  }
  
  .hologram-chip {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .premium-card {
    padding: 2rem;
  }
  
  .featured-card {
    padding: 2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'apercu_medium';
}
.navmenu .active
{
  color: #e31f30!important;
}
.stats-heading
{position: relative; text-transform: uppercase;}
.stats-heading::before
{ content: '';
  position: absolute;
  width: 10%;
  height: 1px;
  background: #fff;
  left: -12%;
  top: 50%;
}
.stats-heading::after
{ content: '';
  position: absolute;
  width: 60%;
  height: 1px;
  background: #fff;
  right: 15%;
  top: 50%;
}
 .empowering-section {
      padding: 90px 20px;
      margin: auto;
      padding-top: 0px;
    }

    .empowering-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
    }

    .left-content {
      flex: 1 1 320px;
    }

    .left-content h4 {
      color: #e31f30;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .feature {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.6);
      padding-bottom: 16px;
    }

    .feature img {
      width: 32px;
      height: 32px;
      margin-right: 15px;
    }

    .feature span {
      font-weight: bold;
      font-size: 26px;
      color: #fff;
    }

    .cta-btn {
      margin-top: 30px;
      padding: 12px 24px;
      background-color: var(--primary);
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      font-size: 14px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    }

    .right-images {
      flex: 1 1 320px;
      display: grid;
      gap: 20px;
    }

    .right-images img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin-top: 60px;
      text-align: center;
    }

    .stat-item {
      flex: 1 1 200px;
    }

    .stat-item h2 {
      font-size: 32px;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .stat-item p {
      font-size: 14px;
      color: #fff;
      margin: 0;
      border-top: 1px solid #ddd;
      padding-top: 10px;
    }

    @media (max-width: 768px) {
      .empowering-flex {
        flex-direction: column;
        align-items: center;
      }

      .right-images {
        grid-template-columns: 1fr 1fr;
      }

      .stat-item {
        flex: 1 1 45%;
      }
    }

    @media (max-width: 480px) {
      .right-images {
        grid-template-columns: 1fr;
      }

      .stat-item {
        flex: 1 1 100%;
      }
    }
    .service-icon {
  width: 50px;
  height: 50px;
  background: #e31f30;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  color: var(--text-white);
  font-size: 2rem;
  margin-right: 20px;
}
 .component-section {
      max-width: 1200px;
      margin: auto;
      padding: 80px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding-top: 80px;
      padding-bottom: 0px;
    }

    .component-left {
      flex: 1 1 300px;
    }

    .component-left h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .component-left p {
      font-size: 16px;
      color: #dce4ed;
    }

    .component-right {
      flex: 2 1 600px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .solution-box {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
    }

    .solution-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .solution-box:hover img {
      transform: scale(1.05);
    }

    .solution-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, #000, transparent);
      color: #fff;
    }

    .solution-overlay img.icon {
      width: 24px;
      vertical-align: middle;
      margin-right: 10px;
    }

    .solution-title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 8px;
      line-height: 25px;
    }
div.btn
{cursor: text;}
/* Contact Section */
.contact-section {
    background: var(--light-color);
    padding: 100px 0;
}

.contact-info {
    padding: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    color: #333;
    font-size: 22px;
}

.contact-details a {
    color: #e31f30;
    font-weight: 500;
}

.contact-details a:hover {
    color:  var(--gradient-primary);
    text-decoration: underline;
}

.contact-form {
    background: rgba(18, 64, 112, 0.5);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
}

.form-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

    @media (max-width: 768px) {
      .component-section {
        flex-direction: column;
      }

      .component-left h2 {
        font-size: 28px;
      }

      .solution-title {
        font-size: 15px;
      }
    }
    .component-section .btn-primary-large
    {display: block; width: 100%!important;}
    /* Supplier Section */
.supplier-section {
    background: var(--white);
    padding: 100px 0;
}

.supplier-name {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.supplier-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.certifications {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #e31f30;
}

.certifications-title {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background:#164170;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.badge-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.badge-item i {
    font-size: 1.5rem;
    color: #fff;
}

.badge-item span {
    font-weight: 500;
    color: #fff;
}
footer
{
  background: rgba(0, 0, 0, 0.7);
  padding: 30px 0px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
  border-bottom: 1px solid #333;
}
#main-header.scrolled {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
  }
.glass-nav.scrolled .mobile-nav-toggle
{color: #124070}
/* Back to Top Button Style */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  background-color: #e31f30;
  color: white;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s, transform 0.3s;
}

#backToTop:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}
#main-header.scrolled .mobile-nav-toggle
{color: #124070}
@media only screen and (max-width: 991.98px) {
  .hero-badge
  {font-size: 15px}
  .title-line
  {display:inline;}
  .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 30px;
}
}
@media only screen and (max-width: 767.98px) {
  .header .btn-getstarted
  {display: none;}
  a.logo img
  {height: 50px!important}
}
@media only screen and (max-width: 575.98px) {
 footer h4, p
 {text-align: center!important;}
}