/**
* ECW Track Enhanced Styles
* Modern, Dynamic, Interactive Design
*/

/* Import base styles */
@import url("main.css");

/* Modern Font Variables */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Enhanced Color Scheme */
:root {
  --background-color: #ffffff;
  --default-color: #2c3e50;
  --heading-color: #001973;
  --accent-color: #0066ff;
  --secondary-color: #00d4aa;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --border-color: #e2e8f0;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

/*  Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  line-height: 1.6;
  color: var(--default-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  padding-top: 60px; /* Account for fixed header */
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Buttons */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--accent-color);
  border-color: white;
}

/* Header - Complete Redesign with Better Balance */
.header {
  background: rgba(13, 27, 66, 0.95);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  padding: 15px 0;
  min-height: 75px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
}

.header.scrolled {
  background: rgba(13, 27, 66, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  min-height: 65px;
}

.header .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
}

.header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo Styling - Better Positioning and Visual Hierarchy */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10000;
  flex-shrink: 0;
  order: 1;
  position: relative;
}

.logo img {
  height: 55px !important;
  width: auto !important;
  max-width: 220px;
  transition: all var(--transition-base);
  filter: brightness(1) contrast(1.1)
    drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25));
  object-fit: contain;
}

.logo:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.15) contrast(1.25)
    drop-shadow(0 5px 15px rgba(0, 102, 255, 0.4));
}

/* Better Logo Balance on Large Screens */
@media (min-width: 1200px) {
  .logo {
    margin-right: 60px;
  }

  .logo img {
    height: 58px !important;
    max-width: 240px;
  }
}

/* Desktop Navigation - Better Balance and Spacing */
.navbar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 2;
  margin: 0 20px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list li {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  padding: 14px 18px;
  transition: all var(--transition-base);
  position: relative;
  display: block;
  border-radius: 10px;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
  background: rgba(0, 212, 170, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(0, 212, 170, 0.15);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  order: 3;
  flex-shrink: 0;
}

/* Header Buttons */
.header-buttons {
  gap: 0; /* Remove gap since there's only one button */
  justify-content: flex-end; /* Align the button to the right */
}

/* Removed btn-demo styles as it's no longer in use */

.btn-getstarted {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  color: white;
  padding: 12px 28px; /* Increased padding for better appearance */
  border-radius: 30px; /* Fully rounded corners */
  text-decoration: none;
  font-weight: 600;
  font-size: 15px; /* Slightly larger font */
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.35); /* Enhanced shadow */
}

.btn-getstarted:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
  color: white;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
}

/* Enhanced Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
}

.mobile-nav-toggle:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.4);
  transform: scale(1.05);
}

.mobile-nav-toggle:focus {
  outline: none;
}

.mobile-nav-toggle:active {
  transform: scale(0.95);
}

.hamburger-line {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 3px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.hamburger-line:nth-child(1) {
  top: 12px;
}

.hamburger-line:nth-child(2) {
  top: 20px;
}

.hamburger-line:nth-child(3) {
  top: 28px;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 20px;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: 20px;
}

.mobile-nav-toggle.active {
  background: rgba(0, 212, 170, 0.25);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 66, 0.98) 0%,
    rgba(0, 25, 115, 0.98) 100%
  );
  backdrop-filter: blur(25px);
  z-index: 9997;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  border-left: 2px solid rgba(0, 212, 170, 0.3);
  overflow-y: auto;
  padding-top: 100px;
}

.mobile-menu.mobile-nav-active {
  right: 0;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 170, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.mobile-nav-list li:hover::before {
  left: 100%;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 22px 35px;
  font-size: 17px;
  font-weight: 600;
  display: block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  border-left: 5px solid transparent;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(0, 212, 170, 0.2);
  border-left-color: var(--secondary-color);
  transform: translateX(12px);
  box-shadow: inset 0 0 25px rgba(0, 212, 170, 0.15);
}

/* Mobile Buttons */
.mobile-buttons {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-getstarted-mobile {
  padding: 14px 28px; /* Increased padding for better appearance */
  border-radius: 30px; /* Fully rounded corners */
  text-decoration: none;
  font-weight: 600;
  font-size: 15px; /* Slightly larger font */
  text-align: center;
  transition: all var(--transition-base);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  color: white;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.35); /* Enhanced shadow */
  width: 100%; /* Full width for mobile */
  margin-top: 20px; /* Add some space from nav items */
}

.btn-getstarted-mobile:hover {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.45); /* Enhanced hover shadow */
}

/* Mobile menu body scroll prevention */
.mobile-nav-open {
  overflow: hidden !important;
  height: 100vh;
}

/* Loading states for buttons */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .navbar-nav {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 3;
  }
}

/* Tablet specific adjustments */
@media (max-width: 1024px) {
  .navbar-nav {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 3;
  }
}

