/**
* AVEONAI - Modern Dark Tech Theme
* Professional & Innovative with Vibrant Gradient Accents
* Updated: January 2026
*/

/*--------------------------------------------------------------
# CSS Variables for Easy Theming
--------------------------------------------------------------*/
:root {
  --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #d946ef 100%);
  --accent-cyan: #00d4ff;
  --accent-purple: #8b5cf6;
  --accent-pink: #d946ef;
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #1e1e2e;
  --glow-cyan: 0 4px 20px rgba(0, 212, 255, 0.3);
  --glow-purple: 0 4px 20px rgba(139, 92, 246, 0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-secondary);
  background: var(--bg-dark);
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-purple);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: var(--text-primary);
}

/*--------------------------------------------------------------
# Scrollbar Styling
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 4px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-gradient);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  box-shadow: var(--glow-cyan);
}

.back-to-top i {
  font-size: 28px;
  color: var(--bg-dark);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-gradient);
  transform: translateY(-5px);
  box-shadow: var(--glow-purple);
}

.back-to-top:hover i {
  color: var(--text-primary);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bg-darker);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid transparent;
  border-top-color: var(--accent-cyan);
  border-right-color: var(--accent-purple);
  border-bottom-color: var(--accent-pink);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 0.8s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: transparent;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-color);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

#header .logo a span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#header .logo img {
  max-height: 40px;
}

#header .logo-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 500px) {
  #header .logo img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 30px;
  white-space: nowrap;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  background: var(--primary-gradient);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--glow-cyan);
}

.get-started-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
  color: #ffffff;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--accent-cyan);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  transition: 0.3s;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: var(--text-secondary);
  font-weight: 400;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background: var(--primary-gradient);
  color: #ffffff;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--bg-card);
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-secondary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffffff;
  background: var(--primary-gradient);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--bg-darker);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: var(--text-secondary);
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background: var(--primary-gradient);
  color: #ffffff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

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

/* Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(5, 5, 8, 0.88) 50%, rgba(10, 10, 15, 0.92) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(217, 70, 239, 0.08) 0%, transparent 70%);
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

#hero .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
  z-index: 2;
}

/* Hero Subtitle with Typing Effect */
.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--primary-gradient);
}

.typing-text::after {
  content: "We're Powering Innovation";
  animation: typing-rotate 12s infinite;
}

@keyframes typing-rotate {
  0%, 25% { content: "We're Powering Innovation"; }
  26%, 50% { content: "We're Building the Future"; }
  51%, 75% { content: "We're Transforming Business"; }
  76%, 100% { content: "We're Driving Growth"; }
}

/* Hero Title */
.hero-title {
  margin: 0 0 20px 0;
}

.hero-title .line-1 {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-title .line-2 {
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.gradient-text-animated {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink), var(--accent-cyan));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 6s ease infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#hero h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero h2 {
  color: var(--text-secondary);
  margin: 20px auto;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 700px;
  line-height: 1.6;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-hero-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-lg);
}

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

.btn-hero-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero Stats */
.hero-stats {
  margin-top: 60px;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.stat-box:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  line-height: 1;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-label {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 50px;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.scroll-indicator a:hover {
  color: var(--accent-cyan);
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { 
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% { 
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

.scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  text-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

#hero .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

#hero .icon-box i {
  font-size: 36px;
  line-height: 1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero .icon-box h3 {
  font-weight: 600;
  margin: 15px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: var(--text-primary);
  transition: all 0.3s ease;
}

#hero .icon-box h3 a:hover {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero .icon-box:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

#hero .icon-box:hover::before {
  opacity: 1;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  .hero-title .line-2 {
    font-size: 42px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 60px 0;
  }

  #hero .container {
    padding-top: 80px;
  }

  .hero-title .line-1 {
    font-size: 18px;
  }

  .hero-title .line-2 {
    font-size: 32px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 22px;
  }
  
  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--primary-gradient);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: var(--bg-darker);
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: 12px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.about .content p {
  color: var(--text-secondary);
}

.about img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  border: 1px solid var(--border-color);
}

.about img:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
  background: var(--bg-dark);
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100) brightness(1.5);
  max-height: 60px;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bg-card);
  opacity: 1;
  border: 2px solid var(--border-color);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
  border-color: transparent;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 40px;
  background: var(--bg-dark);
}

