/* =========================================
   1. VARIABLES & MIXINS
   ========================================= */
/* Aliases for partials */
/* =========================================
   2. RESET & GLOBAL
   ========================================= */
body {
  font-family: "Roboto", sans-serif;
  color: #333333;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
  color: #002147;
  font-weight: 700;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: #ff5e14;
}

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

section {
  padding: 100px 0;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   3. COMPONENTS
   ========================================= */
.btn-main {
  display: inline-block;
  background: #ff5e14;
  color: #ffffff;
  padding: 14px 35px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  border: 2px solid #ff5e14;
  transition: all 0.3s ease;
}
.btn-main:hover {
  background: transparent;
  color: #ff5e14;
}
.btn-main.small {
  padding: 10px 25px;
  font-size: 14px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 14px 35px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #ffffff;
  color: #002147;
}

.highlight {
  color: #ff5e14;
}

.section-title {
  margin-bottom: 50px;
}
.section-title span {
  display: block;
  color: #ff5e14;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* =========================================
   4. TOP BAR
   ========================================= */
.top-bar {
  position: relative; /* Changed from absolute */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  background: #002147; /* Solid Brand Color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 0;
  font-size: 14px;
  font-family: "Barlow", sans-serif;
}
.top-bar .top-info span {
  margin-right: 25px;
}
.top-bar .top-info span i {
  margin-right: 8px;
  color: #ff5e14;
}
.top-bar .top-social a {
  color: #ffffff;
  margin-left: 15px;
}
.top-bar .top-social a:hover {
  color: #ff5e14;
}

/* =========================================
   5. NAVIGATION (FULLSCREEN)
   ========================================= */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #002147;
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.fullscreen-nav.active {
  visibility: visible;
  opacity: 1;
}
.fullscreen-nav .nav-links {
  text-align: center;
}
.fullscreen-nav .nav-links li {
  margin: 15px 0;
  overflow: hidden;
}
.fullscreen-nav .nav-links li a.nav-link {
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.5s ease, color 0.3s ease;
}
.fullscreen-nav .nav-links li a.nav-link .nav-num {
  font-size: 16px;
  color: #ff5e14;
  vertical-align: top;
  margin-left: 10px;
}
.fullscreen-nav .nav-links li a.nav-link:hover {
  color: #ffffff;
}
.fullscreen-nav.active .nav-links li a.nav-link {
  transform: translateY(0);
}
.fullscreen-nav .visual-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.fullscreen-nav .visual-content .plane-container {
  position: relative;
  width: 300px;
  margin-bottom: 30px;
}
.fullscreen-nav .visual-content .plane-container img {
  width: 100%;
}
.fullscreen-nav .visual-content h3 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}
.fullscreen-nav .visual-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-slider {
  height: 800px; /* Fixed height for professional look */
  position: relative;
  overflow: hidden;
  padding: 0; /* Remove default section padding */
}
.hero-slider .swiper {
  width: 100%;
  height: 100%;
}
.hero-slider .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex; /* Flexbox for centering */
  align-items: center;
  justify-content: center;
}
.hero-slider .swiper-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 33, 71, 0.5), rgba(0, 33, 71, 0.7)); /* Lighter overlay */
  z-index: 1;
}
.hero-slider .swiper-slide .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-top: 60px; /* Slight offset for header */
  text-align: left;
  width: 100%;
}
.hero-slider .swiper-slide .hero-content .subtitle {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff5e14;
  margin-bottom: 15px;
}
.hero-slider .swiper-slide .hero-content h1 {
  font-size: 56px; /* Adjusted size */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero-slider .swiper-slide .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0.9;
  color: #ffffff;
}

/* =========================================
   7. FOOTER
   ========================================= */
.footer {
  background: #00152e;
  color: #ffffff;
  padding-top: 80px;
}
.footer .footer-widget h3.footer-logo {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 25px;
}
.footer .footer-widget h3.footer-logo span {
  color: #ff5e14;
}
.footer .footer-widget h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 25px;
}
.footer .footer-widget ul li {
  margin-bottom: 12px;
}
.footer .footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-widget ul li a:hover {
  color: #ff5e14;
  padding-left: 5px;
}
.footer .footer-widget .contact-info li {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  margin-bottom: 15px;
}
.footer .footer-widget .contact-info li i {
  color: #ff5e14;
  margin-right: 15px;
  margin-top: 5px;
}
.footer .footer-widget .social-links {
  margin-top: 20px;
}
.footer .footer-widget .social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}
.footer .footer-widget .social-links a:hover {
  background: #ff5e14;
}
.footer .footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer .footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-left: 20px;
}
.footer .footer-bottom .footer-links a:hover {
  color: #ff5e14;
}