/* Ensure hamburger is always visible on smaller screens */
@media (max-width: 1199px) {
  .navbar-nav {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 3;
  }

  .header {
    padding: 8px 0;
    min-height: 60px;
  }

  .header.scrolled {
    padding: 6px 0;
    min-height: 55px;
  }

  .logo {
    margin-right: auto;
    order: 1;
    flex: 0 0 auto;
  }

  .logo img {
    height: 45px !important;
    max-width: 150px;
  }

  .header .container-fluid {
    padding: 0 15px;
    min-height: 60px;
  }

  .header-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    margin-right: 10px;
    flex: 0 0 auto;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(13, 27, 66, 0.98) 0%,
      rgba(0, 25, 115, 0.98) 100%
    );
    backdrop-filter: blur(25px);
    z-index: 9997;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    border-left: 2px solid rgba(0, 212, 170, 0.3);
    overflow-y: auto;
  }

  .navmenu.mobile-nav-active {
    right: 0;
    visibility: visible;
    animation: slideInRight 0.4s ease-out;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    padding: 120px 0 40px;
    gap: 8px;
    list-style: none;
    margin: 0;
    height: auto;
    min-height: 100%;
  }

  .navmenu ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
  }

  .navmenu ul li:last-child {
    border-bottom: none;
  }

  .navmenu ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 170, 0.15),
      transparent
    );
    transition: left 0.6s ease;
  }

  .navmenu ul li:hover::before {
    left: 100%;
  }

  .navmenu ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 22px 35px;
    font-size: 17px;
    font-weight: 600;
    display: block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    border-left: 5px solid transparent;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
  }

  .navmenu ul li a:hover,
  .navmenu ul li a.active {
    color: var(--secondary-color) !important;
    background: rgba(0, 212, 170, 0.2);
    border-left-color: var(--secondary-color);
    transform: translateX(12px);
    box-shadow: inset 0 0 25px rgba(0, 212, 170, 0.15);
  }

  .navmenu ul li a::after {
    display: none;
  }

  .navmenu ul li a i {
    margin-right: 10px;
    font-size: 18px;
  }

  /* Header buttons remain visible on mobile */
  .header-buttons {
    display: flex;
    gap: 8px;
  }

  .btn-demo,
  .btn-getstarted {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 20px;
  }

  /* Mobile menu overlay */
  .navmenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navmenu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Tablet and smaller desktop adjustments */
@media (max-width: 1199px) {
  .nav-list {
    gap: 25px;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .header-buttons {
    gap: 10px;
  }

  .btn-demo,
  .btn-getstarted {
    padding: 8px 16px;
    font-size: 13px;
  }

  .logo img {
    height: 45px !important;
    max-width: 180px;
  }
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  z-index: 1000;
}

/* Enhanced WhatsApp FAB - Improved Responsiveness */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  z-index: 1001;
  max-width: 250px;
  min-width: 60px;
}

.whatsapp-fab:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-fab .fab-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.whatsapp-fab .fab-text {
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

/* Social Fixed Container */
.social-fixed-container {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-fixed-container .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.social-fixed-container .linkedin {
  background: #0077b5;
}
.social-fixed-container .facebook {
  background: #1877f2;
}
.social-fixed-container .instagram {
  background: #e4405f;
}
.social-fixed-container .youtube {
  background: #ff0000;
}
.social-fixed-container .twitter {
  background: #1da1f2;
}
.social-fixed-container .email {
  background: #ea4335;
}

.social-fixed-container .icon:hover {
  transform: translateX(10px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* Enhanced Hero Section with Video Background */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
}

/* Animated Shapes */
.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 170, 0.1)
  );
  animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 170, 0.1),
    rgba(99, 102, 241, 0.1)
  );
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 10s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-4 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 20%;
  animation-delay: 15s;
  background: linear-gradient(
    45deg,
    rgba(99, 102, 241, 0.1),
    rgba(0, 102, 255, 0.1)
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes float-shapes {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translateY(-30px) rotate(270deg) scale(1.05);
  }
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

/* Particles Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particles-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.1),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 212, 170, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 102, 255, 0.3), transparent);
  animation: particle-move 20s linear infinite;
}

@keyframes particle-move {
  0% {
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    transform: translateX(-25%) translateY(-25%);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  margin-bottom: 3rem;
}

.hero-stats .stats-item {
  text-align: center;
  color: white;
}

.hero-stats .stats-item span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: var(--secondary-color);
}

.hero-stats .stats-item p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
}

.hero-main-img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.95)
  );
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(0, 102, 255, 0.1);
  min-width: 200px;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15),
    0 0 0 1px rgba(0, 102, 255, 0.2);
}

.floating-card i {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 102, 255, 0.3);
  flex-shrink: 0;
}

.floating-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card .card-title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 15px;
  line-height: 1.2;
}

.floating-card .card-subtitle {
  font-weight: 500;
  color: var(--medium-gray);
  font-size: 12px;
  opacity: 0.8;
}

.floating-card.card-1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.95),
    rgba(5, 150, 105, 0.9)
  );
  border-color: rgba(16, 185, 129, 0.3);
}

.floating-card.card-1 .card-title,
.floating-card.card-1 .card-subtitle {
  color: white;
}

.floating-card.card-1 i {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.floating-card.card-2 {
  bottom: 35%;
  left: -8%;
  animation-delay: 1s;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.95),
    rgba(220, 38, 38, 0.9)
  );
  border-color: rgba(239, 68, 68, 0.3);
}

.floating-card.card-2 .card-title,
.floating-card.card-2 .card-subtitle {
  color: white;
}

.floating-card.card-2 i {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.floating-card.card-3 {
  top: 65%;
  right: 15%;
  animation-delay: 2s;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.95),
    rgba(0, 212, 170, 0.9)
  );
  border-color: rgba(0, 102, 255, 0.3);
}

.floating-card.card-3 .card-title,
.floating-card.card-3 .card-subtitle {
  color: white;
}

.floating-card.card-3 i {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Modern Services Carousel */
.services-carousel {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.services-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 102, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 170, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services-swiper {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.2);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
}

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  fill: blue;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 170, 0.1)
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.service-content {
  padding: 40px 35px;
  position: relative;
}

.service-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 35px;
  right: 35px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.2),
    transparent
  );
}

.service-content h3 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
}

.service-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover .service-content h3::after {
  width: 60px;
}

.service-content p {
  color: var(--medium-gray);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 15px;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 8px;
}

.service-features li:hover {
  background: rgba(0, 102, 255, 0.05);
  padding-left: 15px;
  color: var(--accent-color);
}

.service-features i {
  color: var(--success-color);
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-features li:hover i {
  background: var(--success-color);
  color: white;
  transform: scale(1.1);
}

.service-content .btn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-content .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.service-content .btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.service-content .btn:hover::before {
  left: 0;
}

/* Services Swiper Navigation */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
  background: white;
  color: var(--accent-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-top: -27px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
}

.services-swiper .swiper-pagination {
  bottom: 10px;
}

.services-swiper .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.3;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
  background: var(--secondary-color);
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
  .services-carousel {
    padding: 80px 0;
  }

  .service-card {
    margin: 0 10px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    top: 20px;
    right: 20px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 30px 25px;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }
}