.features .icon-box {
  padding-left: 15px;
  margin-bottom: 20px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: var(--text-primary);
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features .icon-box p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.features .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, transparent 50%, rgba(139, 92, 246, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.features .image:hover {
  transform: scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

.features .image:hover::before {
  opacity: 1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: var(--bg-darker);
}

.services .icon-box {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 60px 30px;
  transition: all 0.4s ease;
  background: var(--bg-card);
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
  box-shadow: var(--glow-cyan);
}

.services .icon-box .icon i {
  color: #ffffff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: var(--text-primary);
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services .icon-box p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.services .icon-box:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  box-shadow: var(--glow-cyan);
}

.services .icon-box:hover::before {
  transform: scaleX(1);
}

.services .icon-box:hover .icon {
  transform: scale(1.1) rotate(10deg);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--bg-darker);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
}

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

.cta h3 {
  color: var(--text-primary);
  font-size: 32px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: all 0.4s ease;
  margin-top: 10px;
  background: var(--primary-gradient);
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: var(--glow-cyan);
}

.cta .cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  background: var(--bg-dark);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--text-primary);
  background: var(--primary-gradient);
  border-color: transparent;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--bg-card);
  border-radius: 12px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(10, 10, 15, 0.85);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--text-primary);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--accent-cyan);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  background: var(--bg-dark);
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 12px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bg-card);
  opacity: 1;
  border: 2px solid var(--accent-cyan);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  border-radius: 12px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: var(--bg-dark);
}

.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--text-primary);
}

.counts .content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: var(--accent-cyan);
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
}

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-cyan);
  margin: 0 auto;
  box-shadow: var(--glow-cyan);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--text-primary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-cyan);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: var(--text-secondary);
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bg-card);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: var(--bg-dark);
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
}

.team .member:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-cyan);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: var(--text-primary);
  margin: 0 3px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: var(--primary-gradient);
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  transform: scale(1.1);
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--text-primary);
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--text-secondary);
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: var(--bg-dark);
}

.contact .info {
  width: 100%;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
}

.contact .info i {
  font-size: 20px;
  background: var(--primary-gradient);
  color: var(--bg-dark);
  float: left;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  box-shadow: var(--glow-cyan);
}

.contact .info h4 {
  padding: 0 0 0 70px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.contact .info p {
  padding: 0 0 0 70px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--text-primary);
  background: #dc3545;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--text-primary);
  background: var(--accent-cyan);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--bg-card);
  text-align: center;
  padding: 15px;
}

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

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--text-muted);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  background: var(--bg-darker);
  color: var(--text-primary);
}

.contact .php-email-form input {
  height: 50px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-gradient);
  border: 0;
  padding: 14px 40px;
  color: #ffffff;
  transition: all 0.4s ease;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--glow-cyan);
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: var(--bg-darker);
  min-height: 40px;
  margin-top: 100px;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--text-muted);
  content: "/";
}

.breadcrumbs ol li a {
  color: var(--accent-cyan);
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--bg-darker);
  padding: 0 0 30px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#footer .footer-top .footer-info h3 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--text-secondary);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--bg-card);
  color: var(--text-primary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-gradient);
  color: var(--text-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--text-secondary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--bg-card);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px 15px;
  width: calc(100% - 120px);
  background: transparent;
  color: var(--text-primary);
}

#footer .footer-top .footer-newsletter form input[type=email]::placeholder {
  color: var(--text-muted);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  border: 0;
  font-size: 14px;
  padding: 0 25px;
  background: var(--primary-gradient);
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 600;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  transform: scale(1.05);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: var(--text-secondary);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.logo-height {
  max-height: 70px !important;
}

.inner-page {
  padding-top: 20px !important;
}

.inner-page img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  border: 1px solid var(--border-color);
}

.inner-page img:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Gradient Text Utility
--------------------------------------------------------------*/
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Glow Effects
--------------------------------------------------------------*/
.glow-cyan {
  box-shadow: var(--glow-cyan);
}

.glow-purple {
  box-shadow: var(--glow-purple);
}

/*--------------------------------------------------------------
# Animated Background Particles (Optional Enhancement)
--------------------------------------------------------------*/
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particles-bg .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: float 15s infinite;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Responsive Improvements
--------------------------------------------------------------*/
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title p {
    font-size: 28px;
  }
  
  .services .icon-box {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 24px;
  }
  
  #hero h2 {
    font-size: 14px;
  }
  
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Enhanced Image Effects
--------------------------------------------------------------*/
.img-fluid {
  transition: all 0.4s ease;
}