/* =========================================
   8. IMPORTS
   ========================================= */
/* =========================================
   14. PAGE LOADER
   ========================================= */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050a10; /* Deep dark background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#page-loader .loader-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page-loader .logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
#page-loader .logo-wrapper img {
  position: relative;
  z-index: 2;
  max-width: 150px;
  height: auto;
  /* Subtle breathing animation for the logo itself */
  animation: logo-breath 3s ease-in-out infinite;
}
#page-loader .logo-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; /* Fire on top/mixed */
  mix-blend-mode: screen; /* Makes black transparent and colors glowing */
  pointer-events: none;
}
#page-loader .loading-text {
  color: #ff5e14;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: text-flicker 2s infinite;
  margin-bottom: 10px;
}
#page-loader .loader-progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
#page-loader .loader-progress-bar .loader-progress-fill {
  height: 100%;
  width: 0%;
  background: #ff5e14;
  box-shadow: 0 0 10px #ff5e14;
  transition: width 0.1s linear;
}

@keyframes logo-breath {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(255, 94, 20, 0.2));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 94, 20, 0.4));
    transform: scale(1.02);
  }
}
@keyframes text-flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  52% {
    opacity: 0.9;
  }
  54% {
    opacity: 0.7;
  }
}
/* =========================================
   13. FUTURISTIC ENHANCEMENTS
   ========================================= */
/* --- Custom Cursor --- */
body {
  cursor: none; /* Hide default cursor */
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ff5e14; /* Orange border */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 94, 20, 0.2);
  border-color: transparent;
}

/* --- Smooth Scroll (Lenis) --- */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- Glassmorphic Header & Layout --- */
.header {
  position: absolute; /* Overlay on slider */
  top: 50px; /* Below Top Bar (approx height) */
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 20px 0;
  background: transparent; /* No background color */
  transition: all 0.4s ease;
}
.header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .navbar-brand .nav-logo {
  height: 50px; /* Fix huge logo */
  width: auto;
  object-fit: contain;
}
.header .navbar-brand .logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  transition: color 0.4s ease;
  letter-spacing: 1px;
}
.header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.header.scrolled .navbar-brand .logo-text {
  color: #002147;
}
.header.scrolled {
  /* Change hamburger color on scroll */
}
.header.scrolled .hamburger-menu .bar {
  background-color: #002147;
}

/* --- Hamburger Menu (Updated) --- */
.hamburger-menu {
  position: relative; /* Inside flex container now */
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 10001; /* Ensure clickable */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  mix-blend-mode: normal; /* Reset mix-blend */
}
.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: #ffffff; /* White by default on dark slider */
  transition: all 0.4s ease;
  transform-origin: left;
}
.hamburger-menu:hover .bar {
  width: 100% !important; /* Force full width on hover */
  background-color: #ff5e14;
}
.hamburger-menu.active .bar:nth-child(1) {
  transform: rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger-menu.active .bar:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger-menu.active {
  /* Keep white when active (on dark overlay) */
}
.hamburger-menu.active .bar {
  background-color: #ffffff;
}

/* --- Hero Section Enhancements --- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 33, 71, 0.4) 0%, rgba(0, 10, 20, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Hero Energy Field Canvas --- */
#energy-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #ff5e14;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.back-to-top:hover {
  background-color: rgb(224, 70.5361702128, 0);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.4);
  color: #ffffff;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Parallax Effect --- */
.cta-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  color: #ffffff;
}
.cta-parallax .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 15, 30, 0.9));
  z-index: 1;
}
.cta-parallax .container {
  position: relative;
  z-index: 2;
}
.cta-parallax h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.cta-parallax p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* --- Section Title Glow --- */
.section-title h2 {
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* --- Card Hover Glows --- */
.service-item, .project-card {
  transition: all 0.3s ease;
}

.service-item:hover, .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 94, 20, 0.15); /* Orange glow on hover */
}

/* --- Button Glow --- */
.btn-main {
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}
.btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}
.btn-main:hover::before {
  left: 100%;
}

