/**
 * Glen Infotech - Clean Professional Stylesheet
 * Lightweight and optimized version
 */

/* ============================================
   REMOVE HEAVY ANIMATIONS
   ============================================ */

/* Disable heavy background effects */
.hero-section::before,
.hero-section::after,
.hero-visual::before,
.floating-cards::before,
.floating-cards::after {
  display: none !important;
}

/* Simplify hero background */
.hero-bg::before,
.hero-bg::after {
  display: none !important;
}

/* Reduce glow effects */
.hero-glow-top,
.hero-glow-bottom {
  opacity: 0.3 !important;
  filter: blur(40px) !important;
  animation: none !important;
}

.hero-central-glow {
  opacity: 0.4 !important;
  filter: blur(60px) !important;
  animation: none !important;
}

/* ============================================
   SIMPLIFIED FLOATING CARDS
   ============================================ */

/* Reduce card animations */
.floating-card {
  animation: simpleFloat 6s ease-in-out infinite !important;
}

@keyframes simpleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Simpler hover effect */
.floating-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(255, 112, 67, 0.2) !important;
}

/* Remove border glow animation */
.floating-card:hover {
  animation: none !important;
}

/* ============================================
   CLEAN CARD DESIGN
   ============================================ */

/* More solid cards */
.floating-card {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  border: 1.5px solid var(--border-default) !important;
}

body.light-mode .floating-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Cleaner card icon */
.card-icon {
  box-shadow: 0 3px 10px rgba(255, 112, 67, 0.25) !important;
}

/* ============================================
   SIMPLIFIED GRID BACKGROUND
   ============================================ */

/* Clean grid pattern */
.grid-bg::before {
  background-image: 
    linear-gradient(rgba(255, 112, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 112, 67, 0.03) 1px, transparent 1px) !important;
  background-size: 50px 50px !important;
  animation: none !important;
}

body.light-mode .grid-bg::before {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px) !important;
}

/* ============================================
   REDUCE THREE.JS PARTICLES
   ============================================ */

#three-canvas {
  opacity: 0.4 !important;
}

body.light-mode #three-canvas {
  opacity: 0.2 !important;
}

/* ============================================
   CLEAN GLASS CARDS
   ============================================ */

.glass-card,
.service-card {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid var(--border-default) !important;
  transition: all 0.3s ease !important;
}

.glass-card:hover,
.service-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--border-hover) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(255, 112, 67, 0.15) !important;
}

body.light-mode .glass-card,
body.light-mode .service-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .glass-card:hover,
body.light-mode .service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

/* ============================================
   SIMPLIFIED ANIMATIONS
   ============================================ */

/* Reduce AOS animation duration */
[data-aos] {
  transition-duration: 0.4s !important;
}

/* Simpler pulse animation */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* ============================================
   CLEAN BUTTONS
   ============================================ */

.btn-gradient,
.btn-outline {
  transition: all 0.3s ease !important;
}

.btn-gradient:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.25) !important;
}

.btn-outline:hover {
  transform: translateY(-2px) !important;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Reduce motion for better performance */
* {
  animation-duration: 0.3s;
  transition-duration: 0.3s;
}

/* Disable complex animations on mobile */
@media (max-width: 991px) {
  .floating-card,
  .floating-card:hover {
    animation: none !important;
  }

  a.floating-card {
    -webkit-tap-highlight-color: transparent;
  }

  a.floating-card:active {
    transform: scale(0.98) !important;
  }

  body.light-mode .floating-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  }

  body.light-mode .floating-card:hover {
    box-shadow: 0 6px 18px rgba(255, 112, 67, 0.12) !important;
  }

  body.light-mode .card-content h4 {
    color: #1a1a1a !important;
  }

  body.light-mode .card-content p {
    color: #555555 !important;
  }
}

@media (max-width: 767px) {
  .hero-glow-top,
  .hero-glow-bottom,
  .hero-central-glow {
    display: none !important;
  }
  
  #three-canvas {
    display: none !important;
  }
}

/* ============================================
   CLEAN PORTFOLIO ITEMS
   ============================================ */

.portfolio-item {
  transition: all 0.3s ease !important;
}

.portfolio-item:hover {
  transform: translateY(-5px) !important;
}

/* ============================================
   SIMPLIFIED STATS BAR
   ============================================ */

.stats-bar {
  background: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-default) !important;
  border-bottom: 1px solid var(--border-default) !important;
}

/* ============================================
   CLEAN TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--border-default) !important;
  transition: all 0.3s ease !important;
}

.testimonial-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.1) !important;
}

/* ============================================
   PROFESSIONAL SPACING
   ============================================ */

.hero-section {
  padding: 100px 0 80px !important;
}

.services-section,
.portfolio-section {
  padding: 80px 0 !important;
}