/* Image skeleton loading effect */
.img-loading {
  background: linear-gradient(90deg, 
    var(--bg-card) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    var(--bg-card) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Image reveal animation */
.img-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: imgReveal 0.6s ease forwards;
}

@keyframes imgReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Technology icons special styling */
.clients .swiper-slide img {
  transition: all 0.4s ease;
}

.clients .swiper-slide img:hover {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Vector Illustrations
--------------------------------------------------------------*/
.vector-illustration,
.page-vector,
.ai-vector {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-vector {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.page-vector:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
}

.vector-bg {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.vector-bg:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(139, 92, 246, 0.15);
}

.ai-vector {
  max-width: 400px;
}

/* Hide fallback images when SVG is present */
.vector-img.d-none {
  display: none !important;
}

/* Vector animation enhancements */
@keyframes float-vector {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.page-vector:hover svg {
  animation: float-vector 3s ease-in-out infinite;
}

/* Inner page vector styling */
.inner-page .page-vector {
  max-width: 450px;
}

@media (max-width: 768px) {
  .vector-illustration,
  .page-vector,
  .ai-vector {
    max-width: 300px;
    margin-bottom: 30px;
  }
  
  .vector-bg {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Bootstrap Dark Theme Overrides
--------------------------------------------------------------*/
:root {
  --bs-secondary-color: #94a3b8 !important;
  --bs-secondary-rgb: 148, 163, 184 !important;
  --bs-body-color: #94a3b8;
  --bs-body-bg: #0a0a0f;
}

.text-muted {
  color: var(--text-secondary) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.small.text-muted,
p.text-muted,
span.text-muted {
  color: var(--text-secondary) !important;
}

/* Ensure all Bootstrap text utilities work with dark theme */
.text-body-secondary {
  color: var(--text-secondary) !important;
}

/*--------------------------------------------------------------
# Logo Styling
--------------------------------------------------------------*/
.logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00d4ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.logo-accent {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #d946ef, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(217, 70, 239, 0.9));
  }
}

/* Hover effect for logo */
#header .logo a:hover .logo-text,
#header .logo a:hover .logo-accent {
  filter: brightness(1.3);
}

/* Footer logo adjustments */
.footer-info h3 .logo-text,
.footer-info h3 .logo-accent {
  font-size: 28px;
}

.footer-info h3 {
  display: flex;
  align-items: center;
  gap: 0;
}

/*--------------------------------------------------------------
# Dark Theme Contrast Fixes - Buttons, Titles, Icons
--------------------------------------------------------------*/

/* Section Titles - More vibrant */
.section-title h2 {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-title p {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Card/Box Titles */
.services .icon-box h4 a,
.features .icon-box h4,
#hero .icon-box h3 a,
.team .member .member-info h4,
.about .content h3 {
  color: #ffffff;
}

/* Icons - Brighter gradient */
.services .icon-box .icon {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  box-shadow: 0 4px 25px rgba(0, 212, 255, 0.4);
}

.features .icon-box i,
.about .content ul i,
.counts .content .count-box i,
#hero .icon-box i {
  background: linear-gradient(135deg, #00d4ff, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.2);
}

/* Buttons - Better contrast */
.btn-hero-primary,
.get-started-btn,
.cta .cta-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #d946ef 100%);
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.5);
  color: #00d4ff;
}

.btn-hero-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  color: #ffffff;
}

/* Contact form button */
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  color: #ffffff;
  font-weight: 600;
}

/* Portfolio filter buttons */
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: linear-gradient(135deg, #00d4ff, #8b5cf6);
  color: #ffffff;
}

/* Inner page headings */
h3.gradient-text,
.gradient-text {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA section */
.cta h3 {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.1);
}

/* Stat numbers */
.stat-number {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer headings */
#footer .footer-top h4 {
  color: #ffffff;
}

/* Breadcrumb */
.breadcrumbs h2 {
  color: #ffffff;
}

/* Inner page service cards */
.inner-page h4,
.inner-page h5 {
  color: #ffffff;
}

/* Icon colors in service pages */
[style*="background: var(--primary-gradient)"] i,
[style*="background:var(--primary-gradient)"] i {
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# SVG Logo Styling
--------------------------------------------------------------*/
#header .logo {
  display: flex;
  align-items: center;
}

#header .logo svg {
  transition: all 0.3s ease;
}

#header .logo:hover svg {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  transform: scale(1.02);
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo svg {
  transition: all 0.3s ease;
}

.footer-logo:hover svg {
  filter: brightness(1.1);
}

#footer .copyright strong {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