/* --- Footer Tech Pattern --- */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  pointer-events: none;
}

/* --- Subtle Heat Distortion Animation --- */
@keyframes heat-wave {
  0% {
    transform: scale(1);
    filter: blur(0px);
  }
  50% {
    transform: scale(1.02);
    filter: blur(0.5px);
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
  }
}
.hero-slider .swiper-slide {
  animation: heat-wave 15s infinite alternate ease-in-out;
}

/* =========================================
   14. CINEMATIC FULLSCREEN NAVIGATION
   ========================================= */
/* Old hamburger block removed */
/* --- Fullscreen Overlay --- */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050a10;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none; /* Prevent clicks when closed */
  overflow: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease; /* Fallback transition */
  /* Active State (Fallback / Helper) */
}
.fullscreen-nav.nav-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.fullscreen-nav {
  /* --- Left Side (Links) --- */
}
.fullscreen-nav .nav-left {
  background-color: #050a10;
  position: relative;
  z-index: 2;
  padding: 50px;
}
.fullscreen-nav .nav-left .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fullscreen-nav .nav-left .nav-links .nav-item {
  /* overflow: hidden; Removed to prevent clipping issues during animation */
}
.fullscreen-nav .nav-left .nav-links .nav-item .nav-link {
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff; /* Brighter for visibility */
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  padding: 0;
}
.fullscreen-nav .nav-left .nav-links .nav-item .nav-link .nav-num {
  font-size: 14px;
  color: #ff5e14;
  vertical-align: super;
  margin-left: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: inline-block;
}
.fullscreen-nav .nav-left .nav-links .nav-item .nav-link:hover {
  color: #ff5e14; /* Highlight color */
  transform: translateX(20px);
}
.fullscreen-nav .nav-left .nav-links .nav-item .nav-link:hover .nav-num {
  opacity: 1;
  transform: translateY(0);
}
.fullscreen-nav .nav-left .nav-links {
  /* Dropdown sub-menu style */
}
.fullscreen-nav .nav-left .nav-links .nav-dropdown {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding-left: 20px;
}
.fullscreen-nav .nav-left .nav-links .nav-dropdown a {
  display: block;
  color: #888;
  font-size: 18px;
  padding: 5px 0;
}
.fullscreen-nav .nav-left .nav-links .nav-dropdown a:hover {
  color: #ff5e14;
}
.fullscreen-nav .nav-left .nav-links .dropdown-trigger:hover .nav-dropdown {
  height: auto; /* Simple CSS hover for fallback, JS will handle smoother */
}
.fullscreen-nav {
  /* --- Right Side (Visual) --- */
}
.fullscreen-nav .nav-right {
  position: relative;
  background: radial-gradient(circle at center, #1a2a3a 0%, #050a10 100%);
  overflow: hidden;
}
.fullscreen-nav .nav-right .nav-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080/000000/000000?text=+"); /* Noise texture */
  opacity: 0.1;
  pointer-events: none;
}
.fullscreen-nav .nav-right .visual-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.fullscreen-nav .nav-right .plane-container {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-nav .nav-right .plane-container .flying-plane {
  width: 600px;
  max-width: 90%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  transform: translateX(-150%); /* Start off-screen */
  opacity: 0;
}
.fullscreen-nav .nav-right .visual-text {
  text-align: center;
  margin-top: 50px;
}
.fullscreen-nav .nav-right .visual-text h3 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
}
.fullscreen-nav .nav-right .visual-text p {
  color: #ff5e14;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
}

/* =========================================
   9. ABOUT PAGE STYLES (RESTORED)
   ========================================= */
/* Top Bar Visibility Fix for Inner Pages */
body.about-page .top-bar,
.top-bar {
  position: relative;
  z-index: 10005;
}

.page-title-hero {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -85px;
  padding-top: 85px;
}
.page-title-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.page-title-hero h1 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
}

/* =========================================
   15. INFO STRIP & UTILITIES
   ========================================= */
.section-padding {
  padding: 100px 0;
}

.info-strip {
  position: relative;
  z-index: 50;
  margin-top: -160px; /* Increased overlap to reach middle of cards */
  padding-bottom: 30px;
}