/* ============================================
   CLEAN TYPOGRAPHY
   ============================================ */

.hero-title {
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.section-title {
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}

/* ============================================
   MINIMAL EFFECTS FOR LIGHT MODE
   ============================================ */

body.light-mode {
  background: #FFFFFF !important;
}

body.light-mode .hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%) !important;
}

body.light-mode .stats-bar {
  background: #F8F9FA !important;
}

/* ============================================
   DISABLE HEAVY EFFECTS
   ============================================ */

/* Remove particle effects */
.floating-cards::before,
.floating-cards::after {
  display: none !important;
}

/* Remove mesh gradients */
.hero-visual::before {
  display: none !important;
}

/* Remove diagonal lines */
.hero-section::before {
  display: none !important;
}

/* Remove floating orbs */
.hero-section::after {
  display: none !important;
}


/* ============================================
   ENHANCED LEFT SIDE TEXT - 3D & ATTRACTIVE
   ============================================ */

/* Hero Title - 3D Text Effect */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 
    2px 2px 0px rgba(255, 112, 67, 0.3),
    4px 4px 0px rgba(255, 60, 172, 0.2),
    6px 6px 10px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: -0.02em !important;
  position: relative !important;
}

/* Gradient Text - Enhanced */
.gradient-text {
  background: linear-gradient(135deg, #FF3CAC 0%, #FF7043 50%, #FFB800 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  position: relative !important;
  display: inline-block !important;
  animation: gradientShine 3s ease-in-out infinite !important;
}

@keyframes gradientShine {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 112, 67, 0.3)); }
  50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 112, 67, 0.5)); }
}

/* Typewriter Text - 3D Style */
.typewriter-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  color: var(--brand-orange) !important;
  text-shadow: 
    1px 1px 0px rgba(255, 60, 172, 0.4),
    2px 2px 0px rgba(255, 112, 67, 0.3),
    3px 3px 5px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.02em !important;
}

/* Hero Description - Glowing Effect */
.hero-description {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 2rem !important;
  max-width: 500px !important;
  position: relative !important;
  padding-left: 20px !important;
  border-left: 3px solid transparent !important;
  border-image: linear-gradient(180deg, #FF3CAC, #FF7043, #FFB800) 1 !important;
  animation: borderPulse 3s ease-in-out infinite !important;
}

@keyframes borderPulse {
  0%, 100% { border-left-color: rgba(255, 60, 172, 0.5); }
  50% { border-left-color: rgba(255, 112, 67, 0.8); }
}

/* Availability Badge - 3D Floating */
.availability-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid var(--border-default) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  margin-bottom: 2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 
    0 4px 15px rgba(255, 112, 67, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  animation: badgeFloat 3s ease-in-out infinite !important;
  backdrop-filter: blur(10px) !important;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}

body.light-mode .availability-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid rgba(255, 112, 67, 0.3) !important;
  box-shadow: 0 4px 15px rgba(255, 112, 67, 0.15) !important;
}

/* Pulse Dot - Enhanced Glow */
.pulse-dot {
  width: 10px !important;
  height: 10px !important;
  background: #00ff88 !important;
  border-radius: 50% !important;
  box-shadow: 
    0 0 0 0 rgba(0, 255, 136, 0.7),
    0 0 10px rgba(0, 255, 136, 0.5) !important;
  animation: pulseGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7), 0 0 10px rgba(0, 255, 136, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0), 0 0 20px rgba(0, 255, 136, 0.8);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0), 0 0 10px rgba(0, 255, 136, 0.5);
  }
}