/* Enhanced About Section */
.about-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-base);
}

.about-image-container:hover .about-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.play-button:hover {
  transform: scale(1.1);
}

.about-stats {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-stats h4 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.about-stats p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
}

.features-list {
  margin: 40px 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.feature-content p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.about-cta {
  margin-top: 40px;
}

/* Enhanced Features Section */
.features {
  padding: 100px 0;
}

.features-item {
  margin-bottom: 100px;
}

.feature-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 102, 255, 0.8),
    rgba(0, 212, 170, 0.8)
  );
  opacity: 0;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-container:hover .feature-overlay {
  opacity: 1;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
}

.feature-badge i {
  font-size: 20px;
}

.feature-content h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 25px;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.feature-highlights {
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.highlight-item i {
  color: var(--success-color);
  font-size: 20px;
  margin-top: 2px;
}

.feature-stats {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
}

.stat-group {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-top: 5px;
}

.feature-benefits {
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content h5 {
  margin-bottom: 8px;
  color: var(--heading-color);
}

.alert-types {
  margin: 30px 0;
}

.alert-type {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.alert-type:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.alert-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.alert-icon.geo-fence {
  background: linear-gradient(45deg, #667eea, #764ba2);
}
.alert-icon.speed {
  background: linear-gradient(45deg, #f093fb, #f5576c);
}
.alert-icon.tamper {
  background: linear-gradient(45deg, #ffecd2, #fcb69f);
  color: #e67e22;
}

.alert-details h5 {
  margin-bottom: 10px;
  color: var(--heading-color);
}

.analytics-features {
  margin: 30px 0;
}

.analytics-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all var(--transition-base);
}

.analytics-item:hover {
  background: var(--accent-color);
  color: white;
}

.analytics-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.analytics-item:hover i {
  color: white;
}

/* Demo Section */
.demo {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: white;
}

.demo h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.demo .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.demo-feature i {
  color: var(--secondary-color);
  font-size: 20px;
}

.demo-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xl);
}

.demo-map {
  width: 100%;
  height: 400px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
}

.demo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: var(--shadow-md);
}

.demo-vehicle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-vehicle i {
  color: var(--accent-color);
  font-size: 20px;
}

.demo-vehicle span {
  font-weight: 600;
  color: var(--default-color);
}

.vehicle-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vehicle-info small {
  color: var(--medium-gray);
  font-size: 12px;
}

/*  Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--light-gray);
}

.pricing-item {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.pricing-item.modern-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border: 2px solid rgba(0, 102, 255, 0.1);
}

.pricing-item.featured-plan {
  background: linear-gradient(
    145deg,
    rgba(0, 102, 255, 0.03),
    rgba(0, 212, 170, 0.03)
  );
  border: 2px solid rgba(0, 102, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
}

/* Modern Pricing Badge Corner */
.pricing-badge-corner {
  position: absolute;
  top: 20px;
  right: -15px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 25px;
  border-radius: 25px 0 0 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transform: rotate(-2deg);
}

.pricing-badge-corner.featured {
  background: linear-gradient(135deg, #0066ff, #00d4aa);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
  font-size: 13px;
  padding: 10px 30px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(-2deg) scale(1.05);
  }
}

/* Plan Icons */
.plan-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
}

.plan-icon.featured {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Modern Pricing Header */
.pricing-header {
  text-align: center;
  padding: 40px 30px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-subtitle {
  color: var(--medium-gray);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

/* Modern Price Display */
.price-display {
  text-align: center;
  margin: 30px 0;
}

.price-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.pricing-item.featured-plan .price-large {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features Wrapper */
.features-wrapper {
  padding: 0 30px 30px;
}

/* Modern Button */
.btn-modern {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-modern:hover::before {
  left: 0;
}

.btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
  color: white;
}

/* Pricing Footer */
.pricing-footer {
  padding: 0 30px 40px;
  text-align: center;
}

.pricing-note {
  margin-top: 15px;
  padding: 10px 15px;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.pricing-note small {
  color: var(--medium-gray);
  font-size: 13px;
  line-height: 1.4;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-item.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.pricing-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.pricing-item.featured h3 {
  color: white;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--default-color);
}

.pricing-badge.popular {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-body h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.pricing-item.featured h4 {
  color: white;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.period {
  font-size: 1rem;
  color: var(--medium-gray);
  vertical-align: bottom;
}

.pricing-item.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.plan-description {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.pricing-item.featured .plan-description {
  color: rgba(255, 255, 255, 0.9);
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.features-list i {
  font-size: 16px;
  color: var(--success-color);
}

.pricing-item.featured .features-list i {
  color: rgba(255, 255, 255, 0.9);
}

.feature-unavailable {
  opacity: 0.5;
}

.feature-unavailable i {
  color: var(--medium-gray);
}

.pricing-footer {
  text-align: center;
}

.pricing-footer .btn {
  width: 100%;
  margin-bottom: 15px;
}

.renewal-note {
  font-size: 13px;
  color: var(--medium-gray);
  margin: 0;
}

.pricing-item.featured .renewal-note {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-benefits {
  margin-top: 80px;
  padding: 60px 0;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.pricing-benefits .benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.pricing-benefits .benefit-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.pricing-benefits .benefit-item h5 {
  margin-bottom: 15px;
  color: var(--heading-color);
}

.pricing-benefits .benefit-item p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Show More Button Styles */
.show-more-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 170, 0.1)
  );
  border: 2px solid rgba(0, 102, 255, 0.2);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.show-more-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15),
    rgba(0, 212, 170, 0.15)
  );
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.show-more-btn i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.show-more-btn.expanded i {
  transform: rotate(180deg);
}

.show-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.show-more-btn:hover::before {
  left: 100%;
}

/* Independent Card Height System */
.pricing-item {
  align-self: flex-start; /* Prevent stretching to match other cards */
  height: auto; /* Allow natural height changes */
}

/* Hidden Features Animation - Independent Expansion */
.hidden-features {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.hidden-features.show {
  max-height: 2000px; /* Increased to accommodate all features */
  opacity: 1;
  transform: translateY(0);
}

/* Force Independent Card Expansion - Complete CSS Override */
.pricing .row {
  align-items: flex-start !important; /* Prevent cards from stretching to match tallest card */
  display: flex !important;
}

.pricing .row .col-lg-5 {
  align-self: flex-start !important;
  flex: 0 0 auto !important;
}

.pricing-item {
  height: auto !important;
  min-height: auto !important;
  flex: none !important; /* Remove flex stretching */
  display: block !important;
  width: 100% !important;
  position: relative !important;
}

.pricing-item.modern-card {
  align-self: flex-start !important;
  height: auto !important;
  min-height: auto !important;
}

.pricing-item.featured-plan {
  align-self: flex-start !important;
  height: auto !important;
  min-height: auto !important;
  transform: scale(1.05) !important;
}

.pricing-item.featured-plan.expanding {
  transform: scale(1.07) !important;
}

/* Enhanced Features Animation with Independent Card Heights */
.features-list li {
  transition: all 0.2s ease;
}

.hidden-features li {
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.hidden-features.show li {
  transform: translateY(0);
  opacity: 1;
}

/* Staggered animation delays for smooth reveal */
.hidden-features.show li:nth-child(1) {
  transition-delay: 0.05s;
}
.hidden-features.show li:nth-child(2) {
  transition-delay: 0.1s;
}
.hidden-features.show li:nth-child(3) {
  transition-delay: 0.15s;
}
.hidden-features.show li:nth-child(4) {
  transition-delay: 0.2s;
}
.hidden-features.show li:nth-child(5) {
  transition-delay: 0.25s;
}
.hidden-features.show li:nth-child(6) {
  transition-delay: 0.3s;
}
.hidden-features.show li:nth-child(7) {
  transition-delay: 0.35s;
}
.hidden-features.show li:nth-child(8) {
  transition-delay: 0.4s;
}
.hidden-features.show li:nth-child(9) {
  transition-delay: 0.45s;
}
.hidden-features.show li:nth-child(10) {
  transition-delay: 0.5s;
}
.hidden-features.show li:nth-child(11) {
  transition-delay: 0.55s;
}
.hidden-features.show li:nth-child(12) {
  transition-delay: 0.6s;
}
.hidden-features.show li:nth-child(13) {
  transition-delay: 0.65s;
}
.hidden-features.show li:nth-child(14) {
  transition-delay: 0.7s;
}
.hidden-features.show li:nth-child(15) {
  transition-delay: 0.75s;
}
.hidden-features.show li:nth-child(16) {
  transition-delay: 0.8s;
}
.hidden-features.show li:nth-child(17) {
  transition-delay: 0.85s;
}
.hidden-features.show li:nth-child(18) {
  transition-delay: 0.9s;
}
.hidden-features.show li:nth-child(19) {
  transition-delay: 0.95s;
}
.hidden-features.show li:nth-child(20) {
  transition-delay: 1s;
}

/* Pricing Item Enhanced Animation */
.pricing-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-item.expanding {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

/* Featured Plan Enhanced Styles */
.pricing-item.featured-plan .show-more-btn {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.8)
  ) !important;
  border: 2px solid rgba(0, 102, 255, 0.8) !important;
  color: var(--accent-color) !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.pricing-item.featured-plan .show-more-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95)
  ) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
  transform: translateY(-3px);
}

/* Enhanced visibility for Premium Plus show more button */
.premium-plus-show-more {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  ) !important;
  border: 2px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3) !important;
}

.premium-plus-show-more:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95)
  ) !important;
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4) !important;
  transform: translateY(-3px) !important;
}

/* Ensure text spans within Premium Plus button are visible */
.premium-plus-show-more .show-text,
.premium-plus-show-more .hide-text {
  color: var(--accent-color) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.premium-plus-show-more:hover .show-text,
.premium-plus-show-more:hover .hide-text {
  color: var(--secondary-color) !important;
}

/* Enhanced button icons */
.premium-plus-show-more i {
  color: var(--accent-color) !important;
  transition: all 0.3s ease !important;
}

.premium-plus-show-more:hover i {
  color: var(--secondary-color) !important;
}

/* Enhanced Team Section */
.team {
  padding: 100px 0;
  background: white;
}

.member {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.member-img {
  position: relative;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all var(--transition-base);
}

.member:hover .member-img img {
  transform: scale(1.1);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-base);
}

.member:hover .social-overlay {
  opacity: 1;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
}

.social a:hover {
  background: white;
  color: var(--accent-color);
  transform: scale(1.1);
}

.member-content {
  padding: 30px;
}

.member-content h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.member-content span {
  color: var(--accent-color);
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.member-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill {
  background: var(--light-gray);
  color: var(--default-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.team-stats {
  margin-top: 80px;
  padding: 60px 0;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: white;
}

.team-stats .stat-item h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
}

.team-stats .stat-item p {
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Leadership Section */
.leadership {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.leadership::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(0, 102, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(0, 212, 170, 0.03) 0%,
      transparent 50%
    );
  animation: floating-bg 20s ease-in-out infinite;
}

@keyframes floating-bg {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

.leadership-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.leadership-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 102, 255, 0.15),
    0 0 0 1px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 102, 255, 0.2);
}

/* Special styling for CEO and Founder cards */
.leadership-card.ceo-card {
  background: linear-gradient(145deg, #fff7ed, #ffffff);
  border: 2px solid rgba(251, 146, 60, 0.1);
}

.leadership-card.ceo-card:hover {
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 35px 80px rgba(251, 146, 60, 0.15),
    0 0 0 1px rgba(251, 146, 60, 0.1);
}

.leadership-card.founder-card {
  background: linear-gradient(145deg, #f0f9ff, #ffffff);
  border: 2px solid rgba(14, 165, 233, 0.1);
}

.leadership-card.founder-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 35px 80px rgba(14, 165, 233, 0.15),
    0 0 0 1px rgba(14, 165, 233, 0.1);
}

.leader-img-container {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 28px 28px 0 0;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.leadership-card:hover .leader-img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.2) contrast(1.1) saturate(1.2);
}

.leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.95) 0%,
    rgba(0, 212, 170, 0.95) 50%,
    rgba(99, 102, 241, 0.95) 100%
  );
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  backdrop-filter: blur(2px);
}