.info-strip .row.g-0 {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.info-box {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Default Dark Style */
.info-strip .glass-card {
  /* background set individually below */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Individual Card Backgrounds */
.info-strip .col-lg-4:nth-child(1) .glass-card {
  background: #002147; /* Primary Blue */
}
.info-strip .col-lg-4:nth-child(2) .glass-card {
  background: #00152e; /* Darker Navy */
}
.info-strip .col-lg-4:nth-child(3) .glass-card {
  background: #0d3b66; /* Lighter Blue */
}

/* Remove right border from last item */
.info-strip .col-lg-4:last-child .glass-card {
  border-right: none;
}

.info-box .icon {
  font-size: 36px;
  color: #ff5e14;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-box h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* Hover Effect */
.info-box:hover {
  background: #ff5e14; /* Brand Orange */
  transform: translateY(-5px);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(255, 94, 20, 0.3);
}

.info-box:hover .icon,
.info-box:hover h4,
.info-box:hover p {
  color: #ffffff;
}

.info-box:hover .icon {
  transform: scale(1.1);
}

/* Responsive Overlap */
@media (max-width: 991px) {
  .info-strip {
    margin-top: 0;
    padding: 60px 0;
    background: #f4f7fa; /* Light background if not overlapping */
  }
  
  .info-strip .glass-card {
    background: #ffffff;
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .info-box h4 {
    color: #002147;
  }
  .info-box p {
    color: #666;
  }
  
  .info-box:hover {
    background: #ff5e14;
  }
  .info-box:hover h4 {
    color: #ffffff;
  }
}
.page-title-hero .breadcrumbs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-title-hero .breadcrumbs li {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-title-hero .breadcrumbs li a {
  color: #ffffff;
}
.page-title-hero .breadcrumbs li a:hover {
  color: #ff5e14;
}
.page-title-hero .breadcrumbs li + li {
  margin-left: 20px;
  position: relative;
}
.page-title-hero .breadcrumbs li + li:before {
  content: "/";
  position: absolute;
  left: -13px;
  color: #ff5e14;
  opacity: 0.7;
}
.page-title-hero .breadcrumbs li span {
  color: #ff5e14;
}

/* Modern Split Intro */
.about-intro .intro-img-wrapper {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.about-intro .intro-img-wrapper .img-box {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.about-intro .intro-img-wrapper .img-box.main {
  width: 90%;
  position: relative;
  z-index: 1;
}
.about-intro .intro-img-wrapper .img-box.main img {
  width: 100%;
}

/* =========================================
   16. FUTURISTIC ABOUT SECTION
   ========================================= */
.about.section-padding {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

/* Subtle Tech Background Grid */
.about.section-padding::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 33, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 33, 71, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* Image Container Styling */
.about-img {
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* Main Image - Tech Frame Effect */
.about-img img {
  border-radius: 20px;
  /* Clip-path for a tech-inspired angled corner */
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
  box-shadow: 20px 20px 60px rgba(0, 33, 71, 0.15);
  transition: all 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.02);
  box-shadow: 20px 20px 60px rgba(0, 33, 71, 0.25);
}

/* Tech Border Lines (Pseudo-elements) */
.about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  border-top: 4px solid #ff5e14;
  border-left: 4px solid #ff5e14;
  border-radius: 20px 0 0 0;
  z-index: -1;
  transition: all 0.5s ease;
}

.about-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-bottom: 4px solid #002147;
  border-right: 4px solid #002147;
  border-radius: 0 0 20px 0;
  z-index: -1;
  transition: all 0.5s ease;
}

.about-img:hover::before {
  top: -10px;
  left: -10px;
}
.about-img:hover::after {
  bottom: -10px;
  right: -10px;
}

/* Floating Experience Badge - Glassmorphism Tech */
.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px 35px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  border-left: 5px solid #ff5e14;
  animation: float-badge 4s ease-in-out infinite;
}

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

.experience-badge .years {
  font-size: 48px;
  font-weight: 800;
  color: #002147;
  line-height: 1;
}

.experience-badge .text {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  line-height: 1.2;
}

/* Content Styling */
.about-content {
  position: relative;
  z-index: 1;
  padding-left: 40px;
}

.about-content .subtitle {
  color: #ff5e14;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(255, 94, 20, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #002147;
  line-height: 1.2;
}

.about-content h2 .highlight {
  color: #ff5e14;
  position: relative;
  display: inline-block;
}

/* Underline effect for highlight */
.about-content h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 94, 20, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

/* Modern List Styling */
.about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.about-list li {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #002147;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.about-list li:hover {
  transform: translateX(10px);
  border-left: 3px solid #ff5e14;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-list li i {
  color: #ff5e14;
  margin-right: 15px;
  font-size: 18px;
  background: rgba(255, 94, 20, 0.1);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Tech Button */
.btn-main {
  position: relative;
  background: #ff5e14;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  transition: all 0.4s ease;
  border: none;
}

.btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #002147;
  z-index: -1;
  transition: all 0.4s ease;
  transform: skewX(-20deg);
  transform-origin: left;
}

.btn-main:hover::before {
  width: 120%;
  transform: skewX(-20deg) translateX(-10px);
}

.btn-main:hover {
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 33, 71, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
  .about-img {
    margin-bottom: 30px;
  }
  .experience-badge {
    left: 0;
    bottom: -20px;
  }
}

/* =========================================
   17. FUTURISTIC SERVICES SECTION
   ========================================= */
.futuristic-services {
  background: #0b1120; /* Dark Navy/Black */
  position: relative;
  z-index: 1;
}

.futuristic-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 33, 71, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 94, 20, 0.1) 0%, transparent 50%);
  z-index: -1;
}

/* Section Title overrides for dark theme */
.futuristic-services .section-title h2 {
  color: #ffffff;
}
.futuristic-services .section-title .subtitle {
  background: rgba(255, 255, 255, 0.1);
  color: #ff5e14;
}

/* Service Card Tech */
.service-card-tech {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-tech:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 94, 20, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(255, 94, 20, 0.1); /* Glow effect */
}

/* Image Wrapper */
.service-card-tech .card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-tech .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-tech:hover .card-img-wrapper img {
  transform: scale(1.1);
}

/* Tech Overlay on Image */
.service-card-tech .card-img-wrapper .tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(11, 17, 32, 0.9) 100%);
  z-index: 1;
}

/* Card Content */
.service-card-tech .card-content {
  padding: 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Floating Icon */
.service-card-tech .icon-box {
  width: 60px;
  height: 60px;
  background: #002147;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ff5e14;
  margin-top: -60px; /* Pull up into image area */
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-tech:hover .icon-box {
  background: #ff5e14;
  color: #ffffff;
  transform: rotateY(180deg);
}

.service-card-tech:hover .icon-box i {
  transform: rotateY(-180deg); /* Keep icon upright */
}

.service-card-tech h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card-tech:hover h3 {
  color: #ff5e14;
}

.service-card-tech p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Read More Link */
.service-card-tech .read-more {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-card-tech .read-more i {
  color: #ff5e14;
  transition: transform 0.3s ease;
}

.service-card-tech:hover .read-more {
  gap: 12px;
  color: #ff5e14;
}

.service-card-tech:hover .read-more i {
  transform: translateX(5px);
}

.service-card-modern {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}
.service-card-modern .card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-card-modern .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card-modern .card-img .icon-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #ff5e14;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
}
.service-card-modern .card-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 33, 71, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card-modern .card-content {
  padding: 30px;
}
.service-card-modern .card-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.service-card-modern .card-content p {
  color: #444;
  margin-bottom: 20px;
  font-size: 15px;
}
.service-card-modern .card-content .read-more {
  color: #002147;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.service-card-modern .card-content .read-more i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.service-card-modern .card-content .read-more:hover i {
  margin-left: 10px;
}
.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.service-card-modern:hover .card-img img {
  transform: scale(1.1);
}
.service-card-modern:hover .card-img:after {
  opacity: 1;
}
.service-card-modern:hover .card-img .icon-box {
  bottom: 30px;
  transform: rotateY(180deg);
}
.service-card-modern:hover .card-content h3 {
  color: #ff5e14;
}

.process-section {
  position: relative;
}
.process-section .process-wrapper {
  position: relative;
  padding-top: 30px;
  /* Connecting Line (Desktop Only) */
}
@media (min-width: 992px) {
  .process-section .process-wrapper:before {
    content: "";
    position: absolute;
    top: 90px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #e5e5e5;
    z-index: 1;
  }
}

.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.process-step .step-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid #002147;
  color: #002147;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.process-step .step-icon .step-num {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: #ff5e14;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #002147;
}
.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}
.process-step:hover .step-icon {
  background: #ff5e14;
  color: #ffffff;
  border-color: #ff5e14;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 94, 20, 0.3);
}

/* =========================================
   11. SERVICE STATS & TESTIMONIALS
   ========================================= */
.service-stats {
  background: linear-gradient(rgba(0, 33, 71, 0.95), rgba(0, 33, 71, 0.95)), url("../assets/13.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
}
.service-stats .counter {
  color: #fff !important;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 5px;
  display: inline-block;
}
.service-stats p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.testimonials-section {
  background-color: #f9f9f9;
}
.testimonials-section .testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  margin: 15px;
}
.testimonials-section .testimonial-card .quote-icon {
  font-size: 40px;
  color: rgba(0, 33, 71, 0.1);
  margin-bottom: 20px;
}
/* =========================================
   18. FUTURISTIC ABOUT PAGE ELEMENTS
   ========================================= */

/* Futuristic Page Title */
.page-title-futuristic {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 150px 0 100px;
  overflow: hidden;
}

.page-title-futuristic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.7));
  z-index: 1;
}