/* Hero Buttons - 3D Effect */
.hero-buttons .btn-gradient {
  background: linear-gradient(135deg, #FF3CAC 0%, #FF7043 50%, #FFB800 100%) !important;
  border: none !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border-radius: 50px !important;
  box-shadow: 
    0 4px 15px rgba(255, 112, 67, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.hero-buttons .btn-gradient::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;
}

.hero-buttons .btn-gradient:hover::before {
  left: 100%;
}

.hero-buttons .btn-gradient:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 
    0 8px 25px rgba(255, 112, 67, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.hero-buttons .btn-outline {
  background: transparent !important;
  border: 2px solid var(--border-default) !important;
  padding: 12px 30px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border-radius: 50px !important;
  color: var(--text-primary) !important;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-buttons .btn-outline:hover {
  background: linear-gradient(135deg, #FF3CAC 0%, #FF7043 50%, #FFB800 100%) !important;
  border-color: transparent !important;
  color: white !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4) !important;
}

/* Hero Stats - 3D Cards */
.hero-stats {
  display: flex !important;
  gap: 2rem !important;
  padding-top: 2rem !important;
  border-top: 2px solid transparent !important;
  border-image: linear-gradient(90deg, transparent, var(--border-default), transparent) 1 !important;
  margin-top: 2rem !important;
}

.hero-stat-item {
  position: relative !important;
  padding: 1rem !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 12px !important;
  border: 1px solid var(--border-default) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-stat-item:hover {
  transform: translateY(-5px) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--brand-orange) !important;
  box-shadow: 0 10px 30px rgba(255, 112, 67, 0.2) !important;
}

.hero-stat-number {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
  text-shadow: 0 2px 10px rgba(255, 112, 67, 0.3) !important;
}

.hero-stat-label {
  font-size: 0.875rem !important;
  color: var(--text-secondary) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
}

/* Light Mode Adjustments */
body.light-mode .hero-title {
  text-shadow: 
    2px 2px 0px rgba(255, 112, 67, 0.2),
    4px 4px 0px rgba(255, 60, 172, 0.1),
    6px 6px 10px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .typewriter-text {
  text-shadow: 
    1px 1px 0px rgba(255, 60, 172, 0.2),
    2px 2px 0px rgba(255, 112, 67, 0.15),
    3px 3px 5px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .hero-stat-item {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

body.light-mode .hero-stat-item:hover {
  box-shadow: 0 10px 30px rgba(255, 112, 67, 0.15) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem !important;
    text-align: center !important;
  }
  
  .hero-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-left: none !important;
    border-top: 3px solid transparent !important;
    border-image: linear-gradient(90deg, #FF3CAC, #FF7043, #FFB800) 1 !important;
    padding-left: 0 !important;
    padding-top: 15px !important;
  }
  
  .hero-stats {
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .typewriter-text {
    font-size: 1.5rem !important;
  }
  
  .hero-stat-number {
    font-size: 2rem !important;
  }
  
  .hero-stats {
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }
  
  .hero-stat-item {
    flex: 1 1 calc(50% - 0.5rem) !important;
    min-width: 120px !important;
  }
}


/* ============================================
   MODERN 3D HEADER - GLASS MORPHISM
   ============================================ */

/* Enhanced Navbar */
.navbar {
  background: rgba(10, 10, 15, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 112, 67, 0.1) !important;
  padding: 1rem 0 !important;
  transition: all 0.3s ease !important;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Scrolled State */
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95) !important;
  padding: 0.75rem 0 !important;
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 112, 67, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Light Mode Navbar */
body.light-mode .navbar {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

body.light-mode .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 112, 67, 0.1) !important;
}

/* Logo Container - 3D Effect */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 112, 67, 0.2) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 67, 0.1), transparent);
  transition: left 0.5s ease;
}

.navbar-brand:hover::before {
  left: 100%;
}

.navbar-brand:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--brand-orange) !important;
  transform: translateY(-2px) !important;
  box-shadow: 
    0 5px 20px rgba(255, 112, 67, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .navbar-brand {
  background: rgba(255, 112, 67, 0.05) !important;
  border: 1px solid rgba(255, 112, 67, 0.15) !important;
}

body.light-mode .navbar-brand:hover {
  background: rgba(255, 112, 67, 0.1) !important;
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.15) !important;
}

/* Logo Image - 3D Floating */
.logo-img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(255, 112, 67, 0.3)) !important;
  transition: all 0.3s ease !important;
  animation: logoFloat 3s ease-in-out infinite !important;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

.navbar-brand:hover .logo-img {
  transform: scale(1.1) rotate(10deg) !important;
  filter: drop-shadow(0 4px 12px rgba(255, 112, 67, 0.5)) !important;
}

/* Brand Text - Gradient 3D */
.brand-text {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: 0 2px 10px rgba(255, 112, 67, 0.3) !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
}

body.light-mode .brand-text {
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Nav Links - 3D Hover Effect */
.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  padding: 10px 18px !important;
  margin: 0 4px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF3CAC, #FF7043, #FFB800);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 112, 67, 0.1) !important;
  transform: translateY(-2px) !important;
}

.nav-link.active {
  color: var(--brand-orange) !important;
  background: rgba(255, 112, 67, 0.15) !important;
  box-shadow: 
    0 4px 15px rgba(255, 112, 67, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .nav-link {
  color: #444444 !important;
}

body.light-mode .nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 112, 67, 0.08) !important;
}

body.light-mode .nav-link.active {
  color: var(--brand-orange) !important;
  background: rgba(255, 112, 67, 0.12) !important;
  box-shadow: 0 4px 15px rgba(255, 112, 67, 0.15) !important;
}