.leadership-card:hover .leader-overlay {
  opacity: 1;
}

.leader-quote {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.leadership-card:hover .leader-quote {
  transform: translateY(0);
}

.leader-quote i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.leader-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.leader-content {
  padding: 45px 35px;
  text-align: center;
  position: relative;
}

.leader-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.leader-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.leadership-card:hover .leader-badge::before {
  left: 100%;
}

.leader-content h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.leader-title {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-content p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.leader-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  padding: 25px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.02),
    transparent
  );
}

.leader-stats .stat {
  text-align: center;
  transition: all var(--transition-base);
}

.leader-stats .stat:hover {
  transform: translateY(-3px);
}

.leader-stats .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 102, 255, 0.2);
}

.leader-stats .label {
  font-size: 0.95rem;
  color: var(--medium-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.leader-social a {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, var(--light-gray), #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.leader-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-social a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.leader-social a:hover {
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
  border-color: var(--accent-color);
}

.leader-social a i {
  position: relative;
  z-index: 2;
  font-size: 18px;
}

.leadership-vision {
  margin-top: 100px;
  padding: 70px 50px;
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 102, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.leadership-vision::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.vision-content h3 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.vision-content .lead {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.vision-list {
  list-style: none;
  padding: 0;
}

.vision-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.vision-list i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.vision-stats {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
}

.vision-stat {
  text-align: center;
  padding: 20px 10px;
}

.vision-stat h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.vision-stat p {
  color: var(--medium-gray);
  font-weight: 500;
  margin: 0;
}

/* Modern Team Swiper Styles */
.team-swiper {
  padding: 40px 0;
  overflow: hidden;
}

.modern-team-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.modern-team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.1);
}

.team-member-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-team-card:hover .team-member-img img {
  transform: scale(1.1);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 102, 255, 0.9),
    rgba(0, 212, 170, 0.9)
  );
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-team-card:hover .member-overlay {
  opacity: 1;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.member-social a:hover {
  background: white;
  color: var(--accent-color);
  transform: scale(1.15) rotate(360deg);
}

.team-member-content {
  padding: 35px 25px;
  text-align: center;
}

.team-member-content h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-weight: 700;
}

.member-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.expertise-tag {
  background: linear-gradient(
    135deg,
    var(--light-gray),
    rgba(0, 102, 255, 0.05)
  );
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* Modern Team Stats */
.modern-team-stats {
  margin-top: 80px;
  padding: 60px 40px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: var(--gradient-primary);
  color: white;
}

.stat-card .stat-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat-card:hover h3 {
  color: white;
}

.stat-card p {
  color: var(--medium-gray);
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.stat-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Team Swiper Navigation */
.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
  background: var(--gradient-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -25px;
  transition: all 0.3s ease;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
  transform: scale(1.1);
}

.team-swiper .swiper-button-next::after,
.team-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.team-swiper .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.team-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.testimonials .section-title span,
.testimonials .section-title h2,
.testimonials .section-title p {
  color: white;
}

.testimonials-swiper {
  padding: 40px 0;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
}

.client-info h3 {
  color: var(--heading-color);
  margin-bottom: 5px;
}

.client-info h4 {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 8px;
}

.location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--medium-gray);
  font-size: 14px;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #fbbf24;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  position: relative;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  font-size: 20px;
}

.testimonial-footer {
  margin-top: 20px;
  text-align: right;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success-color);
  font-weight: 600;
  font-size: 14px;
}

