/* TweeLabs Digital - Custom Styles */
/* Mobile-first, futuristic design system */

:root {
  --color-primary: #0b1020;
  --color-cyan: #00e5ff;
  --color-violet: #7c3aed;
  --color-muted: #9aa7c7;
  --color-glass: rgba(255, 255, 255, 0.04);
  --color-glass-hover: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-glass: 0 8px 32px 0 rgba(0, 229, 255, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.5);
  --shadow-lift: 0 20px 40px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-primary);
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Glassmorphism Cards - Enhanced */
.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-violet), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  background: var(--color-glass-hover);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 229, 255, 0.15), 0 10px 25px rgba(124, 58, 237, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
}

/* Gradient Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  display: inline-block;
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-cyan);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-cyan);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-glass);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--color-cyan);
}

.nav-menu .btn-primary {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--color-primary);
  padding: 2rem;
  transition: right 0.3s;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin: 1.5rem 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
}

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

/* Footer */
.site-footer {
  background: rgba(11, 16, 32, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3, .footer-col h4 {
  margin-bottom: 1rem;
  color: var(--color-cyan);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin: 0.5rem 0;
}

.footer-col a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--color-glass);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

/* Container - Enhanced */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  width: 100%;
  position: relative;
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  width: 100%;
}

section {
  padding: 4rem 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 229, 255, 0.02) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

/* Grid System - Enhanced */
.grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .grid {
    gap: 2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .grid {
    gap: 1.5rem;
  }
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* Header Sticky */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

/* Stats Counter */
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--color-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--color-cyan);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Logo Wall - Beautiful Arrangement */
.logo-wall {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.02), rgba(124, 58, 237, 0.02));
  position: relative;
  overflow: hidden;
}

.logo-wall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.logo-wall h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.logo-wall h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
  border-radius: 2px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100px;
  width: 100%;
  max-width: 160px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.logo-item:hover::before {
  left: 100%;
}

.logo-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2), 0 8px 20px rgba(124, 58, 237, 0.1);
}

.logo-item img {
  max-width: 120px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8) contrast(1.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1.1) contrast(1);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }
  
  .logo-item {
    height: 85px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .logo-wall { 
    padding: 3rem 0; 
  }
  
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }
  
  .logo-item {
    height: 70px;
    max-width: 110px;
    padding: 1rem;
  }
  
  .logo-item img {
    max-width: 80px;
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
  }
  
  .logo-item {
    height: 60px;
    max-width: 95px;
  }
}

/* New Sections */
.company-snapshot, .government-section, .industries-section, .ai-solutions,
.ai-course-spotlight, .client-logos, .verified-section, .faq-summary,
.career-section, .partner-section, .impact-section, .announcements, .final-cta-strip {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
  border-radius: 2px;
}

.section-header h2::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: rgba(0, 229, 255, 0.5);
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.final-cta-strip {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(124, 58, 237, 0.1));
  border-top: 2px solid var(--color-cyan);
  border-bottom: 2px solid var(--color-violet);
}

.final-cta-strip h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.impact-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.impact-section li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
}

/* Performance Optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--color-violet);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Hero Specific */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  color: var(--color-muted);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem 0;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-highlight {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Case Studies */
.case-studies-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-study-result {
  color: var(--color-cyan);
  font-weight: 600;
  font-size: 1.125rem;
}

/* Course Promo */
.course-promo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .course-promo-content {
    grid-template-columns: 2fr 1fr;
  }
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.course-features li {
  padding: 0.5rem 0;
}

.course-pricing {
  margin: 1.5rem 0;
}

.price-original {
  text-decoration: line-through;
  color: var(--color-muted);
  margin-right: 1rem;
}

.price-current {
  color: var(--color-cyan);
  font-size: 2rem;
  font-weight: 700;
}

.price-note {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.course-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-rating {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin: 1rem 0;
}

.testimonial-author {
  margin-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: var(--color-cyan);
}

.testimonial-author span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Team Cards */
.team-card {
  text-align: center;
}

.team-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.team-role {
  color: var(--color-cyan);
  font-weight: 600;
  margin: 0.5rem 0;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Blog Cards */
.blog-card {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-cyan);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

.blog-content h3 a {
  color: #fff;
}

.blog-content h3 a:hover {
  color: var(--color-cyan);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}
/* Enhanced Card Styles */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e5ff, #7c3aed, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 229, 255, 0.15), 0 10px 25px rgba(124, 58, 237, 0.1);
}

.card h3 {
  color: #00e5ff;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
}

.card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00e5ff, #7c3aed);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 229, 255, 0.4);
}

/* Stats Section Enhanced */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.05);
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2), 0 8px 20px rgba(124, 58, 237, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00e5ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: #cbd5e1;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust Bar Enhanced */
.trust-bar {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.03), rgba(124, 58, 237, 0.03));
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
}

.stat-highlight {
  color: #00e5ff;
  font-weight: 800;
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #9aa7c7;
  font-size: 1rem;
  margin: 0;
}

/* Final CTA Strip Enhanced */
.final-cta-strip {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 58, 237, 0.08));
  border-top: 3px solid #00e5ff;
  border-bottom: 3px solid #7c3aed;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.final-cta-strip h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00e5ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-strip p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #9aa7c7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.final-cta-buttons .btn-primary {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
  }
  
  .stat-item {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .trust-items {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }
  
  .trust-item {
    padding: 1.5rem;
  }
  
  .stat-highlight {
    font-size: 1.5rem;
  }
  
  .final-cta-strip {
    padding: 3rem 0;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .final-cta-buttons .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}
/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(11, 16, 32, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:hover {
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  padding-left: 2rem;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 80px;
    right: 15px;
  }
  
  .floating-whatsapp a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-left: 1rem;
  }
  
  .dropdown-menu a {
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 0.9rem;
  }
}
/* Client Logos Section - Enhanced */
.client-logos {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.03), rgba(124, 58, 237, 0.03));
  position: relative;
}

.client-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.client-category {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 229, 255, 0.15);
  transition: all 0.3s ease;
}

.client-category:hover {
  transform: translateY(-5px);
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.3);
}

.client-category h3 {
  color: #00e5ff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-align: center;
}

.client-category .logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 160px;
}

.client-card:hover {
  transform: translateY(-3px);
  background: rgba(0, 229, 255, 0.08);
}

.client-card img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.client-card span {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 4rem 0 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.client-stats .stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  transition: all 0.3s ease;
}

.client-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
}

.client-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00e5ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.client-stats .stat-label {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .client-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .client-category {
    padding: 1.5rem;
  }
  
  .client-category .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .client-card {
    max-width: 140px;
  }
  
  .client-card img {
    width: 80px;
    height: 50px;
  }
  
  .client-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2rem;
  }
  
  .client-stats .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .client-stats .stat-number {
    font-size: 2rem;
  }
}
/* Clients Slideshow - Right to Left Animation */
.clients-slideshow {
  overflow: hidden;
  width: 100%;
  margin: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 2rem 0;
}

.slideshow-track {
  display: flex;
  animation: slideRightToLeft 120s linear infinite;
  gap: 3rem;
  white-space: nowrap;
}

.client-slide {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 2rem;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.client-slide:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.4);
  color: #00e5ff;
  transform: translateY(-2px);
}

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

/* Pause animation on hover */
.clients-slideshow:hover .slideshow-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .slideshow-track {
    animation-duration: 80s;
    gap: 2rem;
  }
  
  .client-slide {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 120px;
  }
}