/* Theme Toggle - Enhanced 3D */
.theme-toggle {
  width: 50px !important;
  height: 50px !important;
  border: 2px solid rgba(255, 112, 67, 0.3) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  margin: 0 8px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 
    0 4px 15px rgba(255, 112, 67, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle:hover {
  border-color: var(--brand-orange) !important;
  background: rgba(255, 112, 67, 0.1) !important;
  transform: scale(1.1) rotate(15deg) !important;
  box-shadow: 
    0 6px 20px rgba(255, 112, 67, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.theme-toggle i {
  font-size: 1.25rem !important;
  transition: all 0.3s ease !important;
}

body.light-mode .theme-toggle {
  background: rgba(255, 112, 67, 0.08) !important;
  border-color: rgba(255, 112, 67, 0.2) !important;
}

/* CTA Button in Header - 3D Gradient */
.navbar .btn-gradient {
  background: linear-gradient(135deg, #FF3CAC 0%, #FF7043 50%, #FFB800 100%) !important;
  border: none !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  border-radius: 50px !important;
  color: white !important;
  box-shadow: 
    0 4px 15px rgba(255, 112, 67, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  margin-left: 12px !important;
}

.navbar .btn-gradient::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;
}

.navbar .btn-gradient:hover::before {
  left: 100%;
}

.navbar .btn-gradient:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 
    0 6px 25px rgba(255, 112, 67, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Mobile Menu Toggle - 3D */
.navbar-toggler {
  border: 2px solid rgba(255, 112, 67, 0.3) !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.navbar-toggler:hover {
  background: rgba(255, 112, 67, 0.1) !important;
  border-color: var(--brand-orange) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 112, 67, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar Collapse - Glass Effect */
.navbar-collapse {
  background: rgba(10, 10, 15, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;
  margin-top: 1rem !important;
  padding: 1rem !important;
  border: 1px solid rgba(255, 112, 67, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

body.light-mode .navbar-collapse {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Responsive */
@media (min-width: 992px) {
  .navbar-collapse,
  body.light-mode .navbar-collapse {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .navbar-nav {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}

@media (max-width: 991px) {
  .nav-link {
    margin: 4px 0 !important;
    text-align: center !important;
  }
  
  .theme-toggle {
    margin: 1rem auto !important;
  }
  
  .navbar .btn-gradient {
    margin: 1rem auto 0 !important;
    display: block !important;
    width: fit-content !important;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF3CAC, #FF7043, #FFB800);
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(255, 112, 67, 0.5);
}


/* ============================================
   MODERN 3D FOOTER - UNIQUE & ATTRACTIVE
   ============================================ */

/* Footer Wave Decoration */
.footer-wave {
  position: relative;
  width: 100%;
  height: 80px;
  margin-bottom: -1px;
  overflow: hidden;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-fill {
  fill: var(--bg-secondary);
}

body.light-mode .wave-fill {
  fill: #F8F9FA;
}

/* Footer Main */
.footer {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 60, 172, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 112, 67, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

body.light-mode .footer {
  background: #F8F9FA;
}

/* Footer Brand Section */
.footer-brand-section {
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 112, 67, 0.3));
  animation: logoFloat 3s ease-in-out infinite;
}

.footer-brand h3 {
  font-size: 1.75rem;
  margin: 0;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Footer CTA Button - 3D */
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #FF3CAC 0%, #FF7043 50%, #FFB800 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(255, 112, 67, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.btn-footer-cta::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;
}

.btn-footer-cta:hover::before {
  left: 100%;
}

.btn-footer-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(255, 112, 67, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
}

/* Social Links - 3D Style */
.social-links-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link-3d {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 112, 67, 0.2);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.social-link-3d::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link-3d i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-link-3d:hover {
  transform: translateY(-5px) rotate(5deg);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.4);
}

.social-link-3d:hover::before {
  opacity: 1;
}

.social-link-3d:hover i {
  color: white;
  transform: scale(1.2);
}

body.light-mode .social-link-3d {
  background: rgba(255, 112, 67, 0.05);
  border-color: rgba(255, 112, 67, 0.15);
}

/* Footer Headings - 3D Style */
.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 2px;
}

.heading-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
}

/* Footer Links - Enhanced */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.footer-links a i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 8px;
}

.footer-links a:hover i {
  transform: translateX(5px);
}

/* Contact Items - 3D Cards */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 112, 67, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 112, 67, 0.3);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.15);
}

body.light-mode .contact-item {
  background: rgba(255, 112, 67, 0.03);
  border-color: rgba(255, 112, 67, 0.08);
}

body.light-mode .contact-item:hover {
  background: rgba(255, 112, 67, 0.08);
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.1);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-value {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--brand-orange);
}

/* Newsletter Section - 3D */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 112, 67, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.1) 0%, transparent 70%);
  animation: newsletterGlow 8s ease-in-out infinite;
}

@keyframes newsletterGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20%, -20%); }
}

body.light-mode .footer-newsletter {
  background: rgba(255, 112, 67, 0.05);
  border-color: rgba(255, 112, 67, 0.2);
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.newsletter-text {
  color: var(--text-secondary);
  margin: 0;
}

.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 112, 67, 0.2);
  color: var(--text-primary);
  padding: 14px 20px;
  border-radius: 50px 0 0 50px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-orange);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 112, 67, 0.25);
}