.testimonials-stats {
  margin-top: 60px;
}

.testimonials-stats .stat-item {
  text-align: center;
  color: white;
}

.testimonials-stats .stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.testimonials-stats .stat-item p {
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Interactive FAQ Section */
.faq {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(0, 102, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(0, 212, 170, 0.03) 0%,
      transparent 50%
    );
  animation: faq-bg-float 20s ease-in-out infinite;
}

@keyframes faq-bg-float {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-radius: 25px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12),
    0 0 0 1px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 102, 255, 0.15);
}

.faq-item.faq-active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15),
    0 0 0 1px rgba(0, 102, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 102, 255, 0.25);
}

.faq-item h3 {
  padding: 30px 80px 30px 80px;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--heading-color);
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.faq-item.faq-active h3 {
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 50%;
}

.faq-item:hover .faq-icon {
  background: rgba(0, 102, 255, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.faq-item.faq-active .faq-icon {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.15) rotate(360deg);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.faq-toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 50%;
}

.faq-item:hover .faq-toggle {
  background: rgba(0, 102, 255, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.faq-item.faq-active .faq-toggle {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.faq-content {
  padding: 0 80px 35px 80px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.faq-active .faq-content {
  max-height: 500px;
  opacity: 1;
  padding: 10px 80px 35px 80px;
}

.faq-content p {
  line-height: 1.8;
  color: var(--default-color);
  font-size: 1.05rem;
  margin: 0;
  padding: 20px 0 0 0;
  border-top: 2px solid rgba(0, 102, 255, 0.1);
  position: relative;
}

.faq-content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

/* Enhanced FAQ Responsive Design */
@media (max-width: 768px) {
  .faq-item h3 {
    padding: 25px 70px 25px 70px;
    font-size: 1.1rem;
  }

  .faq-content {
    padding: 0 70px 30px 70px;
  }

  .faq-item.faq-active .faq-content {
    padding: 10px 70px 30px 70px;
  }

  .faq-icon,
  .faq-toggle {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .faq-icon {
    left: 20px;
  }

  .faq-toggle {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .faq-item h3 {
    padding: 20px 60px 20px 60px;
    font-size: 1rem;
  }

  .faq-content {
    padding: 0 60px 25px 60px;
  }

  .faq-item.faq-active .faq-content {
    padding: 10px 60px 25px 60px;
  }

  .faq-content p {
    font-size: 0.95rem;
  }
}

/* Enhanced Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-info {
  padding: 40px 0;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.info-item:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.info-item:hover .info-icon {
  background: rgba(255, 255, 255, 0.2);
}

.info-content h3 {
  margin-bottom: 10px;
  color: var(--heading-color);
}

.info-item:hover .info-content h3 {
  color: white;
}

.info-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin: 0;
}

.info-item:hover .info-content p {
  color: rgba(255, 255, 255, 0.9);
}

.php-email-form {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 102, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.php-email-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.php-email-form .form-control {
  border: 2px solid rgba(0, 102, 255, 0.1);
  border-radius: 15px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--default-color);
}

.php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  background: white;
  transform: translateY(-2px);
}

.php-email-form .form-control::placeholder {
  color: var(--medium-gray);
  font-weight: 400;
  opacity: 0.8;
}

.php-email-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 15px;
}

.php-email-form .btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 15px;
  padding: 18px 40px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.php-email-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
}

.php-email-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

.php-email-form .btn:hover::before {
  left: 0;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.php-email-form .loading {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent-color);
  border: 2px solid rgba(0, 102, 255, 0.2);
}

.php-email-form .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger-color);
  border: 2px solid rgba(239, 68, 68, 0.2);
}

.php-email-form .sent-message {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  border: 2px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.php-email-form .sent-message i {
  font-size: 1.5rem;
  color: var(--success-color);
}

/* Enhanced Form Groups */
.php-email-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.php-email-form .form-group label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.php-email-form .form-group:focus-within label {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.php-email-form .invalid-feedback {
  color: var(--danger-color);
  font-size: 13px;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

.php-email-form .form-control.is-invalid {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.php-email-form .form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.php-email-form .form-control.is-valid {
  border-color: var(--success-color);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Character Counter */
.character-count {
  font-size: 12px;
  color: var(--medium-gray);
  text-align: right;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.character-count.warning {
  color: var(--warning-color);
}

.character-count.danger {
  color: var(--danger-color);
}

/* Loading Spinner */
.php-email-form .loading .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-top: 2px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

.php-email-form .loading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent-color);
}

/* Submit Button Enhancement */
.php-email-form .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.php-email-form .btn i {
  transition: transform 0.3s ease;
}

.php-email-form .btn:hover i {
  transform: translateX(3px);
}

.php-email-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Enhanced Footer */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: 80px 0 40px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-about .sitename {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  margin-right: 15px;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.credits {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Scroll Top - Better Positioning */
.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  color: white;
}

/* Enhanced Premium Preloader - Bulletproof Version */
#preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0d1b2a 100%);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  overflow: hidden;
  pointer-events: auto;
}

/* Simple fallback - if JS fails, auto-hide after 3 seconds */
#preloader {
  animation: preloader-auto-hide 3s ease-in-out forwards;
}

@keyframes preloader-auto-hide {
  0%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

.preloader-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding: 40px 20px;
}

/* Simplified Logo - No Extra Elements */
.preloader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

@keyframes premium-logo-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    filter: brightness(1.1) contrast(1.2)
      drop-shadow(0 0 15px rgba(0, 102, 255, 0.3));
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
  }
  33% {
    transform: translateY(-8px) scale(1.08);
    filter: brightness(1.3) contrast(1.4)
      drop-shadow(0 0 25px rgba(0, 212, 170, 0.5));
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
  }
  66% {
    transform: translateY(3px) scale(1.02);
    filter: brightness(1.2) contrast(1.3)
      drop-shadow(0 0 20px rgba(99, 102, 241, 0.4));
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
  }
}

@keyframes logo-ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logo-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Enhanced Loading Text */
.loading-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: text-shimmer 2s ease-in-out infinite;
  position: relative;
}

.loading-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: text-shine 3s ease-in-out infinite;
}

@keyframes text-shimmer {
  0%,
  100% {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
  }
  50% {
    color: rgba(0, 212, 170, 1);
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
  }
}

@keyframes text-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Premium Loading Bar */
.loading-bar {
  width: 300px;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 102, 255, 0.2);
}

.loading-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: bar-shimmer 2s ease-in-out infinite;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--accent-color) 0%,
    var(--secondary-color) 50%,
    rgba(99, 102, 241, 0.9) 100%
  );
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  animation: premium-loading 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.loading-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: progress-shine 1.5s ease-in-out infinite;
}

.loading-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

@keyframes premium-loading {
  0% {
    width: 0%;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
  }
  25% {
    width: 30%;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
  }
  50% {
    width: 65%;
    box-shadow: 0 0 25px rgba(0, 212, 170, 0.5);
  }
  75% {
    width: 85%;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
  }
  100% {
    width: 100%;
    box-shadow: 0 0 35px rgba(0, 212, 170, 0.7);
  }
}

@keyframes progress-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes bar-shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

/* Loading Percentage */
.loading-percentage {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
  animation: percentage-glow 1s ease-in-out infinite alternate;
}

@keyframes percentage-glow {
  0% {
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
  }
  100% {
    color: rgba(0, 212, 170, 1);
    text-shadow: 0 4px 20px rgba(0, 212, 170, 0.6);
  }
}

/* Loading Status Text */
.loading-status {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 12px;
  animation: status-fade 2s ease-in-out infinite;
}

@keyframes status-fade {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Particles Effect */
.preloader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.preloader-particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(
      1px 1px at 20px 30px,
      rgba(255, 255, 255, 0.15),
      transparent
    ),
    radial-gradient(1px 1px at 40px 70px, rgba(0, 212, 170, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 102, 255, 0.25), transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(99, 102, 241, 0.15),
      transparent
    );
  animation: particles-float 15s linear infinite;
}

@keyframes particles-float {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-25%) translateY(-25%) rotate(360deg);
  }
}