.page-title-futuristic::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 94, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 94, 20, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
}

.page-title-futuristic .content-wrapper {
  position: relative;
  z-index: 2;
}

.page-title-futuristic h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 94, 20, 0.5);
}

/* Futuristic Values Section */
.core-values-tech {
  background: #0b1120;
  position: relative;
  padding: 100px 0;
}

.core-values-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 33, 71, 0.3), transparent 70%);
}

.value-card-tech {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.value-card-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff5e14, #002147);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card-tech:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card-tech:hover::before {
  transform: scaleX(1);
}

.value-card-tech .icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 33, 71, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: #ff5e14;
  border: 1px solid rgba(255, 94, 20, 0.3);
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.2);
  transition: all 0.4s ease;
}

.value-card-tech:hover .icon {
  background: #ff5e14;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 94, 20, 0.6);
  transform: rotateY(180deg);
}

.value-card-tech:hover .icon i {
  transform: rotateY(-180deg);
}

.value-card-tech h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.value-card-tech p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

/* Futuristic Timeline */
.timeline-section-tech {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.timeline-section-tech::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: url('../assets/pattern-grid.png'); /* Fallback or texture */
  opacity: 0.05;
  z-index: 0;
}

.timeline-tech {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
}

.timeline-tech::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(0, 33, 71, 0.1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-tech-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-tech-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-tech-item:nth-child(even) { left: 50%; text-align: left; }

.timeline-tech-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #ff5e14;
  border-radius: 50%;
  top: 30px;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.2);
  transition: all 0.3s ease;
}