body.light-mode .newsletter-input {
  background: white;
  border-color: rgba(255, 112, 67, 0.2);
}

.btn-newsletter {
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border: none;
  color: white;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 112, 67, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-newsletter:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 112, 67, 0.5);
}

/* Footer Bottom - Enhanced */
.footer-bottom {
  border-top: 2px solid rgba(255, 112, 67, 0.1);
  padding: 2rem 0;
  margin-top: 3rem;
}

.copyright {
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-links li {
  position: relative;
}

.footer-bottom-links li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -12px;
  color: var(--text-muted);
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--brand-orange);
}

/* Responsive */
@media (max-width: 991px) {
  .footer-newsletter {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .footer-wave {
    height: 50px;
  }
  
  .footer-wave svg {
    height: 50px;
  }
  
  .footer-newsletter {
    padding: 1.5rem;
  }
  
  .newsletter-input,
  .btn-newsletter {
    border-radius: 50px;
  }
  
  .btn-newsletter {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .copyright {
    justify-content: center;
  }
}


/* ============================================
   UNIQUE ICON COLORS FOR FOOTER CONTACTS
   ============================================ */

/* Location Icon - Pink to Orange */
.contact-icon {
  background: linear-gradient(135deg, #FF3CAC, #FF7043) !important;
}

/* Phone 1 Icon - Orange to Gold */
.phone-icon {
  background: linear-gradient(135deg, #FF7043, #FFB800) !important;
}

/* Phone 2 Icon - Purple to Pink */
.mobile-icon {
  background: linear-gradient(135deg, #9D50BB, #FF3CAC) !important;
}

/* Email Icon - Blue to Cyan */
.email-icon {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
}

/* Icon Animation on Hover */
.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 112, 67, 0.5);
}

/* Different Icon Sizes for Variety */
.contact-icon i {
  font-size: 1.1rem;
}

.phone-icon i,
.mobile-icon i {
  font-size: 1.15rem;
}

.email-icon i {
  font-size: 1rem;
}


/* ============================================
   MODERN FEATURED PROJECTS SECTION
   ============================================ */

/* Section Label with Icon */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}

/* Modern Portfolio Filters */
.portfolio-filters-modern {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-btn-modern i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.filter-btn-modern:hover {
  background: rgba(255, 112, 67, 0.1);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 112, 67, 0.2);
}

.filter-btn-modern:hover i {
  transform: scale(1.2);
}

.filter-btn-modern.active {
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.4);
}

.filter-btn-modern.active,
.filter-btn-modern.active span,
.filter-btn-modern.active i {
  color: #ffffff;
}

body.light-mode .filter-btn-modern {
  background: #ffffff;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body.light-mode .filter-btn-modern span,
body.light-mode .filter-btn-modern i {
  color: #333333;
}

body.light-mode .filter-btn-modern:hover {
  background: rgba(255, 112, 67, 0.08);
  color: #1a1a1a;
  box-shadow: 0 5px 15px rgba(255, 112, 67, 0.15);
}

body.light-mode .filter-btn-modern:hover span,
body.light-mode .filter-btn-modern:hover i {
  color: #1a1a1a;
}

body.light-mode .filter-btn-modern.active {
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.35);
}

body.light-mode .filter-btn-modern.active span,
body.light-mode .filter-btn-modern.active i {
  color: #ffffff;
}

/* Modern Portfolio Grid */
.portfolio-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

/* Modern Portfolio Card */
.portfolio-card-modern {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 112, 67, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.portfolio-card-modern:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 112, 67, 0.3);
  box-shadow: 0 20px 40px rgba(255, 112, 67, 0.2);
}

body.light-mode .portfolio-card-modern {
  background: white;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-mode .portfolio-card-modern:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Image Wrapper */
.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.portfolio-image-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card-modern:hover .portfolio-image-modern {
  transform: scale(1.1);
}

/* Featured Badge */
.portfolio-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  background: linear-gradient(135deg, #FFB800, #FF7043);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Portfolio Content */
.portfolio-content-modern {
  padding: 1.5rem;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 10px;
}

.portfolio-category-modern {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255, 112, 67, 0.1);
  border: 1px solid rgba(255, 112, 67, 0.2);
  border-radius: 50px;
  color: var(--brand-orange);
  font-size: 0.75rem;
  font-weight: 600;
}

.portfolio-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.portfolio-title-modern a,
.portfolio-image-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.portfolio-title-modern a:hover,
.portfolio-image-link:hover {
  color: var(--brand-orange);
}

body.light-mode .portfolio-title-modern,
body.light-mode .portfolio-title-modern a {
  color: #1a1a1a;
}

body.light-mode .portfolio-title-modern a:hover,
body.light-mode .portfolio-image-link:hover {
  color: var(--brand-orange);
}

.portfolio-image-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-image-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.75) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.portfolio-image-title {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
  line-height: 1.3;
  z-index: 2;
  pointer-events: none;
}