/* Preloader fade out */
#preloader.loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(1.1);
  pointer-events: none !important;
  transition: opacity 0.5s ease-out, visibility 0s 0.5s, transform 0.5s ease-out;
}

/* Preloader hide state for fallback */
#preloader.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Ensure body is not scrollable when preloader is active */
body.preloader-active {
  overflow: hidden;
  height: 100vh;
}

/* Remove preloader active class when loaded */
body.preloader-loaded {
  overflow: auto;
  height: auto;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .preloader-content {
    padding: 20px 15px;
    max-width: 300px;
  }

  .preloader-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }

  .preloader-logo img {
    width: 40px;
    height: 40px;
  }

  .loading-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .loading-bar {
    width: 250px;
    height: 4px;
  }

  .loading-percentage {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .loading-status {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.section-title h2 {
  font-size: 2.75rem;
  margin: 15px 0 20px;
  color: var(--heading-color);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .social-fixed-container {
    left: 20px;
  }

  .whatsapp-fab {
    right: 20px;
    bottom: 25px;
  }

  .scroll-top {
    right: 20px;
    bottom: 95px;
  }

  .header .container-fluid {
    padding: 0 15px;
  }
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .header {
    padding: 6px 0;
    min-height: 55px;
  }

  .header.scrolled {
    padding: 4px 0;
    min-height: 50px;
  }

  .logo img {
    height: 40px !important;
    max-width: 140px;
  }

  .header .container-fluid {
    padding: 0 12px;
  }

  .header-buttons {
    gap: 6px;
  }

  .btn-demo,
  .btn-getstarted {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Floating elements adjustments */
  .whatsapp-fab {
    right: 15px;
    bottom: 20px;
    padding: 12px 16px;
  }

  .whatsapp-fab .fab-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .whatsapp-fab .fab-text {
    font-size: 12px;
  }

  .scroll-top {
    right: 15px;
    bottom: 80px;
    width: 45px;
    height: 45px;
  }

  .social-fixed-container {
    left: 15px;
    gap: 10px;
  }

  .social-fixed-container .icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .floating-card {
    display: none;
  }

  .social-fixed-container {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 55px; /* Adjust for smaller header */
  }

  .header {
    padding: 4px 0;
    min-height: 50px;
  }

  .header.scrolled {
    padding: 3px 0;
    min-height: 48px;
  }

  .logo img {
    height: 35px !important;
  }

  .header .container-fluid {
    padding: 0 12px;
    min-height: 50px;
  }

  .header-buttons {
    gap: 6px;
  }

  .btn-demo,
  .btn-getstarted {
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 0 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .feature-content h3 {
    font-size: 2rem;
  }

  .whatsapp-fab {
    right: 15px;
    bottom: 15px;
    padding: 12px 15px;
  }

  .whatsapp-fab .fab-text {
    display: none;
  }

  .scroll-top {
    right: 15px;
    bottom: 85px;
  }

  .member-img img {
    height: 250px;
  }

  .team-stats {
    padding: 40px 20px;
  }

  .team-stats .stat-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 50px; /* Further adjust for very small screens */
  }

  .header {
    padding: 3px 0;
    min-height: 48px;
  }

  .header.scrolled {
    padding: 2px 0;
    min-height: 45px;
  }

  .logo img {
    height: 32px !important;
  }

  .header .container-fluid {
    padding: 0 10px;
    min-height: 48px;
  }

  .header-buttons {
    gap: 4px;
  }

  .btn-demo,
  .btn-getstarted {
    padding: 5px 8px;
    font-size: 10px;
  }

  .hero-stats .stats-item span {
    font-size: 1.5rem;
  }

  .hero-stats .stats-item p {
    font-size: 0.8rem;
  }

  .service-content {
    padding: 20px;
  }

  .feature-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .alert-type {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .pricing-item {
    padding: 30px 20px;
  }

  .member-content {
    padding: 20px;
  }

  .testimonial-item {
    padding: 25px;
    margin: 10px;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .php-email-form {
    padding: 25px;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  body {
    padding-top: 48px;
  }

  .header {
    padding: 4px 0;
    min-height: 50px;
  }

  .header.scrolled {
    padding: 3px 0;
    min-height: 47px;
  }

  .logo {
    order: 1;
    margin-right: auto;
  }

  .logo img {
    height: 35px !important;
    max-width: 120px;
  }

  .header .container-fluid {
    padding: 0 10px;
    min-height: 50px;
  }

  .header-content {
    justify-content: space-between;
  }

  .header-actions {
    order: 3;
  }

  .header-buttons {
    gap: 4px;
  }

  .btn-demo,
  .btn-getstarted {
    padding: 5px 8px;
    font-size: 10px;
    white-space: nowrap;
  }

  .mobile-menu {
    width: 280px;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  /* Ultra-compact floating elements */
  .whatsapp-fab {
    right: 10px;
    bottom: 15px;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    min-width: 50px;
    justify-content: center;
  }

  .whatsapp-fab .fab-text {
    display: none;
  }

  .whatsapp-fab .fab-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: transparent;
  }

  .scroll-top {
    right: 10px;
    bottom: 75px;
    width: 40px;
    height: 40px;
  }

  .social-fixed-container {
    left: 10px;
    gap: 8px;
  }

  .social-fixed-container .icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Enhanced Modern Client Logos Marquee */
.clients-marquee {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #f8faff 0%,
    #e8f4fd 30%,
    #ffffff 60%,
    #f0f8ff 100%
  );
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 102, 255, 0.1);
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.clients-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 102, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 170, 0.03) 0%,
      transparent 50%
    );
  animation: subtle-float 15s ease-in-out infinite;
}

@keyframes subtle-float {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
}

.logo-item {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 250px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.logo-item img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  max-width: 100%;
}

.logo-item:hover img {
  filter: brightness(1.05) contrast(1.05);
  transform: scale(1.02);
}

.logo-overlay {
  display: none;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 12 - 60px * 11));
  }
}