.timeline-tech-item:nth-child(odd)::after { right: -10px; }
.timeline-tech-item:nth-child(even)::after { left: -10px; }

.timeline-tech-item:hover::after {
  background: #ff5e14;
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.6);
  transform: scale(1.2);
}

.timeline-content-tech {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.timeline-content-tech:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #ff5e14;
}

.timeline-content-tech .year {
  display: inline-block;
  background: rgba(0, 33, 71, 0.1);
  color: #002147;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

.timeline-content-tech h4 {
  color: #002147;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.timeline-content-tech p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .timeline-tech::before { left: 20px; }
  .timeline-tech-item { width: 100%; padding-left: 50px; padding-right: 20px; }
  .timeline-tech-item:nth-child(odd), .timeline-tech-item:nth-child(even) { left: 0; text-align: left; }
  .timeline-tech-item:nth-child(odd)::after, .timeline-tech-item:nth-child(even)::after { left: 10px; }
}

/* Futuristic Stats */
.counters-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.counters-section .overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 33, 71, 0.85);
  z-index: 0;
}

/* Tech grid overlay for stats */
.counters-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

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

.counter-box-tech {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
}

/* Corner accents */
.counter-box-tech::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 15px; height: 15px;
  border-top: 2px solid #ff5e14;
  border-left: 2px solid #ff5e14;
  transition: all 0.3s ease;
}
.counter-box-tech::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 15px; height: 15px;
  border-bottom: 2px solid #ff5e14;
  border-right: 2px solid #ff5e14;
  transition: all 0.3s ease;
}

.counter-box-tech:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(255, 94, 20, 0.15);
}

.counter-box-tech:hover::before,
.counter-box-tech:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.counter-box-tech .counter {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
  color: #ff5e14;
  text-shadow: 0 0 20px rgba(255, 94, 20, 0.4);
  font-family: 'Barlow', sans-serif;
}