body.light-mode .portfolio-image-title {
  color: #ffffff;
}

body.light-mode .portfolio-category-modern {
  color: #c44a20;
  background: rgba(255, 112, 67, 0.12);
}

body.light-mode .portfolio-date,
body.light-mode .portfolio-client-modern {
  color: #555555;
}

body.light-mode .section-label {
  color: #c44a20;
}

body.light-mode .section-title,
body.light-mode .section-description {
  color: #1a1a1a;
}

.portfolio-client-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Tech Badges */
.portfolio-tech-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.tech-badge-modern {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 112, 67, 0.15);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-badge-modern:hover {
  background: rgba(255, 112, 67, 0.1);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px);
}

body.light-mode .tech-badge-modern {
  background: rgba(255, 112, 67, 0.05);
  border-color: rgba(255, 112, 67, 0.15);
}

/* Portfolio Footer */
.portfolio-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 112, 67, 0.1);
}

.btn-view-project {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid rgba(255, 112, 67, 0.3);
  border-radius: 50px;
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-view-project::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-view-project:hover::before {
  left: 0;
}

.btn-view-project:hover {
  border-color: transparent;
  color: white;
  transform: translateX(5px);
}

.btn-view-project i {
  transition: transform 0.3s ease;
}

.btn-view-project:hover i {
  transform: translateX(5px);
}

/* View All Button Enhancement */
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .portfolio-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .portfolio-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .portfolio-filters-modern {
    gap: 8px;
  }
  
  .filter-btn-modern {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .portfolio-image-wrapper {
    height: 200px;
  }
  
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ============================================
   WHY CHOOSE US SECTION - MODERN 3D DESIGN
   ============================================ */

.why-choose-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 60, 172, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 112, 67, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

body.light-mode .why-choose-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

/* Why Choose Content */
.why-choose-content {
  position: relative;
  z-index: 1;
}

/* Feature Cards Container */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}

/* Feature Card Modern - 3D Style */
.feature-card-modern {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 112, 67, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 67, 0.05), transparent);
  transition: left 0.5s ease;
}

.feature-card-modern:hover::before {
  left: 100%;
}

.feature-card-modern:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-orange);
  transform: translateX(10px);
  box-shadow: 
    0 10px 30px rgba(255, 112, 67, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.light-mode .feature-card-modern {
  background: white;
  border-color: rgba(255, 112, 67, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .feature-card-modern:hover {
  box-shadow: 0 10px 30px rgba(255, 112, 67, 0.15);
}

/* Feature Icon Modern */
.feature-icon-modern {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 16px;
  color: white;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(255, 112, 67, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon-modern::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 112, 67, 0.6);
}

.feature-card-modern:hover .feature-icon-modern::after {
  opacity: 1;
}

/* Feature Content */
.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Feature Number */
.feature-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 112, 67, 0.1);
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-number {
  color: rgba(255, 112, 67, 0.2);
  transform: translateY(-50%) scale(1.1);
}

body.light-mode .feature-number {
  color: rgba(255, 112, 67, 0.08);
}

body.light-mode .feature-card-modern:hover .feature-number {
  color: rgba(255, 112, 67, 0.15);
}

/* Why Choose Visual */
.why-choose-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats Grid Modern */
.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Stat Card Modern - 3D Style */
.stat-card-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 112, 67, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-modern:hover::before {
  opacity: 1;
  animation: statGlow 2s ease-in-out infinite;
}

@keyframes statGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10%, 10%) scale(1.1); }
}

.stat-card-modern:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-orange);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(255, 112, 67, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

body.light-mode .stat-card-modern {
  background: white;
  border-color: rgba(255, 112, 67, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .stat-card-modern:hover {
  box-shadow: 0 15px 40px rgba(255, 112, 67, 0.2);
}

/* Stat Icon */
.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 
    0 8px 20px rgba(255, 112, 67, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 30px rgba(255, 112, 67, 0.6);
}

/* Stat Value */
.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
}

/* Stat Label */
.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Visual Decoration */
.visual-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/* Decoration Circles */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 112, 67, 0.1);
  animation: circleFloat 8s ease-in-out infinite;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: -10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes circleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.6;
  }
}

body.light-mode .decoration-circle {
  border-color: rgba(255, 112, 67, 0.15);
}