/* Pause animation on hover with smooth transition */
.logos-marquee:hover {
  animation-play-state: paused;
}

.logos-marquee-container:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 10%,
    rgba(255, 255, 255, 1) 20%,
    rgba(255, 255, 255, 1) 80%,
    rgba(255, 255, 255, 0.9) 90%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Client Stats styling */
.client-stats .stat-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.client-stats .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.client-stats .stat-card:hover::before {
  left: 100%;
}

.client-stats .stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12),
    0 10px 30px rgba(0, 102, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.25);
}

.client-stats .stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    #0096ff 50%,
    #00d4aa 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 26px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.client-stats .stat-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #0066ff, #00d4aa, #ff6b9d);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-stats .stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.3),
    0 5px 15px rgba(0, 212, 170, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.client-stats .stat-card:hover .stat-icon::before {
  opacity: 1;
}

.client-stats h3 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-color), #0096ff, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
}

.client-stats .stat-card:hover h3 {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.client-stats p {
  color: var(--medium-gray);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.client-stats .stat-card:hover p {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Responsive enhancements for modern stat cards */
@media (max-width: 768px) {
  .client-stats .stat-card {
    padding: 30px 20px;
  }

  .client-stats .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .client-stats h3 {
    font-size: 2.4rem;
  }

  .client-stats p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .client-stats .stat-card {
    padding: 25px 15px;
  }

  .client-stats .stat-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .client-stats h3 {
    font-size: 2.2rem;
  }
}

/* Responsive enhancements for client logos */
@media (max-width: 768px) {
  .clients-marquee {
    padding: 80px 0;
  }

  .logos-marquee {
    gap: 60px;
    animation-duration: 35s;
  }

  .logo-item {
    min-width: 250px;
    padding: 30px 35px;
  }

  .logo-item img {
    height: 75px;
  }

  .logo-overlay {
    padding: 15px 25px;
  }

  .logo-overlay span {
    font-size: 14px;
  }

  .logo-overlay small {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .clients-marquee {
    padding: 70px 0;
  }

  .logos-marquee {
    gap: 50px;
    animation-duration: 30s;
  }

  .logo-item {
    min-width: 220px;
    padding: 25px 30px;
  }

  .logo-item img {
    height: 70px;
  }
}

/* Enhanced logo background for better visibility */
.logo-item img[src*=".jpg"],
.logo-item img[src*=".jpeg"] {
  background: rgba(255, 255, 255, 0.98);
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-item img[src*=".png"] {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.4);
}

.logos-marquee-container {
  overflow: hidden;
  padding: 20px 0;
}

.logos-marquee {
  display: flex;
  gap: 60px;
  animation: marquee 50s linear infinite;
  align-items: center;
}

/* Visible client names styling */
.logo-name {
  text-align: center;
  margin-top: 15px;
  padding: 10px 5px;
  opacity: 1;
  visibility: visible;
}

.client-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.client-description {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modern Certifications Section */
.certifications {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.certifications::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 170, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 102, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

.certifications-grid {
  position: relative;
  z-index: 2;
}

.certification-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.certification-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2),
    0 0 60px rgba(0, 212, 170, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cert-logo {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.cert-logo img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.certification-card:hover .cert-logo img {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.1);
}

.cert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.95),
    rgba(0, 102, 255, 0.95)
  );
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certification-card:hover .cert-overlay {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.cert-overlay h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.cert-overlay p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  opacity: 0.9;
  line-height: 1.3;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Certification Stats */
.certification-stats {
  position: relative;
  z-index: 2;
}

.cert-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cert-stat:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  border-color: rgba(0, 212, 170, 0.3);
}

.cert-stat .stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 20px;
}

.cert-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.cert-stat p {
  color: #666;
  font-weight: 500;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive adjustments for certifications */
@media (max-width: 1200px) {
  .certification-card {
    height: 160px;
  }

  .cert-logo img {
    max-width: 80px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .certifications {
    padding: 60px 0;
  }

  .certification-card {
    height: 140px;
    margin-bottom: 20px;
  }

  .cert-logo img {
    max-width: 70px;
    max-height: 40px;
  }

  .cert-overlay h5 {
    font-size: 1rem;
  }

  .cert-overlay p {
    font-size: 0.75rem;
  }

  .logos-marquee {
    gap: 30px;
  }

  .logo-item {
    min-width: 160px;
    padding: 15px 20px;
  }

  .logo-item img {
    height: 45px;
  }
}

@media (max-width: 576px) {
  .certification-card {
    height: 120px;
  }

  .cert-logo img {
    max-width: 60px;
    max-height: 35px;
  }

  .cert-overlay {
    padding: 15px;
  }

  .cert-overlay h5 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .cert-overlay p {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .cert-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}

/* Print Styles */
@media print {
  .header,
  .floating-actions,
  .social-fixed-container,
  .scroll-top,
  #preloader {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-title h2 {
    font-size: 18pt;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particles-container::before {
    animation: none;
  }

  .floating-card {
    animation: none;
  }

  .preloader-logo {
    animation: none;
  }

  .loading-progress {
    animation: none;
  }
}