.counter-box-tech p {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}


.testimonials-section .testimonial-card p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 30px;
  color: #333333;
}
.testimonials-section .testimonial-card .client-info h5 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #002147;
}
.testimonials-section .testimonial-card .client-info span {
  font-size: 13px;
  color: #ff5e14;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* =========================================
   16. FUTURISTIC MODAL & FORM STYLES
   ========================================= */
.futuristic-modal {
  background: #00152e; /* Darker Deep Blue */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
  min-height: 600px;
}
.futuristic-modal .modal-img-col {
  min-height: 300px;
}
.futuristic-modal .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 21, 46, 0) 0%, rgba(0, 21, 46, 0.8) 100%);
  z-index: 1;
}
.futuristic-modal .service-icon-large {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.futuristic-modal .modal-content-col {
  background: linear-gradient(135deg, #00152e 0%, #001f40 100%);
}
.futuristic-modal .letter-spacing-2 {
  letter-spacing: 2px;
}
.futuristic-modal .text-light-50 {
  color: rgba(255, 255, 255, 0.7);
}
.futuristic-modal .divider-line {
  width: 60px;
  height: 3px;
  background: #ff5e14;
}
.futuristic-modal .btn-futuristic {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.futuristic-modal .btn-futuristic:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ff5e14;
  transition: all 0.3s ease;
  z-index: -1;
}
.futuristic-modal .btn-futuristic:hover {
  border-color: #ff5e14;
  color: #fff;
}
.futuristic-modal .btn-futuristic:hover:before {
  width: 100%;
}
.futuristic-modal .deco-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

/* Futuristic Form Inputs */
.futuristic-input .form-control,
.futuristic-input .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0;
}
.futuristic-input .form-control:focus,
.futuristic-input .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff5e14;
  box-shadow: none;
  color: #fff;
}
.futuristic-input .form-control::placeholder,
.futuristic-input .form-select::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.futuristic-input label {
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .futuristic-modal {
    min-height: auto;
  }
  .futuristic-modal .modal-img-col {
    height: 300px;
  }
  .futuristic-modal .img-overlay {
    background: linear-gradient(to bottom, rgba(0, 21, 46, 0) 0%, rgb(0, 21, 46) 100%);
  }
}
/* =========================================
   19. SERVICE MODAL STYLES (FUTURISTIC)
   ========================================= */
#serviceModal .modal-dialog {
  max-width: 900px;
}
#serviceModal .modal-content {
  background: #001226; /* Deep dark blue */
  border: 1px solid rgba(255, 94, 20, 0.3); /* Subtle orange border */
  border-radius: 0;
  box-shadow: 0 0 30px rgba(0, 33, 71, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: visible; /* Allow decorations to stick out if needed */
  /* Tech Corner Accents */
}
#serviceModal .modal-content:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #ff5e14;
  border-left: 2px solid #ff5e14;
  z-index: 10;
}
#serviceModal .modal-content:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #ff5e14;
  border-right: 2px solid #ff5e14;
  z-index: 10;
}
#serviceModal .btn-close-custom {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #001226;
  border: 1px solid #ff5e14;
  font-size: 18px;
  color: #ff5e14;
  z-index: 20;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 94, 20, 0.3);
}
#serviceModal .btn-close-custom:hover {
  color: #fff;
  background: #ff5e14;
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(255, 94, 20, 0.8);
}
#serviceModal .modal-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
#serviceModal .modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 5s ease;
}
#serviceModal .modal-img-wrapper:hover img {
  transform: scale(1.1);
}
#serviceModal .modal-img-wrapper {
  /* Scanning Line Animation */
}
#serviceModal .modal-img-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff5e14;
  box-shadow: 0 0 10px #ff5e14;
  animation: scanLine 3s linear infinite;
  opacity: 0.5;
}
#serviceModal .modal-img-wrapper .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 18, 38, 0.3) 0%, rgb(0, 18, 38) 100%);
}
#serviceModal .modal-info {
  background: #001226;
  color: #fff;
  position: relative;
  /* Tech Background Grid */
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
#serviceModal .modal-info h3 {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 33, 71, 0.5);
  border-bottom: 1px solid rgba(255, 94, 20, 0.3);
  padding-bottom: 15px;
  display: inline-block;
}
#serviceModal .modal-info p#modalDesc {
  color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}