/* Responsive Design */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 80px 0;
  }
  
  .stats-grid-modern {
    margin-top: 3rem;
  }
  
  .feature-card-modern {
    padding: 20px;
  }
  
  .feature-icon-modern {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .feature-number {
    font-size: 2.5rem;
    right: 15px;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: 60px 0;
  }
  
  .stats-grid-modern {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card-modern {
    padding: 25px 15px;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .feature-card-modern {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-number {
    position: static;
    transform: none;
    margin-top: 1rem;
    font-size: 2rem;
  }
  
  .feature-card-modern:hover .feature-number {
    transform: scale(1.1);
  }
  
  .decoration-circle {
    display: none;
  }
}

@media (max-width: 575px) {
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}


/* ============================================
   TESTIMONIALS SECTION - MODERN 3D DESIGN
   ============================================ */

.testimonials-section {
  padding: 100px 0;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 60, 172, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 112, 67, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

body.light-mode .testimonials-section {
  background: #F8F9FA;
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
  position: relative;
  padding: 20px 0 60px;
}

.testimonials-swiper-modern {
  padding: 20px 10px 50px;
  overflow: visible;
}

/* Testimonial Card Modern - 3D Glass Effect */
.testimonial-card-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 112, 67, 0.15);
  border-radius: 30px;
  padding: 40px 35px;
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 67, 0.08), transparent);
  transition: left 0.6s ease;
}

.testimonial-card-modern:hover::before {
  left: 100%;
}

.testimonial-card-modern:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-orange);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(255, 112, 67, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

body.light-mode .testimonial-card-modern {
  background: white;
  border-color: rgba(255, 112, 67, 0.2);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-mode .testimonial-card-modern:hover {
  box-shadow: 0 25px 60px rgba(255, 112, 67, 0.2);
}

/* Quote Icon Wrapper */
.quote-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 8px 25px rgba(255, 112, 67, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.quote-icon-wrapper i {
  font-size: 2rem;
  color: white;
  transform: rotate(180deg);
}

.testimonial-card-modern:hover .quote-icon-wrapper {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 35px rgba(255, 112, 67, 0.6);
}

/* Rating Modern */
.testimonial-rating-modern {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.star-icon {
  font-size: 1.25rem;
  color: #FFB800;
  filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.3));
  transition: all 0.3s ease;
}

.star-icon:not(.bi-star-fill) {
  color: rgba(255, 184, 0, 0.3);
}

.testimonial-card-modern:hover .star-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 184, 0, 0.5));
}

.rating-text {
  margin-left: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 4px 12px;
  background: rgba(255, 184, 0, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

/* Testimonial Message Modern */
.testimonial-message-modern {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #FF3CAC, #FF7043, #FFB800) 1;
}

body.light-mode .testimonial-message-modern {
  color: #4A5568;
}

/* Testimonial Footer Modern */
.testimonial-footer-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 112, 67, 0.1);
}

/* Client Avatar Wrapper */
.client-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800) border-box;
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.3);
  transition: all 0.3s ease;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 20px rgba(255, 112, 67, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card-modern:hover .client-avatar,
.testimonial-card-modern:hover .avatar-placeholder {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 112, 67, 0.5);
}

/* Verified Badge */
.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #00D9FF, #0099FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(0, 153, 255, 0.4);
}

.verified-badge i {
  font-size: 0.75rem;
  color: white;
}

body.light-mode .verified-badge {
  border-color: white;
}

/* Client Details */
.client-details {
  flex: 1;
  min-width: 0;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.client-position {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.5;
}

.client-position i {
  font-size: 0.75rem;
  color: var(--brand-orange);
}

.company-divider {
  color: var(--text-muted);
  margin: 0 4px;
}

.company-name {
  font-weight: 600;
  color: var(--brand-orange);
}

/* Card Decorations */
.card-decoration {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: decorationFloat 6s ease-in-out infinite;
}

.decoration-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.decoration-2 {
  width: 100px;
  height: 100px;
  bottom: -30px;
  left: -30px;
  animation-delay: 3s;
}

@keyframes decorationFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(10px, -10px) scale(1.1);
    opacity: 0.6;
  }
}

/* Swiper Navigation - Hidden */
.testimonial-nav-prev,
.testimonial-nav-next {
  display: none !important;
}