#serviceModal .modal-info h5 {
  color: #ff5e14;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 20px;
}
#serviceModal .modal-info .modal-features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}
#serviceModal .modal-info .modal-features-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ff5e14;
  box-shadow: 0 0 5px #ff5e14;
  transform: rotate(45deg);
}
#serviceModal .modal-info .modal-features-list li:hover {
  transform: translateX(5px);
  color: #fff;
}
#serviceModal .modal-info .btn-main.small {
  padding: 10px 25px;
  font-size: 13px;
  border: 1px solid #ff5e14;
  background: rgba(255, 94, 20, 0.1);
}
#serviceModal .modal-info .btn-main.small:hover {
  background: #ff5e14;
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.5);
}
#serviceModal .modal-info .modal-nav .nav-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 0; /* Square for tech feel */
  color: #fff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#serviceModal .modal-info .modal-nav .nav-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #ff5e14;
  transition: all 0.3s ease;
  opacity: 0;
}
#serviceModal .modal-info .modal-nav .nav-btn.ms-2 {
  width: auto;
  padding: 0 20px;
  border-radius: 0;
}
#serviceModal .modal-info .modal-nav .nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff5e14;
  color: #ff5e14;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#serviceModal .modal-info .modal-nav .nav-btn:hover:before {
  opacity: 1;
}

@keyframes scanLine {
  0% {
    top: -10%;
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}
/* Mobile adjustments for modal */
@media (max-width: 991px) {
  #serviceModal .modal-content {
    margin: 10px;
  }
  #serviceModal .btn-close-custom {
    top: 10px;
    right: 10px;
    background: rgba(0, 18, 38, 0.9);
  }
  #serviceModal .modal-img-wrapper {
    height: 250px;
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  #serviceModal .modal-info {
    padding: 30px !important;
  }
}

/* --- Partner Logos --- */
.partner-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* --- Floating Animation --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.floating-animation {
  animation: float 4s ease-in-out infinite;
}

/* --- Market Chart Container --- */
.market-chart-container {
  padding: 20px;
  height: 500px;
}

/* =========================================
   20. FUTURISTIC CONTACT PAGE ELEMENTS
   ========================================= */

/* Contact Section Background */
.contact-section-tech {
  background: #0b1120;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.contact-section-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Tech Contact Cards */
.contact-card-tech {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.contact-card-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ff5e14;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.contact-card-tech:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 94, 20, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-card-tech:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px #ff5e14;
}
.contact-card-tech .icon {
  font-size: 24px;
  color: #ff5e14;
  margin-bottom: 20px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255, 94, 20, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-card-tech:hover .icon {
  background: #ff5e14;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.5);
  transform: rotateY(180deg);
}
.contact-card-tech h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.contact-card-tech p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Tech Contact Form */
.contact-form-wrapper-tech {
  background: rgba(0, 33, 71, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  position: relative;
  backdrop-filter: blur(10px);
}
/* Corner Accents for Form */
.contact-form-wrapper-tech::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  border-top: 2px solid #ff5e14;
  border-right: 2px solid #ff5e14;
}
.contact-form-wrapper-tech::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #ff5e14;
  border-left: 2px solid #ff5e14;
}

.contact-form-wrapper-tech h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Map Section Tech */
.map-section-tech {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.map-section-tech iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
  opacity: 0.8;
  transition: all 0.5s ease;
}
.map-section-tech:hover iframe {
  filter: invert(0%) hue-rotate(0deg) contrast(100%);
  opacity: 1;
}
.map-overlay-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 17, 32, 0.8) 0%, transparent 20%, transparent 80%, rgba(11, 17, 32, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

/* =========================================
   21. MOBILE RESPONSIVE TWEAKS
   ========================================= */
@media (max-width: 767px) {
  /* Top Bar: Only Email & Phone visible */
  .top-bar .top-social {
    display: none !important;
  }
  .top-bar .top-info span:nth-child(3) {
    display: none !important; /* Hides the clock/hours */
  }
  
  /* Center the remaining info on mobile */
  .top-bar .container {
    justify-content: center !important;
  }
  .top-bar .top-info {
    text-align: center;
    width: 100%;
  }
  .top-bar .top-info span {
    margin: 0 8px;
    font-size: 13px; /* Slightly smaller for mobile */
  }
}

/*# sourceMappingURL=style.css.map */