/* Swiper Pagination - Modern Style */
.testimonial-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 112, 67, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background: linear-gradient(90deg, #FF3CAC, #FF7043, #FFB800);
  box-shadow: 0 2px 10px rgba(255, 112, 67, 0.5);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 112, 67, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

body.light-mode .trust-indicators {
  background: white;
  border-color: rgba(255, 112, 67, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--brand-orange);
  filter: drop-shadow(0 2px 8px rgba(255, 112, 67, 0.3));
}

.trust-item:hover {
  color: var(--text-primary);
  transform: translateY(-3px);
}

.trust-item:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 12px rgba(255, 112, 67, 0.5));
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonial-card-modern {
    padding: 35px 30px;
    min-height: 380px;
  }
  
  .trust-indicators {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-card-modern {
    padding: 30px 25px;
    min-height: 350px;
  }
  
  .quote-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .quote-icon-wrapper i {
    font-size: 1.5rem;
  }
  
  .testimonial-message-modern {
    font-size: 0.95rem;
    padding-left: 15px;
  }
  
  .client-avatar,
  .avatar-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .verified-badge {
    width: 20px;
    height: 20px;
  }
  
  .verified-badge i {
    font-size: 0.65rem;
  }
  
  .client-name {
    font-size: 1rem;
  }
  
  .client-position {
    font-size: 0.8rem;
  }
  
  .trust-indicators {
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 50px;
  }
  
  .trust-item {
    font-size: 0.85rem;
  }
  
  .trust-item i {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
    border-radius: 30px;
  }
  
  .trust-item {
    width: 100%;
    justify-content: center;
  }
  
  .testimonial-card-modern {
    min-height: 320px;
  }
  
  .star-icon {
    font-size: 1.1rem;
  }
  
  .rating-text {
    font-size: 0.9rem;
    padding: 3px 10px;
  }
}



/* ============================================
   CLIENTS SECTION - TRUSTED BY
   ============================================ */

.clients-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 60, 172, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 112, 67, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

body.light-mode .clients-section {
  background: #F8F9FA;
}

/* Clients Marquee Wrapper */
.clients-marquee-wrapper {
  position: relative;
  padding: 3rem 0;
  margin: 3rem 0;
  overflow: hidden;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 100%);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-secondary) 0%, transparent 100%);
}

body.light-mode .clients-marquee-wrapper::before {
  background: linear-gradient(90deg, #F8F9FA 0%, transparent 100%);
}

body.light-mode .clients-marquee-wrapper::after {
  background: linear-gradient(270deg, #F8F9FA 0%, transparent 100%);
}

/* Marquee Track */
.clients-marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 80s linear infinite;
  width: fit-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Client Logo Card */
.client-logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 112, 67, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.client-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 67, 0.05), transparent);
  transition: left 0.6s ease;
}

.client-logo-card:hover::before {
  left: 100%;
}

.client-logo-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-orange);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(255, 112, 67, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.light-mode .client-logo-card {
  background: white;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .client-logo-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 15px 40px rgba(255, 112, 67, 0.15);
}

/* Logo Wrapper */
.logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Client Logo Image */
.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

body.light-mode .client-logo-img {
  filter: grayscale(100%) opacity(0.7);
}

body.light-mode .client-logo-card:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
}

/* Client Stats Row */
.client-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 112, 67, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.client-stats-row::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.05) 0%, transparent 70%);
  animation: statsGlow 8s ease-in-out infinite;
}

@keyframes statsGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

body.light-mode .client-stats-row {
  background: white;
  border-color: rgba(255, 112, 67, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* Client Stat Item */
.client-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.client-stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

body.light-mode .client-stat-item {
  background: rgba(255, 112, 67, 0.03);
}

body.light-mode .client-stat-item:hover {
  background: rgba(255, 112, 67, 0.08);
}

/* Stat Icon Wrapper */
.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  border-radius: 16px;
  color: white;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(255, 112, 67, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease;
}

.client-stat-item:hover .stat-icon-wrapper {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 30px rgba(255, 112, 67, 0.6);
}

/* Stat Content */
.stat-content {
  flex: 1;
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF3CAC, #FF7043, #FFB800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0 0 0.25rem 0;
}

.stat-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .client-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
  }
}

@media (max-width: 991px) {
  .clients-section {
    padding: 80px 0;
  }
  
  .client-logo-card {
    width: 180px;
    height: 110px;
  }
  
  .marquee-track {
    gap: 2rem;
  }
  
  .client-stats-row {
    padding: 2rem;
  }
  
  .stat-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-marquee-wrapper {
    padding: 2rem 0;
    margin: 2rem 0;
  }
  
  .clients-marquee-wrapper::before,
  .clients-marquee-wrapper::after {
    width: 80px;
  }
  
  .client-logo-card {
    width: 160px;
    height: 100px;
    padding: 1rem;
  }
  
  .marquee-track {
    gap: 1.5rem;
  }
  
  .client-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 3rem;
  }
  
  .client-stat-item {
    padding: 1rem;
  }
  
  .stat-icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .client-logo-card {
    width: 140px;
    height: 90px;
  }
  
  .marquee-track {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.35rem;
  }
  
  .stat-text {
    font-size: 0.8rem;
  }
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
